Skip to content

Bump com.microsoft.playwright:playwright from 1.60.0 to 1.61.0 in the dev-deps group#690

Merged
thmarx merged 1 commit into
mainfrom
dependabot/maven/dev-deps-b9af8afa3e
Jun 30, 2026
Merged

Bump com.microsoft.playwright:playwright from 1.60.0 to 1.61.0 in the dev-deps group#690
thmarx merged 1 commit into
mainfrom
dependabot/maven/dev-deps-b9af8afa3e

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the dev-deps group with 1 update: com.microsoft.playwright:playwright.

Updates 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 <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

Bumps the dev-deps group with 1 update: [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java).


Updates `com.microsoft.playwright:playwright` 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:development
  update-type: version-update:semver-minor
  dependency-group: dev-deps
...

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 Jun 30, 2026
@thmarx thmarx merged commit 12ec371 into main Jun 30, 2026
1 check passed
@dependabot dependabot Bot deleted the dependabot/maven/dev-deps-b9af8afa3e branch June 30, 2026 15:42
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