[PR #36] [CLOSED] PR 36: build(deps-dev): bump @playwright/test from 1.45.3 to 1.47.0 #210

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

📋 Pull Request Information

Original PR: https://github.com/Aetherinox/ntfy-desktop/pull/36
Author: @dependabot[bot]
Created: 9/6/2024
Status: Closed

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


📝 Commits (1)

  • 4e98c9e build(deps-dev): bump @playwright/test from 1.45.3 to 1.47.0

📊 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.47.0.

Release notes

Sourced from @​playwright/test's releases.

v1.47.0

Network Tab improvements

The Network tab in the UI mode and trace viewer has several nice improvements:

  • filtering by asset type and URL
  • better display of query string parameters
  • preview of font assets

Network tab now has filters

Credit to @​kubajanik for these wonderful improvements!

--tsconfig CLI option

By default, Playwright will look up the closest tsconfig for each imported file using a heuristic. You can now specify a single tsconfig file in the command line, and Playwright will use it for all imported files, not only test files:

# Pass a specific tsconfig
npx playwright test --tsconfig tsconfig.test.json

APIRequestContext now accepts URLSearchParams and string as query parameters

You can now pass URLSearchParams and string as query parameters to APIRequestContext:

test('query params', async ({ request }) => {
  const searchParams = new URLSearchParams();
  searchParams.set('userId', 1);
  const response = await request.get(
      'https://jsonplaceholder.typicode.com/posts',
      {
        params: searchParams // or as a string: 'userId=1'
      }
  );
  // ...
});

Miscellaneous

  • The mcr.microsoft.com/playwright:v1.47.0 now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use mcr.microsoft.com/playwright:v1.47.0-jammy instead.
  • The :latest tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.
  • New option behavior in page.removeAllListeners(), browser.removeAllListeners() and browserContext.removeAllListeners() to wait for ongoing listeners to complete.
  • TLS client certificates can now be passed from memory by passing cert and key as buffers instead of file paths.
  • Attachments with a text/html content type can now be opened in a new tab in the HTML report. This is useful for including third-party reports or other HTML content in the Playwright test report and distributing it to your team.
  • noWaitAfter in locator.selectOption() was deprecated.
  • We've seen reports of WebGL in Webkit misbehaving on GitHub Actions macos-13. We recommend upgrading GitHub Actions to macos-14.

... (truncated)

Commits

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/36 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/6/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/playwright/test-1.47.0` --- ### 📝 Commits (1) - [`4e98c9e`](https://github.com/Aetherinox/ntfy-desktop/commit/4e98c9e377fcd60dbd54949c93f454b32d05f5a4) build(deps-dev): bump @playwright/test from 1.45.3 to 1.47.0 ### 📊 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.47.0. <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.47.0</h2> <h2>Network Tab improvements</h2> <p>The Network tab in the UI mode and trace viewer has several nice improvements:</p> <ul> <li>filtering by asset type and URL</li> <li>better display of query string parameters</li> <li>preview of font assets</li> </ul> <p><img src="https://github.com/user-attachments/assets/4bd1b67d-90bd-438b-a227-00b9e86872e2" alt="Network tab now has filters" /></p> <p>Credit to <a href="https://github.com/kubajanik"><code>@​kubajanik</code></a> for these wonderful improvements!</p> <h2><code>--tsconfig</code> CLI option</h2> <p>By default, Playwright will look up the closest tsconfig for each imported file using a heuristic. You can now specify a single tsconfig file in the command line, and Playwright will use it for all imported files, not only test files:</p> <pre lang="sh"><code># Pass a specific tsconfig npx playwright test --tsconfig tsconfig.test.json </code></pre> <h2><a href="https://playwright.dev/docs/api/class-apirequestcontext">APIRequestContext</a> now accepts <a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams"><code>URLSearchParams</code></a> and <code>string</code> as query parameters</h2> <p>You can now pass <a href="https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams"><code>URLSearchParams</code></a> and <code>string</code> as query parameters to <a href="https://playwright.dev/docs/api/class-apirequestcontext">APIRequestContext</a>:</p> <pre lang="ts"><code>test('query params', async ({ request }) =&gt; { const searchParams = new URLSearchParams(); searchParams.set('userId', 1); const response = await request.get( 'https://jsonplaceholder.typicode.com/posts', { params: searchParams // or as a string: 'userId=1' } ); // ... }); </code></pre> <h2>Miscellaneous</h2> <ul> <li>The <code>mcr.microsoft.com/playwright:v1.47.0</code> now serves a Playwright image based on Ubuntu 24.04 Noble. To use the 22.04 jammy-based image, please use <code>mcr.microsoft.com/playwright:v1.47.0-jammy</code> instead.</li> <li>The <code>:latest</code> tag for Playwright Docker images is no longer being published. Pin to a specific version for better stability and reproducibility.</li> <li>New option <code>behavior</code> in <a href="https://playwright.dev/docs/api/class-page#page-remove-all-listeners">page.removeAllListeners()</a>, <a href="https://playwright.dev/docs/api/class-browser#browser-remove-all-listeners">browser.removeAllListeners()</a> and <a href="https://playwright.dev/docs/api/class-browsercontext#browser-context-remove-all-listeners">browserContext.removeAllListeners()</a> to wait for ongoing listeners to complete.</li> <li>TLS client certificates can now be passed from memory by passing <code>cert</code> and <code>key</code> as buffers instead of file paths.</li> <li>Attachments with a <code>text/html</code> content type can now be opened in a new tab in the HTML report. This is useful for including third-party reports or other HTML content in the Playwright test report and distributing it to your team.</li> <li><code>noWaitAfter</code> in <a href="https://playwright.dev/docs/api/class-locator#locator-select-option">locator.selectOption()</a> was deprecated.</li> <li>We've seen reports of WebGL in Webkit misbehaving on GitHub Actions <code>macos-13</code>. We recommend upgrading GitHub Actions to <code>macos-14</code>.</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/playwright/commit/d5943def35edadc6f9bd8daeed382559d2a55fbe"><code>d5943de</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32475">#32475</a>): docs: update browsers version in release notes (<a href="https://redirect.github.com/microsoft/playwright/issues/32476">#32476</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/73fdd2505dd6506060721af4319bdd0873f2331c"><code>73fdd25</code></a> cherry-pick(<a href="https://redirect.github.com/microsoft/playwright/issues/32470">#32470</a>): feat(chromium): roll to r1134 (<a href="https://redirect.github.com/microsoft/playwright/issues/32473">#32473</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/13f4531da4aa57e73e075e31a393988ec4cd8b0c"><code>13f4531</code></a> chore: mark 1.47 (<a href="https://redirect.github.com/microsoft/playwright/issues/32472">#32472</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/0a49c05e2d12402fae953845e01384a307ecd5f9"><code>0a49c05</code></a> chore(test runner): document that --only-changed on CI needs history (<a href="https://redirect.github.com/microsoft/playwright/issues/32461">#32461</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/a8139b5d77821bd7dfea2756bd5931bafcee9ba4"><code>a8139b5</code></a> docs: add release notes for 1.47 (<a href="https://redirect.github.com/microsoft/playwright/issues/32463">#32463</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/91012833c613e7e8e0f75bb418391d572c297603"><code>9101283</code></a> chore: move 'dev-server' extensibility point to plugin (<a href="https://redirect.github.com/microsoft/playwright/issues/32448">#32448</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/255143e2013876e25f767feb8a453f2ad950c0fe"><code>255143e</code></a> feat(webkit): roll to r2070 (<a href="https://redirect.github.com/microsoft/playwright/issues/32451">#32451</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/9a2c60a77cdde80e4357246401af60db71fb3a4a"><code>9a2c60a</code></a> chore: identify largest gaps in Bidi API (<a href="https://redirect.github.com/microsoft/playwright/issues/32434">#32434</a>)</li> <li><a href="https://github.com/microsoft/playwright/commit/a87426ee0d9d91a1eed07cdab80d1a5af2edabaf"><code>a87426e</code></a> Update bug.yml</li> <li><a href="https://github.com/microsoft/playwright/commit/ee91bdc58562478bc8063988acdd7ca4c6c744c1"><code>ee91bdc</code></a> feat(ui-mode): display list of query params in request tab (<a href="https://redirect.github.com/microsoft/playwright/issues/32443">#32443</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/playwright/compare/v1.45.3...v1.47.0">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.47.0)](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:41:32 +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#210
No description provided.