Skip to content

Commit

Permalink
Bump @playwright/test from 1.45.0 to 1.47.1 in /tests/playwright (#250)
Browse files Browse the repository at this point in the history
Bumps [@playwright/test](https://github.com/microsoft/playwright) from
1.45.0 to 1.47.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.47.1</h2>
<h3>Highlights</h3>
<p><a
href="https://redirect.github.com/microsoft/playwright/issues/32480">microsoft/playwright#32480</a>
- [REGRESSION]: tsconfig.json's compilerOptions.paths no longer working
in 1.47
<a
href="https://redirect.github.com/microsoft/playwright/issues/32552">microsoft/playwright#32552</a>
- [REGRESSION]: broken UI in Trace Viewer while showing network response
body</p>
<h2>Browser Versions</h2>
<ul>
<li>Chromium 129.0.6668.29</li>
<li>Mozilla Firefox 130.0</li>
<li>WebKit 18.0</li>
</ul>
<p>This version was also tested against the following stable
channels:</p>
<ul>
<li>Google Chrome 128</li>
<li>Microsoft Edge 128</li>
</ul>
<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'
      }
&lt;/tr&gt;&lt;/table&gt; 
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/microsoft/playwright/commit/3d2ffd0fe97f23f480092054da5928539a3c5beb"><code>3d2ffd0</code></a>
chore: mark v1.47.1 (<a
href="https://redirect.github.com/microsoft/playwright/issues/32617">#32617</a>)</li>
<li><a
href="https://github.com/microsoft/playwright/commit/dba13193001e5f89a2bff6c56723ae1856b138af"><code>dba1319</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32589">#32589</a>):
docs: release note fixes for 1.47</li>
<li><a
href="https://github.com/microsoft/playwright/commit/90f959a11c17d17e040a4f0c5aed7e4bfdf6799e"><code>90f959a</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32553">#32553</a>):
fix(trace-viewer): fix ui issue on network request details</li>
<li><a
href="https://github.com/microsoft/playwright/commit/13e6e48a2b95f2e7da808a0bafc5687507ab9efb"><code>13e6e48</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32491">#32491</a>):
fix(test runner): allow directory imports with path mapp...</li>
<li><a
href="https://github.com/microsoft/playwright/commit/8762407038f237dd16fc29182239bd2b73681f59"><code>8762407</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32492">#32492</a>):
Revert &quot;fix(test runner): align with typescript … (<a
href="https://redirect.github.com/microsoft/playwright/issues/32560">#32560</a>)</li>
<li><a
href="https://github.com/microsoft/playwright/commit/f9145b1a7e29c2a00ab19ffc6f01d0b1f299559c"><code>f9145b1</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32516">#32516</a>):
chore: allow query as string in Python/.NET</li>
<li><a
href="https://github.com/microsoft/playwright/commit/2c17b1f0d3df44c66935abfc95706ea8f4a7ce91"><code>2c17b1f</code></a>
cherry-pick(<a
href="https://redirect.github.com/microsoft/playwright/issues/32482">#32482</a>):
docs: update release notes for 1.47 to our changes from ...</li>
<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>Additional commits viewable in <a
href="https://github.com/microsoft/playwright/compare/v1.45.0...v1.47.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.0&new-version=1.47.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>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Sep 20, 2024
1 parent e8836e9 commit aef43c6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
28 changes: 12 additions & 16 deletions tests/playwright/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"devDependencies": {
"@cspell/eslint-plugin": "^8.9.1",
"@eslint/js": "8.57.0",
"@playwright/test": "^1.43.1",
"@playwright/test": "^1.47.1",
"@types/node": "^20.14.7",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.2.0",
Expand Down

0 comments on commit aef43c6

Please sign in to comment.