[PR #20] [CLOSED] PR 20: build(deps-dev): bump @playwright/test from 1.45.3 to 1.46.1 #192

Closed
opened 2026-03-13 17:40:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Aetherinox/ntfy-desktop/pull/20
Author: @dependabot[bot]
Created: 8/19/2024
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/playwright/test-1.46.1


📝 Commits (1)

  • f21bfb3 build(deps-dev): bump @playwright/test from 1.45.3 to 1.46.1

📊 Changes

2 files changed (+13 additions, -17 deletions)

View changed files

📝 package-lock.json (+12 -16)
📝 package.json (+1 -1)

📄 Description

Bumps @playwright/test from 1.45.3 to 1.46.1.

Release notes

Sourced from @​playwright/test's releases.

v1.46.1

Highlights

microsoft/playwright#32004 - [REGRESSION]: Client Certificates don't work with Microsoft IIS microsoft/playwright#32004 - [REGRESSION]: Websites stall on TLS handshake errors when using Client Certificates microsoft/playwright#32146 - [BUG]: Credential scanners warn about internal socks-proxy TLS certificates microsoft/playwright#32056 - [REGRESSION]: 1.46.0 (TypeScript) - custom fixtures extend no longer chainable microsoft/playwright#32070 - [Bug]: --only-changed flag and project dependencies microsoft/playwright#32188 - [Bug]: --only-changed with shallow clone throws "unknown revision" error

Browser Versions

  • Chromium 128.0.6613.18
  • Mozilla Firefox 128.0
  • WebKit 18.0

This version was also tested against the following stable channels:

  • Google Chrome 127
  • Microsoft Edge 127

v1.46.0

TLS Client Certificates

Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.

When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.

The following snippet sets up a client certificate for https://example.com:

import { defineConfig } from '@playwright/test';

export default defineConfig({ // ... use: { clientCertificates: [{ origin: 'https://example.com', certPath: './cert.pem', keyPath: './key.pem', passphrase: 'mysecretpassword', }], }, // ... });

You can also provide client certificates to a particular test project or as a parameter of browser.newContext() and apiRequest.newContext().

--only-changed cli option

New CLI option --only-changed allows to only run test files that have been changed since the last git commit or from a specific git "ref".

... (truncated)

Commits
  • e1c861c cherry-pick(#32021): test: fix failing client-certificate tests
  • 20b0788 chore: mark v1.46.1 (#32194)
  • 57c3240 cherry-pick(#32192): chore: generate self-signed certificates for socks proxy
  • 301f179 cherry-pick(#32189): fix(only-changed): show nice error message about shallow...
  • b2d6a09 cherry-pick(#32164): docs: release video and trace viewer video (#32173)
  • 7cf7aec cherry-pick(#32094): fix(test runner): run project dependencies of `--only-ch...
  • d78ae01 cherry-pick(#32163): fix(client-certificates): stall on tls handshake errors
  • bd13da4 cherry-pick(#32155): fix(client-certificates): when server does tls renegotia...
  • 30684a7 cherry-pick(#32066): fix(types): revert type changes made to support TS 5.5 (...
  • 5e68061 cherry-pick(#32015): docs(release-notes): fix typo in .NET release notes
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/Aetherinox/ntfy-desktop/pull/20 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 8/19/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/playwright/test-1.46.1` --- ### 📝 Commits (1) - [`f21bfb3`](https://github.com/Aetherinox/ntfy-desktop/commit/f21bfb3f944cfa84e85d7dcf6582934431527bd1) build(deps-dev): bump @playwright/test from 1.45.3 to 1.46.1 ### 📊 Changes **2 files changed** (+13 additions, -17 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+12 -16) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [@playwright/test](https://github.com/microsoft/playwright) from 1.45.3 to 1.46.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/microsoft/playwright/releases"><code>@​playwright/test</code>'s releases</a>.</em></p> <blockquote> <h2>v1.46.1</h2> <h3>Highlights</h3> <p><a href="https://redirect.github.com/microsoft/playwright/issues/32004">microsoft/playwright#32004</a> - [REGRESSION]: Client Certificates don't work with Microsoft IIS <a href="https://redirect.github.com/microsoft/playwright/issues/32004">microsoft/playwright#32004</a> - [REGRESSION]: Websites stall on TLS handshake errors when using Client Certificates <a href="https://redirect.github.com/microsoft/playwright/issues/32146">microsoft/playwright#32146</a> - [BUG]: Credential scanners warn about internal socks-proxy TLS certificates <a href="https://redirect.github.com/microsoft/playwright/issues/32056">microsoft/playwright#32056</a> - [REGRESSION]: 1.46.0 (TypeScript) - custom fixtures extend no longer chainable <a href="https://redirect.github.com/microsoft/playwright/issues/32070">microsoft/playwright#32070</a> - [Bug]: --only-changed flag and project dependencies <a href="https://redirect.github.com/microsoft/playwright/issues/32188">microsoft/playwright#32188</a> - [Bug]: --only-changed with shallow clone throws &quot;unknown revision&quot; error</p> <h2>Browser Versions</h2> <ul> <li>Chromium 128.0.6613.18</li> <li>Mozilla Firefox 128.0</li> <li>WebKit 18.0</li> </ul> <p>This version was also tested against the following stable channels:</p> <ul> <li>Google Chrome 127</li> <li>Microsoft Edge 127</li> </ul> <h2>v1.46.0</h2> <h2>TLS Client Certificates</h2> <p>Playwright now allows to supply client-side certificates, so that server can verify them, as specified by TLS Client Authentication.</p> <p>When client certificates are specified, all browser traffic is routed through a proxy that establishes the secure TLS connection, provides client certificates to the server and validates server certificates.</p> <p>The following snippet sets up a client certificate for <code>https://example.com</code>:</p> <pre lang="ts"><code>import { defineConfig } from '@playwright/test'; <p>export default defineConfig({ // ... use: { clientCertificates: [{ origin: 'https://example.com', certPath: './cert.pem', keyPath: './key.pem', passphrase: 'mysecretpassword', }], }, // ... }); </code></pre></p> <p>You can also provide client certificates to a particular <a href="https://playwright.dev/docs/api/class-testproject#test-project-use">test project</a> or as a parameter of <a href="https://playwright.dev/docs/api/class-browser#browser-new-context">browser.newContext()</a> and <a href="https://playwright.dev/docs/api/class-apirequest#api-request-new-context">apiRequest.newContext()</a>.</p> <h2><code>--only-changed</code> cli option</h2> <p>New CLI option <code>--only-changed</code> allows to only run test files that have been changed since the last git commit or from a specific git &quot;ref&quot;.</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/playwright/commit/e1c861cfa7a6caf3c5b798786b1e6298c4f3cf31"><code>e1c861c</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32021">#32021</a>): test: fix failing client-certificate tests</li> <li><a href="https://github.com/microsoft/playwright/commit/20b0788101c3ea52cf3de77242340eaa71f5689e"><code>20b0788</code></a> chore: mark v1.46.1 (<a href="https://redirect.github.com/microsoft/playwright/issues/32194">#32194</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/57c324002a7a56d0762162e6ae300e3acb363611"><code>57c3240</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32192">#32192</a>): chore: generate self-signed certificates for socks proxy</li> <li><a href="https://github.com/microsoft/playwright/commit/301f1797357a45c3c4819f43a3f7b356c1d1d3bc"><code>301f179</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32189">#32189</a>): fix(only-changed): show nice error message about shallow...</li> <li><a href="https://github.com/microsoft/playwright/commit/b2d6a0916eeea2e6b3c43220e654186b8e352758"><code>b2d6a09</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32164">#32164</a>): docs: release video and trace viewer video (<a href="https://redirect.github.com/microsoft/playwright/issues/32173">#32173</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/7cf7aec97fb49fcabd47d4aebde197de457aacbc"><code>7cf7aec</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32094">#32094</a>): fix(test runner): run project dependencies of `--only-ch...</li> <li><a href="https://github.com/microsoft/playwright/commit/d78ae0179db50d26ecf2c09c12e21d4d3421f1c1"><code>d78ae01</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32163">#32163</a>): fix(client-certificates): stall on tls handshake errors</li> <li><a href="https://github.com/microsoft/playwright/commit/bd13da413299d06ad8bfb72b9dbcc89bda5e7713"><code>bd13da4</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32155">#32155</a>): fix(client-certificates): when server does tls renegotia...</li> <li><a href="https://github.com/microsoft/playwright/commit/30684a77e764c49aa76ece4af628ef0aaf1f38e5"><code>30684a7</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32066">#32066</a>): fix(types): revert type changes made to support TS 5.5 (...</li> <li><a href="https://github.com/microsoft/playwright/commit/5e68061d4993cc9e2ee632082d28a3b4a9d71092"><code>5e68061</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32015">#32015</a>): docs(release-notes): fix typo in .NET release notes</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/playwright/compare/v1.45.3...v1.46.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.45.3&new-version=1.46.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-13 17:40:43 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/ntfy-desktop#192
No description provided.