Skip to content

Bump com.microsoft.playwright:playwright from 1.60.0 to 1.61.0#173

Merged
ardetrick merged 2 commits into
mainfrom
dependabot/gradle/com.microsoft.playwright-playwright-1.61.0
Jul 1, 2026
Merged

Bump com.microsoft.playwright:playwright from 1.60.0 to 1.61.0#173
ardetrick merged 2 commits into
mainfrom
dependabot/gradle/com.microsoft.playwright-playwright-1.61.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

Bumps com.microsoft.playwright:playwright from 1.60.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 compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) from 1.60.0 to 1.61.0.
- [Release notes](https://github.com/microsoft/playwright-java/releases)
- [Commits](microsoft/playwright-java@v1.60.0...v1.61.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Jul 1, 2026
@ardetrick ardetrick merged commit 2213719 into main Jul 1, 2026
1 check passed
@ardetrick ardetrick deleted the dependabot/gradle/com.microsoft.playwright-playwright-1.61.0 branch July 1, 2026 11:49
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.

1 participant