Skip to content

chore(deps-dev): Bump the npm-minor-and-patch group across 1 directory with 3 updates - #75

Merged
abdulahmad307 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-and-patch-8b571ff73b
Sep 15, 2026
Merged

abdulahmad307 merged 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-minor-and-patch-8b571ff73b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-and-patch group with 3 updates in the / directory: @guidepup/guidepup, @guidepup/playwright and @playwright/test.

Updates @guidepup/guidepup from 0.31.0 to 0.34.0

Release notes

Sourced from @​guidepup/guidepup's releases.

0.34.0

What's Changed

Guidepup now uses NVDA 2026.2.

Full Changelog: guidepup/guidepup@0.24.0...0.34.0

0.33.2

What's Changed

Full Changelog: guidepup/guidepup@0.33.1...0.33.2

0.33.1

What's Changed

Full Changelog: guidepup/guidepup@0.33.0...0.33.1

0.33.0

What's Changed

Details

Adds a new capture() API for capturing screen reader output produced by arbitrary actions.

This enables integration with external automation tools such as Playwright, allowing Guidepup to associate spoken phrases and item text with interactions performed outside of the Guidepup API. The action’s result is returned alongside the captured screen reader output.

Example:

const capture = await screenReader.capture(() =>
  page.getByRole("button", { name: "Add to cart" }).click(),
);
expect(capture.spokenPhrase).toContain("Added to cart");

Separate to this change, the StartOptions type is now exported from the package.


Full Changelog: guidepup/guidepup@0.32.1...0.33.0

... (truncated)

Commits

Updates @guidepup/playwright from 0.18.0 to 0.19.1

Release notes

Sourced from @​guidepup/playwright's releases.

0.19.1

What's Changed

Full Changelog: guidepup/guidepup-playwright@0.19.0...0.19.1

0.19.0

What's Changed

Details

New capture() API

Supports the new capture() API for capturing screen reader output produced by arbitrary actions.

This enables seemless integration with Playwright, allowing Guidepup to associate spoken phrases and item text with interactions performed using Playwright APIs. The action’s result is returned alongside the captured screen reader output.

Example:

const capture = await screenReader.capture(() =>
  page.getByRole("button", { name: "Add to cart" }).click(),
);
expect(capture.spokenPhrase).toContain("Added to cart");

This paves the way for auto-instrumentation of Playwright tests where existing tests can be re-used to also allow assertions on screen reader output without explicit Guidepup commands.

Misc

  • This change also improves some of the types for exported Playwright test instances.
  • BREAKING: Minimum version of @guidepup/guidepup peer dependency bumped to 0.33.0

Full Changelog: guidepup/guidepup-playwright@0.18.0...0.19.0

Commits
  • db843de Bump version from 0.19.0 to 0.19.1
  • a26a82f fix: harden item chooser flow for VoiceOver (#47)
  • 0142fe0 fix: simplify voiceOver.navigateToWebContent() now auto-navigation is disab...
  • 2fae750 ci: remove min release age override
  • f47d9c4 docs: README section on capture
  • 738eb27 chore: package bump
  • 48f92c9 feat: support capture() on voiceover (#45)
  • 1754e6c docs: use latest navigation methods
  • d4432db chore: update dev dep on guidepup
  • 6044c96 ci: bump setup cli version
  • Additional commits viewable in compare view

Updates @playwright/test from 1.62.1 to 1.63.0

Release notes

Sourced from @​playwright/test's releases.

v1.63.0

🔒 Test locks

Tests that access a shared resource — an external service, a global account setting — can now declare a named lock. Tests that share a lock name never run concurrently, across files, workers and projects, while everything else keeps running in parallel:

test('update user settings', { lock: 'user-settings' }, async ({ page }) => {
  // never runs at the same time as other tests holding 'user-settings'
});

A test can hold multiple locks, and test.describe() accepts a lock for the whole group. Learn more about test locks.

🪟 Locate across frames

page.frameLocator() and frame.frameLocator() called without a selector search in any frame of the subtree, so you no longer need to locate the iframe first:

// Finds the button in any frame on the page.
await page.frameLocator().getByRole('button').click();

The rest of the locator resolves inside a single frame, just like a regular locator, and an error is thrown when it matches elements in several frames.

👁️ Visible-only locators

New locator.visible() returns a locator that matches only visible elements. It is the recommended replacement for the :visible CSS pseudo-class:

await page.locator('button').visible().click();

🧾 Step params and subtitles

Steps now carry structured data for reporters. Playwright API steps report the target locator and call arguments, and test.step() accepts subtitle and params options for your own steps:

await test.step('Login', async () => {
  // ...
}, { subtitle: 'as admin', params: { user: 'admin' } });

Reporters receive them via testStep.subtitle and testStep.params. For Playwright API

... (truncated)

Commits
  • 1b025d7 chore: mark v1.63.0 (#42569)
  • 0b9956d cherry-pick(#42568): docs(test): mark test.step subtitle option as since v1.63
  • 13dbf10 cherry-pick(#42552): docs: release notes for v1.63
  • e93b64e cherry-pick(#42566): feat(test): add subtitle option to test.step (#42567)
  • 2b7a5f2 test: response.body() for content-encoding:identity (#42537)
  • 648a67c fix(mcp): create parent directories for explicitly named files (#42540)
  • 7894f56 docs(mcp): clarify how tool file names are resolved (#42538)
  • 52900a1 devops: restore npm publishing from GitHub Actions (#42550)
  • 8c47f59 docs(csharp): fix nonexistent method names in guide examples (#42507)
  • bd6e552 chore(video): emit frames with real timestamps, drop frame number quantizatio...
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…y with 3 updates

Bumps the npm-minor-and-patch group with 3 updates in the / directory: [@guidepup/guidepup](https://github.com/guidepup/guidepup), [@guidepup/playwright](https://github.com/guidepup/guidepup-playwright) and [@playwright/test](https://github.com/microsoft/playwright).


Updates `@guidepup/guidepup` from 0.31.0 to 0.34.0
- [Release notes](https://github.com/guidepup/guidepup/releases)
- [Commits](guidepup/guidepup@0.31.0...0.34.0)

Updates `@guidepup/playwright` from 0.18.0 to 0.19.1
- [Release notes](https://github.com/guidepup/guidepup-playwright/releases)
- [Commits](guidepup/guidepup-playwright@0.18.0...0.19.1)

Updates `@playwright/test` from 1.62.1 to 1.63.0
- [Release notes](https://github.com/microsoft/playwright/releases)
- [Commits](microsoft/playwright@v1.62.1...v1.63.0)

---
updated-dependencies:
- dependency-name: "@guidepup/guidepup"
  dependency-version: 0.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@guidepup/playwright"
  dependency-version: 0.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
- dependency-name: "@playwright/test"
  dependency-version: 1.63.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-minor-and-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 15, 2026
@dependabot
dependabot Bot requested a review from a team as a code owner September 15, 2026 06:13
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 15, 2026
@abdulahmad307
abdulahmad307 merged commit 9423e87 into main Sep 15, 2026
4 checks passed
@abdulahmad307
abdulahmad307 deleted the dependabot/npm_and_yarn/npm-minor-and-patch-8b571ff73b branch September 15, 2026 16:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant