dependabot[bot] opened a new pull request, #1977:
URL: https://github.com/apache/stormcrawler/pull/1977

   Bumps 
[com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java)
 from 1.60.0 to 1.61.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/microsoft/playwright-java/releases";>com.microsoft.playwright:playwright's
 releases</a>.</em></p>
   <blockquote>
   <h2>v1.61.0</h2>
   <h2>🔑 WebAuthn passkeys</h2>
   <p>New <a 
href="https://playwright.dev/java/docs/api/class-credentials";>Credentials</a> 
virtual authenticator, available via <a 
href="https://playwright.dev/java/docs/api/class-browsercontext#browser-context-credentials";>browserContext.credentials</a>,
 lets tests register passkeys and answer 
<code>navigator.credentials.create()</code> / 
<code>navigator.credentials.get()</code> ceremonies in the page — no real 
hardware key required, works in all browsers:</p>
   <pre lang="java"><code>BrowserContext context = browser.newContext();
   <p>// Seed a passkey your backend provisioned for a test user.<br />
   context.credentials().create(&quot;example.com&quot;, new 
Credentials.CreateOptions()<br />
   .setId(credentialId)<br />
   .setUserHandle(userHandle)<br />
   .setPrivateKey(privateKey)<br />
   .setPublicKey(publicKey));<br />
   context.credentials().install();</p>
   <p>Page page = context.newPage();<br />
   page.navigate(&quot;<a 
href="https://example.com/login";>https://example.com/login</a>&quot;);<br />
   // The page's navigator.credentials.get() is answered with the seeded 
passkey.<br />
   </code></pre></p>
   <p>You can also let the app register a passkey once in a setup test, read it 
back with <a 
href="https://playwright.dev/java/docs/api/class-credentials#credentials-get";>credentials.get()</a>,
 and seed it into later tests — see <a 
href="https://playwright.dev/java/docs/api/class-credentials";>Credentials</a> 
for details.</p>
   <h2>🗃️ Web Storage</h2>
   <p>New <a 
href="https://playwright.dev/java/docs/api/class-webstorage";>WebStorage</a> 
API, available via <a 
href="https://playwright.dev/java/docs/api/class-page#page-local-storage";>page.localStorage</a>
 and <a 
href="https://playwright.dev/java/docs/api/class-page#page-session-storage";>page.sessionStorage</a>,
 reads and writes the page's storage for the current origin:</p>
   <pre lang="java"><code>page.localStorage().setItem(&quot;token&quot;, 
&quot;abc&quot;);
   String token = page.localStorage().getItem(&quot;token&quot;);
   List&lt;NameValue&gt; items = page.sessionStorage().items();
   </code></pre>
   <h2>New APIs</h2>
   <ul>
   <li><a 
href="https://playwright.dev/java/docs/api/class-apiresponse#api-response-security-details";>apiResponse.securityDetails()</a>
 and <a 
href="https://playwright.dev/java/docs/api/class-apiresponse#api-response-server-addr";>apiResponse.serverAddr()</a>
 mirror the browser-side <a 
href="https://playwright.dev/java/docs/api/class-response#response-security-details";>response.securityDetails()</a>
 and <a 
href="https://playwright.dev/java/docs/api/class-response#response-server-addr";>response.serverAddr()</a>.</li>
   <li>New option <code>artifactsDir</code> in <a 
href="https://playwright.dev/java/docs/api/class-browsertype#browser-type-connect-over-cdp";>browserType.connectOverCDP()</a>
 controls where artifacts such as traces and downloads are stored when attached 
to an existing browser.</li>
   <li>New option <code>cursor</code> in <a 
href="https://playwright.dev/java/docs/api/class-screencast#screencast-show-actions";>screencast.showActions()</a>
 controls the cursor decoration rendered for pointer actions.</li>
   <li>The <code>onFrame</code> callback in <a 
href="https://playwright.dev/java/docs/api/class-screencast#screencast-start";>screencast.start()</a>
 now receives a <code>timestamp</code> of when the frame was presented by the 
browser.</li>
   </ul>
   <h2>🛠️ Other improvements</h2>
   <ul>
   <li>Playwright now supports Ubuntu 26.04.</li>
   <li>HAR and trace recordings now include WebSocket requests.</li>
   </ul>
   <h2>Browser Versions</h2>
   <ul>
   <li>Chromium 149.0.7827.55</li>
   <li>Mozilla Firefox 151.0</li>
   <li>WebKit 26.5</li>
   </ul>
   <p>This version was also tested against the following stable channels:</p>
   <ul>
   <li>Google Chrome 149</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/e8869de0656888f3848debbb9b47075859dae5bd";><code>e8869de</code></a>
 chore: mark 1.61.0 (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1942";>#1942</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/20e4edd73c91c7792e5fe7a998493958c8d513fb";><code>20e4edd</code></a>
 chore: roll driver to 1.61.1 (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1941";>#1941</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/d2d29d446d93d513711e79255c2f694c25567801";><code>d2d29d4</code></a>
 feat(driver): bundle playwright-core in driver, keep only Node.js in 
driver-b...</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/43d2601be89341b2188681915c5b8ef71a6ed6ee";><code>43d2601</code></a>
 fix(fetch): serialize LocalDate in post data (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1934";>#1934</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/ace7a1241f1a6a1c244ba10c2473f02a3bd8ae18";><code>ace7a12</code></a>
 fix(driver-bundle): exclude driver binaries from sources JAR (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1933";>#1933</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/fddd7c3708ebc82594b9faa4c5eff0deb1e57a0b";><code>fddd7c3</code></a>
 feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1932";>#1932</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/423cbf4cc79823c859fd90ac3a94aba5bfe086b3";><code>423cbf4</code></a>
 chore: roll driver to 1.61.0-beta-1781285686000 (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1929";>#1929</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/e3f2f6fa5b5c349f5a46d7286fd8c905d3ce1528";><code>e3f2f6f</code></a>
 fix(docker): assemble driver on the host for docker builds (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1930";>#1930</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/1b7d1648733241a375e293d2d62567e6a1c34169";><code>1b7d164</code></a>
 chore: extract common skill conventions into CLAUDE.md (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1928";>#1928</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/7a59a68828e1cd7db8349a558158a1a148f6a13b";><code>7a59a68</code></a>
 feat: assemble driver from npm instead of CDN (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1927";>#1927</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/microsoft/playwright-java/compare/v1.60.0...v1.61.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.microsoft.playwright:playwright&package-manager=maven&previous-version=1.60.0&new-version=1.61.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 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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to