Skip to content

Bump Microsoft.NET.Test.Sdk and Microsoft.Playwright#1112

Merged
louis-z merged 1 commit into
mainfrom
dependabot/nuget/test-dependencies-60aa94a0fb
Jun 30, 2026
Merged

Bump Microsoft.NET.Test.Sdk and Microsoft.Playwright#1112
louis-z merged 1 commit into
mainfrom
dependabot/nuget/test-dependencies-60aa94a0fb

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Updated Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0.

Release notes

Sourced from Microsoft.NET.Test.Sdk's releases.

18.7.0

What's Changed

New Contributors

Full Changelog: microsoft/vstest@v18.6.0...v18.7.0

Commits viewable in compare view.

Updated Microsoft.Playwright from 1.60.0 to 1.61.0.

Release notes

Sourced from Microsoft.Playwright's releases.

1.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:

var context = await browser.NewContextAsync();

// Seed a passkey your backend provisioned for a test user.
await context.Credentials.CreateAsync("example.com", new()
{
    Id = credentialId,
    UserHandle = userHandle,
    PrivateKey = privateKey,
    PublicKey = publicKey,
});
await context.Credentials.InstallAsync();

var page = await context.NewPageAsync();
await page.GotoAsync("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.GetAsync(), 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:

await page.LocalStorage.SetItemAsync("token", "abc");
var token = await page.LocalStorage.GetItemAsync("token");
var items = await page.SessionStorage.ItemsAsync();

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:
... (truncated)

Commits viewable in compare view.

@dependabot dependabot Bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Jun 29, 2026
@dependabot dependabot Bot requested a review from a team as a code owner June 29, 2026 09:06
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jun 29, 2026
@dependabot dependabot Bot requested review from Hastaroth1 and removed request for a team June 29, 2026 09:06
@dependabot dependabot Bot added the .NET Pull requests that update .net code label Jun 29, 2026
@louis-z

louis-z commented Jun 30, 2026

Copy link
Copy Markdown
Member

@dependabot rebase

Bumps Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0
Bumps Microsoft.Playwright from 1.60.0 to 1.61.0

---
updated-dependencies:
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-dependencies
- dependency-name: Microsoft.Playwright
  dependency-version: 1.61.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: test-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the test-dependencies group with 2 updates Bump Microsoft.NET.Test.Sdk and Microsoft.Playwright Jun 30, 2026
@dependabot dependabot Bot force-pushed the dependabot/nuget/test-dependencies-60aa94a0fb branch from f56e75d to 2104111 Compare June 30, 2026 13:04
@louis-z louis-z enabled auto-merge (squash) June 30, 2026 13:09
@louis-z louis-z merged commit 099f98d into main Jun 30, 2026
7 checks passed
@louis-z louis-z deleted the dependabot/nuget/test-dependencies-60aa94a0fb branch June 30, 2026 13: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 .NET Pull requests that update .net code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant