Skip to content

chore(deps): update devdependencies (non-major) - #5124

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies-(non-major)
Open

chore(deps): update devdependencies (non-major)#5124
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/devdependencies-(non-major)

Conversation

@renovate

@renovate renovate Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@playwright/test (source) 1.61.11.62.0 age confidence
turbo (source) 2.10.42.10.7 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.62.0

Compare Source

🧱 New component testing model

Component testing moves to a stories and galleries model.
A story wraps your component in one specific scenario — hard-coded props, mock data, providers — and a

gallery page that you serve renders stories on demand. The new fixtures.mount() fixture navigates
to the gallery, mounts a story by id, and returns a Locator scoped to the story's root element:

test('click should expand', async ({ mount }) => {
  const component = await mount('components/Expandable/Stateful');
  await component.getByRole('button').click();
  await expect(component.getByTestId('expanded')).toHaveValue('true');
});

Pass a story type as a template argument to type-check its props, and use update(props) /
unmount() on the returned locator to re-render or tear down within a test.

🛑 Cancel operations with AbortSignal

Most operations and web-first assertions now accept a signal option that takes an
AbortSignal, letting you
cancel long-running actions, navigations, waits, and assertions:

const controller = new AbortController();
setTimeout(() => controller.abort(), 1000);

await page.getByRole('button', { name: 'Submit' }).click({ signal: controller.signal });
await expect(page.getByText('Done')).toBeVisible({ signal: controller.signal });

Providing a signal does not disable the default timeout; pass timeout: 0 to disable it.

🖼️ WebP screenshots

expect(page).toHaveScreenshot() and expect(locator).toHaveScreenshot()
can now store snapshots in the WebP format — just give the snapshot a .webp name:

// Visual comparisons store the golden snapshot as lossless WebP.
await expect(page).toHaveScreenshot('homepage.webp');

// Standalone screenshots can trade quality for size with lossy WebP.
await page.screenshot({ path: 'homepage.webp', quality: 50 });

page.screenshot() and locator.screenshot() also accept webp as a type,
where quality 100 (the default) is lossless and lower values use lossy compression.

🧩 Custom test filtering with Reporter.preprocess()

New reporter.preprocess() hook runs after the configuration is resolved and before
reporter.onBegin(), letting a reporter mark individual tests as skipped, excluded,
fixed, or failing through a TestRun object:

class MyReporter {
  async preprocess({ config, suite, testRun }) {
    for (const test of suite.allTests()) {
      if (shouldSkip(test))
        testRun.skip(test);
    }
  }
}
🔁 Isolated retries

New testConfig.retryStrategy controls when failed tests are retried. The default
'immediate' retries as soon as a worker is free; 'isolated' runs all retries at the end,
one by one in a single worker, to minimize interference with the rest of the suite:

// playwright.config.ts
export default defineConfig({
  retries: 2,
  retryStrategy: 'isolated',
});
New APIs
Browser and Context
  • New option credentials includes the context's virtual WebAuthn Credentials (passkeys) in the storage state, so they can be persisted and re-seeded into later contexts.
Actions
  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scroll-into-view.
Network
Evaluation
Command line & MCP
Reporters
  • The HTML report's Merge files grouping — previously only a UI toggle — can now be enabled from the config with the new mergeFiles reporter option:
// playwright.config.ts
export default defineConfig({
  reporter: [['html', { mergeFiles: true }]],
});
Announcements
  • ⚠️ Debian 11 is not supported anymore.
Browser Versions
  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151
vercel/turborepo (turbo)

v2.10.6: Turborepo v2.10.6

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.5...v2.10.6

v2.10.5: Turborepo v2.10.5

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.4...v2.10.5


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@openshift-ci

openshift-ci Bot commented Jul 17, 2026

Copy link
Copy Markdown

Hi @renovate[bot]. Thanks for your PR.

I'm waiting for a redhat-developer member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@codecov

codecov Bot commented Jul 17, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 63.69%. Comparing base (6bcb014) to head (8532242).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5124   +/-   ##
=======================================
  Coverage   63.69%   63.69%           
=======================================
  Files         123      123           
  Lines        2424     2424           
  Branches      573      577    +4     
=======================================
  Hits         1544     1544           
  Misses        878      878           
  Partials        2        2           
Flag Coverage Δ
rhdh 63.69% <ø> (ø)
Components Coverage Δ
Backend plugins 100.00% <ø> (ø)
Backend app 66.66% <ø> (ø)
Frontend app 58.89% <ø> (ø)
Plugin utils 100.00% <ø> (ø)
Dynamic plugins utils ∅ <ø> (∅)

Continue to review full report in Codecov by Harness.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 6bcb014...8532242. Read the comment docs.

🚀 New features to boost your workflow:
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 3c11b13 to 1ed1bd3 Compare July 20, 2026 13:07
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 1ed1bd3 to e6791b1 Compare July 20, 2026 15:30
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from e6791b1 to d5bc461 Compare July 21, 2026 08:10
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from d5bc461 to 76ae015 Compare July 21, 2026 14:14
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 76ae015 to cc22ea6 Compare July 21, 2026 15:09
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from cc22ea6 to 45ac74d Compare July 22, 2026 13:31
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 45ac74d to bade398 Compare July 22, 2026 14:30
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from bade398 to 4750cc0 Compare July 22, 2026 16:32
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 4750cc0 to 256b5d5 Compare July 22, 2026 21:10
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 256b5d5 to db3959b Compare July 22, 2026 22:46
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from db3959b to 1b8ef08 Compare July 24, 2026 14:14
@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 202d5cd to 425b7b8 Compare July 24, 2026 18:15
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 3326fc3 to 20538c2 Compare July 24, 2026 19:09
@github-actions

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 20538c2 to 9951890 Compare July 24, 2026 19:48
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 9951890 to 97b8dfe Compare July 24, 2026 20:51
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 97b8dfe to 41cc317 Compare July 25, 2026 17:04
@renovate renovate Bot changed the title chore(deps): update dependency turbo to v2.10.5 chore(deps): update dependency turbo to v2.10.6 Jul 25, 2026
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 41cc317 to 51d8a93 Compare July 27, 2026 04:22
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from 88380d7 to 836d0cf Compare July 27, 2026 14:40
@github-actions

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 836d0cf to d317c72 Compare July 27, 2026 15:47
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from d317c72 to 8fb8dd5 Compare July 27, 2026 18:27
@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 8fb8dd5 to 529fea6 Compare July 28, 2026 02:34
@renovate renovate Bot changed the title chore(deps): update dependency turbo to v2.10.6 chore(deps): update devdependencies (non-major) Jul 28, 2026
@github-actions

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: failure.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from 529fea6 to 8532242 Compare July 28, 2026 16:19
@sonarqubecloud

Copy link
Copy Markdown

@github-actions

Copy link
Copy Markdown
Contributor

Image was built and published successfully. It is available at:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants