Skip to content

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

Merged
openshift-merge-bot[bot] merged 1 commit into
mainfrom
renovate/devdependencies-(non-major)
Jun 25, 2026
Merged

chore(deps): update devdependencies (non-major)#4747
openshift-merge-bot[bot] merged 1 commit into
mainfrom
renovate/devdependencies-(non-major)

Conversation

@renovate

@renovate renovate Bot commented May 3, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@axe-core/playwright 4.11.24.11.3 age confidence
@playwright/test (source) 1.59.11.61.0 age confidence
ioredis 5.10.15.11.1 age confidence
monocart-coverage-reports 2.12.112.12.12 age confidence
sherif 1.11.11.12.0 age confidence
turbo (source) 2.9.62.9.18 age confidence
yaml (source) 2.8.32.9.0 age confidence

Release Notes

dequelabs/axe-core-npm (@​axe-core/playwright)

v4.11.3

Compare Source

Bug Fixes
microsoft/playwright (@​playwright/test)

v1.61.0

Compare Source

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

const context = await browser.newContext();

// Seed a passkey your backend provisioned for a test user.
await context.credentials.create('example.com', {
  id: credentialId,
  userHandle,
  privateKey,
  publicKey,
});
await context.credentials.install();

const page = await context.newPage();
await page.goto('https://example.com/login');
// The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

🗃️ Web Storage

New WebStorage API, available via page.localStorage and page.sessionStorage, reads and writes the page's storage for the current origin:

await page.localStorage.setItem('token', 'abc');
const token = await page.localStorage.getItem('token');
const items = await page.sessionStorage.items();
New APIs
Network
Browser and Screencast
  • New option artifactsDir in browserType.connectOverCDP() controls where artifacts such as traces and downloads are stored when attached to an existing browser.
  • New option cursor in screencast.showActions() controls the cursor decoration rendered for pointer actions.
  • The onFrame callback in screencast.start() now receives a timestamp of when the frame was presented by the browser.
Test runner
  • The testOptions.video option now supports the same set of modes as trace: new 'on-all-retries', 'retain-on-first-failure' and 'retain-on-failure-and-retries' values. See the video modes table for which runs are recorded and kept in each mode.
  • Supported expect.soft.poll(...).
  • New fullConfig.argv — a snapshot of process.argv from the runner process, handy for reading custom arguments passed after the -- separator.
  • New fullConfig.failOnFlakyTests mirrors the config option, so reporters can explain why a flaky run failed.
  • testInfo.errors now lists each sub-error of an AggregateError as a separate entry.
  • New -G command line shorthand for --grep-invert.
🛠️ Other improvements
  • Playwright now supports Ubuntu 26.04.
  • HAR and trace recordings now include WebSocket requests.
Browser Versions
  • Chromium 149.0.7827.55
  • Mozilla Firefox 151.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 149
  • Microsoft Edge 149

v1.60.0

Compare Source

🌐 HAR recording on Tracing

tracing.startHar() / tracing.stopHar() expose HAR recording as a first-class tracing API, with the same content, mode and urlFilter options as recordHar. The returned Disposable makes it easy to scope a recording with await using:

await using har = await context.tracing.startHar('trace.har');
const page = await context.newPage();
await page.goto('https://playwright.dev');
// HAR is finalized when `har` goes out of scope.

🪝 Drop API

New locator.drop() simulates an external drag-and-drop of files or clipboard-like data onto an element. Playwright dispatches dragenter, dragover, and drop with a synthetic [DataTransfer] in the page context — works cross-browser and is great for testing upload zones:

await page.locator('#dropzone').drop({
  files: { name: 'note.txt', mimeType: 'text/plain', buffer: Buffer.from('hello') },
});

await page.locator('#dropzone').drop({
  data: {
    'text/plain': 'hello world',
    'text/uri-list': 'https://example.com',
  },
});

🎯 Aria snapshots

🛑 test.abort()

New test.abort() aborts the currently running test from a fixture, hook, or route handler with an optional message. Use it when you have detected an unrecoverable misuse and want to fail the test right away:

test('does not publish to the shared page', async ({ page }) => {
  await page.route('**/publish', route => {
    test.abort('Tests must not publish to the shared page. Use the `clone` option.');
    return route.abort();
  });
  // ...
});

New APIs

Browser, Context and Page
Locators and Assertions
Network
  • webSocketRoute.protocols() returns the WebSocket subprotocols requested by the page.
  • New option noDefaults in browserType.connectOverCDP() disables Playwright's default overrides on the default context (download behavior, focus emulation, media emulation), so attaching to a user's daily-driver browser doesn't disturb its state.
Errors and Reporting
Test runner
  • New {testFileBaseName} token in testProject.snapshotPathTemplate — file name without extension.
  • Test runner now errors when a config tries to override a non-option fixture, and rejects workers: 0 or negative values.

🛠️ Other improvements

  • HTML reporter:
    • npx playwright show-report accepts .zip files directly — no need to unzip first.
    • Steps that contain attachments inside nested children show an indicator on the parent step.
    • The repeatEachIndex is shown in the test header when non-zero.
  • Trace Viewer adds a pretty-print toggle for JSON / form request and response bodies in the network details panel.

Breaking Changes ⚠️

  • Removed long-deprecated APIs:
    • Locator.ariaRef() — use the standard locator.ariaSnapshot() pipeline.
    • handle option on BrowserContext.exposeBinding and Page.exposeBinding.
    • logger option on BrowserType.connect and BrowserType.connectOverCDP — use tracing instead.
    • Context options videosPath / videoSize — use recordVideo instead.

Browser Versions

  • Chromium 148.0.7778.96
  • Mozilla Firefox 150.0.2
  • WebKit 26.4

This version was also tested against the following stable channels:

  • Google Chrome 147
  • Microsoft Edge 147
luin/ioredis (ioredis)

v5.11.1

Compare Source

Bug Fixes
  • cluster: reconnect to nodes that restart without slot changes (#​2096) (c84b2ee)
  • parse protocol-relative Redis URLs as TCP connections (#​2125) (131ee24)

v5.11.0

Compare Source

Bug Fixes
Features

5.10.1 (2026-03-19)

Bug Fixes
cenfun/monocart-coverage-reports (monocart-coverage-reports)

v2.12.12

Compare Source

QuiiBz/sherif (sherif)

v1.12.0

Compare Source

What's Changed

New Contributors

Full Changelog: QuiiBz/sherif@v1...v1.12.0

vercel/turborepo (turbo)

v2.9.18: Turborepo v2.9.18

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.9.17...v2.9.18

v2.9.17: Turborepo v2.9.17

Compare Source

What's Changed

Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.9.16...v2.9.17

v2.9.16: Turborepo v2.9.16

Compare Source

What's Changed

Changelog

Full Changelog: vercel/turborepo@v2.9.15...v2.9.16

v2.9.15: Turborepo v2.9.15

Compare Source

What's Changed

Changelog

Note

PR body was truncated to here.


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.

@renovate renovate Bot requested a review from a team May 3, 2026 13:04
@openshift-ci openshift-ci Bot requested review from kadel and teknaS47 May 3, 2026 13:04
@openshift-ci

openshift-ci Bot commented May 3, 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 May 3, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 55.39%. Comparing base (694cfce) to head (54fbee5).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #4747   +/-   ##
=======================================
  Coverage   55.39%   55.39%           
=======================================
  Files         122      122           
  Lines        2365     2365           
  Branches      568      564    -4     
=======================================
  Hits         1310     1310           
  Misses       1048     1048           
  Partials        7        7           
Flag Coverage Δ
rhdh 55.39% <ø> (ø)

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 694cfce...54fbee5. 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

github-actions Bot commented May 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 b7a6ee2 to 49193e8 Compare May 4, 2026 04:32
@renovate renovate Bot changed the title chore(deps): update dependency @axe-core/playwright to v4.11.3 chore(deps): update devdependencies (non-major) May 4, 2026
@github-actions

github-actions Bot commented May 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 ddb41b7 to 1421989 Compare May 4, 2026 12:04
@github-actions

github-actions Bot commented May 4, 2026

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

@github-actions

github-actions Bot commented May 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 1636173 to 74a5010 Compare May 4, 2026 17:07
@github-actions

github-actions Bot commented May 4, 2026

Copy link
Copy Markdown
Contributor

The container image build workflow finished with status: cancelled.

@github-actions

github-actions Bot commented May 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 74a5010 to 9c173c5 Compare May 5, 2026 09:52
@github-actions

github-actions Bot commented May 5, 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 9c173c5 to 7558792 Compare May 6, 2026 04:32
@github-actions

github-actions Bot commented May 6, 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 7558792 to 8181771 Compare May 6, 2026 11:56
@github-actions

github-actions Bot commented May 6, 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 8181771 to 83bb6f5 Compare May 6, 2026 13:35
@github-actions

github-actions Bot commented May 6, 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 83bb6f5 to 1a8abe8 Compare May 6, 2026 15:32
@github-actions

github-actions Bot commented May 6, 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 1a8abe8 to 6bc5b90 Compare May 6, 2026 17:00
@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@github-actions

Copy link
Copy Markdown
Contributor

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

@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:

@github-actions

Copy link
Copy Markdown
Contributor

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

@kim-tsao

Copy link
Copy Markdown
Member

/ok-to-test

@github-actions

Copy link
Copy Markdown
Contributor

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

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@github-actions

Copy link
Copy Markdown
Contributor

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

@kim-tsao kim-tsao left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

@sonarqubecloud

Copy link
Copy Markdown

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.

1 participant