Skip to content

chore(deps): Bump com.microsoft.playwright:playwright from 1.59.0 to 1.61.0#1279

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/com.microsoft.playwright-playwright-1.60.0
Open

chore(deps): Bump com.microsoft.playwright:playwright from 1.59.0 to 1.61.0#1279
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/maven/com.microsoft.playwright-playwright-1.60.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps com.microsoft.playwright:playwright from 1.59.0 to 1.61.0.

Release notes

Sourced from com.microsoft.playwright:playwright's releases.

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:

BrowserContext context = browser.newContext();
// Seed a passkey your backend provisioned for a test user.
context.credentials().create("example.com", new Credentials.CreateOptions()
.setId(credentialId)
.setUserHandle(userHandle)
.setPrivateKey(privateKey)
.setPublicKey(publicKey));
context.credentials().install();
Page page = context.newPage();
page.navigate("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:

page.localStorage().setItem("token", "abc");
String token = page.localStorage().getItem("token");
List<NameValue> items = page.sessionStorage().items();

New APIs

🛠️ 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

... (truncated)

Commits
  • e8869de chore: mark 1.61.0 (#1942)
  • 20e4edd chore: roll driver to 1.61.1 (#1941)
  • d2d29d4 feat(driver): bundle playwright-core in driver, keep only Node.js in driver-b...
  • 43d2601 fix(fetch): serialize LocalDate in post data (#1934)
  • ace7a12 fix(driver-bundle): exclude driver binaries from sources JAR (#1933)
  • fddd7c3 feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image (#1932)
  • 423cbf4 chore: roll driver to 1.61.0-beta-1781285686000 (#1929)
  • e3f2f6f fix(docker): assemble driver on the host for docker builds (#1930)
  • 1b7d164 chore: extract common skill conventions into CLAUDE.md (#1928)
  • 7a59a68 feat: assemble driver from npm instead of CDN (#1927)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jun 24, 2026
Bumps [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) from 1.59.0 to 1.61.0.
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.59.0...v1.61.0)

---
updated-dependencies:
- dependency-name: com.microsoft.playwright:playwright
  dependency-version: 1.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): Bump com.microsoft.playwright:playwright from 1.59.0 to 1.60.0 chore(deps): Bump com.microsoft.playwright:playwright from 1.59.0 to 1.61.0 Jul 2, 2026
@dependabot dependabot Bot force-pushed the dependabot/maven/com.microsoft.playwright-playwright-1.60.0 branch from 5b3fb34 to 47cedf9 Compare July 2, 2026 01:47
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 java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants