Skip to content

chore(deps-dev): bump the qa-tooling group across 1 directory with 2 updates - #421

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/qa-tooling-8951d1f60c
Open

chore(deps-dev): bump the qa-tooling group across 1 directory with 2 updates#421
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/qa-tooling-8951d1f60c

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the qa-tooling group with 2 updates in the / directory: @cucumber/cucumber and @playwright/test.

Updates @cucumber/cucumber from 12.9.0 to 13.2.0

Release notes

Sourced from @​cucumber/cucumber's releases.

v13.2.0

Added

  • Add option for where to run global hooks (#2880)

v13.1.1

Fixed

  • Ensure ESM entry point get all exported types (#2881)

v13.1.0

Changed

  • Handle unexpected exit from parallel worker (#2878)

Fixed

  • Prevent formatter error when test step result is missing (#2878)

v13.0.0

This is a major release and contains some breaking changes. See the entries below, and https://github.com/cucumber/cucumber-js/blob/main/UPGRADING.md#1300 for specifics on how to migrate where needed.

Added

  • Add support for Node.js 26.x (#2818)

Changed

  • BREAKING CHANGE: Reimplement parallel runtime with worker threads (#2710)
  • BREAKING CHANGE: All BeforeAll and AfterAll hooks are always executed (#2710)
  • BREAKING CHANGE: Set FORCE_COLOR based on deprecated format option (#2769)
  • Redesigned output for summary, progress, progress bar and pretty formatters (#2708)
  • Reduce transitive dependencies (#2800) by @​m-basov

Deprecated

  • Deprecate legacy SummaryFormatter and ProgressFormatter classes in favour of new formatter architecture (#2708)
  • Deprecate printAttachments format option in favour of includeAttachments (#2708)

Fixed

  • Update status colors to match other formatters (#2828)
  • Surface Error.cause chain (with stack frames) in output (#2813) by @​rkdfx
  • Handle undefined/ambiguous correctly when skipped (#2836)

Removed

  • BREAKING CHANGE: Drop support for Node.js 20.x (#2818)
  • BREAKING CHANGE: Drop support for Node.js 25.x (#2818)
  • BREAKING CHANGE: Remove deprecated Cli export (#2820)
  • BREAKING CHANGE: Remove deprecated handling of ambiguous formats (#2819)
Changelog

Sourced from @​cucumber/cucumber's changelog.

[13.2.0] - 2026-07-20

Added

  • Add option for where to run global hooks (#2880)

[13.1.1] - 2026-07-16

Fixed

  • Ensure ESM entry point get all exported types (#2881)

[13.1.0] - 2026-07-14

Changed

  • Handle unexpected exit from parallel worker (#2878)

Fixed

  • Prevent formatter error when test step result is missing (#2878)

[13.0.0] - 2026-06-02

Added

  • Add support for Node.js 26.x (#2818)

Changed

  • BREAKING CHANGE: Reimplement parallel runtime with worker threads (#2710)
  • BREAKING CHANGE: All BeforeAll and AfterAll hooks are always executed (#2710)
  • BREAKING CHANGE: Set FORCE_COLOR based on deprecated format option (#2769)
  • Redesigned output for summary, progress, progress bar and pretty formatters (#2708)
  • Reduce transitive dependencies (#2800) by @​m-basov

Deprecated

  • Deprecate legacy SummaryFormatter and ProgressFormatter classes in favour of new formatter architecture (#2708)
  • Deprecate printAttachments format option in favour of includeAttachments (#2708)

Fixed

  • Update status colors to match other formatters (#2828)
  • Surface Error.cause chain (with stack frames) in output (#2813) by @​rkdfx
  • Handle undefined/ambiguous correctly when skipped (#2836)

Removed

  • BREAKING CHANGE: Drop support for Node.js 20.x (#2818)
  • BREAKING CHANGE: Drop support for Node.js 25.x (#2818)
  • BREAKING CHANGE: Remove deprecated Cli export (#2820)
  • BREAKING CHANGE: Remove deprecated handling of ambiguous formats (#2819)
Commits

Updates @playwright/test from 1.60.0 to 1.61.1

Release notes

Sourced from @​playwright/test's releases.

v1.61.1

Bug Fixes

  • #41365 [Bug]: Expect.Extend matcher with same name as default matcher in same expect instance overrides default matchers implementation to custom matcher
  • #41351 [Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected number of bytes (same test passes in headed mode)
  • #41360 [Bug]: Trace viewer: message times in websockets are downscaled by 1000
  • #41311 [Bug]: [Regression]: Sync loader throws "context.conditions?.includes is not a function" on Node 22.15
  • #41371 [Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless .ts subpath imports across pnpm workspace symlinks

v1.61.0

🔑 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

... (truncated)

Commits
  • 39e3553 cherry-pick(#41399): fix(test): load require-reached files as commonjs in syn...
  • 4328122 chore: mark v1.61.1 (#41404)
  • 2c29a94 fix(tracing): stop recording websocket frames outside of chunks (#41398)
  • 4324b19 cherry-pick(#41367): fix(test): keep builtin expect matchers on base extend
  • 041e7e3 cherry-pick(#41364): fix(har): WebSocket message timestamps should be in mi...
  • b8a0fc3 cherry-pick(#41309, #43149): Revert "fix(firefox): treat `navigationCommitted...
  • b5a3175 cherry-pick(#41319): fix(loader): support other node versions
  • d4724a9 cherry-pick(#41290): feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image
  • 1cc5a90 cherry-pick(#41295): chore: PLAYWRIGHT_TRACING_NO_WEBSOCKET_FRAMES and PLAYWR...
  • a6772bd cherry-pick(#41280): Revert "fix(trace-viewer): add keyboard navigation to `N...
  • Additional commits viewable in compare view

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Jun 22, 2026

Copy link
Copy Markdown

Deploying researchops with  Cloudflare Pages  Cloudflare Pages

Latest commit: 02d5de6
Status: ✅  Deploy successful!
Preview URL: https://b85ca661.researchops.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-qa-t-cx53.researchops.pages.dev

View logs

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/qa-tooling-8951d1f60c branch 2 times, most recently from 3a6e1ca to 964fbf8 Compare July 6, 2026 08:12
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/qa-tooling-8951d1f60c branch 3 times, most recently from a96fdda to 9d8d44d Compare July 13, 2026 08:13
…updates

Bumps the qa-tooling group with 2 updates in the / directory: [@cucumber/cucumber](https://github.com/cucumber/cucumber-js) and [@playwright/test](https://github.com/microsoft/playwright).


Updates `@cucumber/cucumber` from 12.9.0 to 13.2.0
- [Release notes](https://github.com/cucumber/cucumber-js/releases)
- [Changelog](https://github.com/cucumber/cucumber-js/blob/main/CHANGELOG.md)
- [Commits](cucumber/cucumber-js@v12.9.0...v13.2.0)

Updates `@playwright/test` from 1.60.0 to 1.61.1
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.60.0...v1.61.1)

---
updated-dependencies:
- dependency-name: "@cucumber/cucumber"
  dependency-version: 13.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: qa-tooling
- dependency-name: "@playwright/test"
  dependency-version: 1.61.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: qa-tooling
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/qa-tooling-8951d1f60c branch from 9d8d44d to 3e4dc57 Compare July 20, 2026 08:12
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