Skip to content

chore(deps): bump @playwright/test from 1.62.1 to 1.63.0 - #340

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/playwright/test-1.63.0
Closed

chore(deps): bump @playwright/test from 1.62.1 to 1.63.0#340
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/playwright/test-1.63.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps @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 dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Sep 8, 2026
Bumps [@playwright/test](https://github.com/microsoft/playwright) 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: "@playwright/test"
  dependency-version: 1.63.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/bun/playwright/test-1.63.0 branch from 8415ccf to 73351ee Compare September 8, 2026 10:39
davidvornholt added a commit that referenced this pull request Sep 12, 2026
**Before.** Standards consumers inherit Biome 2.5.11 and shared
Playwright 1.62.1, missing current fixes and lint rules. Bun types and
the CLI's YAML parser also lag their latest releases.

**Now.** Upgrade Biome to 2.5.13, both shared Playwright packages to
1.63.0, Bun types to 1.4.2, and YAML to 2.9.1. Release standards CLI
0.26.1 and align template pins, schema URLs, the Nix runtime dependency
hash, and adoption examples.

## Implementation

The strict nursery group enables the new rules automatically.
`noBunModules` excludes only the existing Bun test and helper paths,
where Bun imports are required; a regression fixture proves application
imports remain rejected. The centralized Biome hold stays in place so
consumers receive coordinated upgrades.

Supersedes dependency updates in #338, #339, and #340.

## Verification

### Completed checks

- `bun run check:fix`: passed all 9 tasks, including 1,404 CLI tests,
shared-package tests, type checks, and lint.
- `bun outdated --recursive`: no outdated dependencies.
- `git diff --check`: passed.
- `nix flake check`: passed locally on x86_64-linux and in CI on both
x86_64-linux and aarch64-linux, including the CLI package build and
smoke checks.
- PaperSync consumer: all 25 quality tasks passed with the updated
shared toolchain, including desktop and mobile browser checks.
- The first gate run identified Bun test imports under the new rule; the
documented runtime exception and regression test resolve that failure.
- The first CI Nix builds found the stale YAML dependency hash on both
architectures. Updated it to the identical hash computed by both
runners; the local Nix gate now passes.
@dependabot @github

dependabot Bot commented on behalf of github Sep 12, 2026

Copy link
Copy Markdown
Contributor Author

Looks like @playwright/test is up-to-date now, so this is no longer needed.

@dependabot dependabot Bot closed this Sep 12, 2026
@dependabot
dependabot Bot deleted the dependabot/bun/playwright/test-1.63.0 branch September 12, 2026 20:34
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.

0 participants