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.1 age confidence
turbo (source) 2.10.42.10.8 age confidence

Release Notes

microsoft/playwright (@​playwright/test)

v1.62.1

Compare Source

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.8: Turborepo v2.10.8

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.10.7...v2.10.8

v2.10.7: Turborepo v2.10.7

Compare Source

What's Changed

Changelog

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

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 (e3b3f0b) to head (4049164).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #5124   +/-   ##
=======================================
  Coverage   63.69%   63.69%           
=======================================
  Files         123      123           
  Lines        2424     2424           
  Branches      573      573           
=======================================
  Hits         1544     1544           
  Misses        878      878           
  Partials        2        2           
Flag Coverage Δ *Carryforward flag
rhdh 63.69% <ø> (ø) Carriedforward from e3b3f0b

*This pull request uses carry forward flags. Click here to find out more.

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 e3b3f0b...4049164. 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
@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 bed5248 to df68e53 Compare July 31, 2026 18:43
@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 df68e53 to e0c4342 Compare August 2, 2026 17:38
@github-actions

github-actions Bot commented Aug 2, 2026

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 e0c4342 to b8ac8d3 Compare August 3, 2026 04:21
@github-actions

github-actions Bot commented Aug 3, 2026

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 b8ac8d3 to 5d468d3 Compare August 3, 2026 07:49
@github-actions

github-actions Bot commented Aug 3, 2026

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 5d468d3 to ccfb0d5 Compare August 3, 2026 14:30
@github-actions

github-actions Bot commented Aug 3, 2026

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 ccfb0d5 to 80a3e4f Compare August 4, 2026 07:58
@github-actions

github-actions Bot commented Aug 4, 2026

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 80a3e4f to 7fa2f51 Compare August 4, 2026 10:09
@github-actions

github-actions Bot commented Aug 4, 2026

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 7fa2f51 to 333f746 Compare August 4, 2026 11:06
@github-actions

github-actions Bot commented Aug 4, 2026

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 333f746 to ba04ca3 Compare August 4, 2026 11:45
@github-actions

github-actions Bot commented Aug 4, 2026

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 ba04ca3 to 501f809 Compare August 4, 2026 13:12
@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: failure.

@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch 2 times, most recently from d682479 to a527bba Compare August 4, 2026 13:53
@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate
renovate Bot force-pushed the renovate/devdependencies-(non-major) branch from a527bba to 4049164 Compare August 4, 2026 14:02
@github-actions

github-actions Bot commented Aug 4, 2026

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

@sonarqubecloud

sonarqubecloud Bot commented Aug 4, 2026

Copy link
Copy Markdown

@github-actions

github-actions Bot commented Aug 4, 2026

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