matrix-art.meta

Issues/PRs archive for MTRNord/matrix-art
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.meta.git
Log | Files | Refs

144.json (9131B)


      1 {
      2   "number": 144,
      3   "title": "Bump @playwright/test from 1.20.0 to 1.21.0",
      4   "state": "merged",
      5   "diff_file": "144.diff",
      6   "author": "dependabot[bot]",
      7   "created_at": "2022-04-13T08:34:05Z",
      8   "closed_at": "2022-04-18T09:50:54Z",
      9   "merged_at": "2022-04-18T09:50:54Z",
     10   "base_ref": "main",
     11   "head_ref": "dependabot/npm_and_yarn/playwright/test-1.21.0",
     12   "labels": [
     13     "dependencies",
     14     "javascript"
     15   ],
     16   "assignees": [
     17     "MTRNord"
     18   ],
     19   "requested_reviewers": [
     20     "MTRNord"
     21   ],
     22   "body": "Bumps [@playwright/test](https://github.com/Microsoft/playwright) from 1.20.0 to 1.21.0.\n<details>\n<summary>Release notes</summary>\n<p><em>Sourced from <a href=\"https://github.com/Microsoft/playwright/releases\"><code>@\u200bplaywright/test</code>'s releases</a>.</em></p>\n<blockquote>\n<h2>v1.21.0</h2>\n<h2>Highlights</h2>\n<ul>\n<li>\n<p>New <strong>experimental</strong> role selectors that allow selecting elements by their <a href=\"https://www.w3.org/TR/wai-aria-1.2/#roles\">ARIA role</a>, <a href=\"https://www.w3.org/TR/wai-aria-1.2/#aria-attributes\">ARIA attributes</a> and <a href=\"https://w3c.github.io/accname/#dfn-accessible-name\">accessible name</a>.</p>\n<pre lang=\"js\"><code>// Click a button with accessible name &quot;log in&quot;\nawait page.click('role=button[name=&quot;log in&quot;]')\n</code></pre>\n<p>To use role selectors, make sure to pass <code>PLAYWRIGHT_EXPERIMENTAL_FEATURES=1</code> environment variable:</p>\n<pre lang=\"js\"><code>// playwright.config.js\nprocess.env.PLAYWRIGHT_EXPERIMENTAL_FEATURES = '1';\nmodule.exports = {\n  /* ... */\n};\n</code></pre>\n<p>Read more in <a href=\"https://playwright.dev/docs/selectors#role-selector\">our documentation</a>.</p>\n</li>\n<li>\n<p>New <code>scale</code> option in <a href=\"https://playwright.dev/docs/api/class-page#page-screenshot\"><code>Page.screenshot</code></a> for smaller sized screenshots.</p>\n</li>\n<li>\n<p>New <code>caret</code> option in <a href=\"https://playwright.dev/docs/api/class-page#page-screenshot\"><code>Page.screenshot</code></a> to control text caret. Defaults to <code>&quot;hide&quot;</code>.</p>\n</li>\n<li>\n<p>New method <code>expect.poll</code> to wait for an arbitrary condition:</p>\n<pre lang=\"js\"><code>// Poll the method until it returns an expected result.\nawait expect.poll(async () =&gt; {\n  const response = await page.request.get('https://api.example.com');\n  return response.status();\n}).toBe(200);\n</code></pre>\n<p><code>expect.poll</code> supports most synchronous matchers, like <code>.toBe()</code>, <code>.toContain()</code>, etc.\nRead more in <a href=\"https://playwright.dev/docs/test-assertions#polling\">our documentation</a>.</p>\n</li>\n</ul>\n<h2>Behavior Changes</h2>\n<ul>\n<li>ESM support when running TypeScript tests is now enabled by default. The <code>PLAYWRIGHT_EXPERIMENTAL_TS_ESM</code> env variable is\nno longer required.</li>\n<li>The <code>mcr.microsoft.com/playwright</code> docker image no longer contains Python. Please use <code>mcr.microsoft.com/playwright/python</code>\nas a Playwright-ready docker image with pre-installed Python.</li>\n<li>Playwright now supports large file uploads (100s of MBs) via <a href=\"https://playwright.dev/docs/api/class-locator#locator-set-input-files\"><code>Locator.setInputFiles</code></a> API.</li>\n</ul>\n<h2>Browser Versions</h2>\n<ul>\n<li>Chromium 101.0.4951.26</li>\n<li>Mozilla Firefox 98.0.2</li>\n<li>WebKit 15.4</li>\n</ul>\n<!-- raw HTML omitted -->\n</blockquote>\n<p>... (truncated)</p>\n</details>\n<details>\n<summary>Commits</summary>\n<ul>\n<li><a href=\"https://github.com/microsoft/playwright/commit/953003882ae6b73c3f69dd0862a7a6e2943072e1\"><code>9530038</code></a> chore: mark v1.21.0 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13416\">#13416</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/02f4cfd4d772198fb747a3b931a72ecb735fa267\"><code>02f4cfd</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13491\">#13491</a>): release notes for 1.21 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13493\">#13493</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/414cc9b769c1939763d66a320480446d57567825\"><code>414cc9b</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13487\">#13487</a>): do not require <code>--force</code> flag when installing channel on...</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/fe8dad0ac274ddb693f1755c067358246d9db485\"><code>fe8dad0</code></a> docs: mark fetch params as optional again (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13479\">#13479</a>) (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13480\">#13480</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/9dbc124d9895acad26d7349cdb444f1ced03365c\"><code>9dbc124</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13464\">#13464</a>): fix test.step return type docs (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13478\">#13478</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/1756566b17dda2c6900684aef44de7f7e6c8d90c\"><code>1756566</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13443\">#13443</a>, <a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13407\">#13407</a>): feat(webkit): roll to r1630 (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13476\">#13476</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/06d100ddcff312ed79a35a835a0bafbba4c1c726\"><code>06d100d</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13437\">#13437</a>): chore: flatten supplements</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/bb810f5a09c9cccfc887ff6bc21e66f4fdb9a6c3\"><code>bb810f5</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13431\">#13431</a>): docs(java): clarify source list format (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13434\">#13434</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/ee0119f50338972e1b24a808dc8a343e62864149\"><code>ee0119f</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13425\">#13425</a>): docs(dotnet): fix broken generated docs links (<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13430\">#13430</a>)</li>\n<li><a href=\"https://github.com/microsoft/playwright/commit/14a241e900c26b97e0c1a2ae8fd4198c27991295\"><code>14a241e</code></a> cherry-pick(<a href=\"https://github-redirect.dependabot.com/Microsoft/playwright/issues/13417\">#13417</a>): chore: use utils via index export (6)</li>\n<li>Additional commits viewable in <a href=\"https://github.com/Microsoft/playwright/compare/v1.20.0...v1.21.0\">compare view</a></li>\n</ul>\n</details>\n<br />\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@playwright/test&package-manager=npm_and_yarn&previous-version=1.20.0&new-version=1.21.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot 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`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n<details>\n<summary>Dependabot commands and options</summary>\n<br />\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot merge` will merge this PR after your CI passes on it\n- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@dependabot reopen` will reopen this PR if it is closed\n- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@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)\n- `@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)\n- `@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)\n\n\n</details>",
     23   "comments": [],
     24   "review_comments": []
     25 }