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

   Bumps 
[com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java)
 from 1.50.0 to 1.51.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.51.0</h2>
   <h2>Highlights</h2>
   <ul>
   <li>
   <p>New option <a 
href="https://playwright.dev/java/docs/api/class-browsercontext#browser-context-storage-state-option-indexed-db";><code>setIndexedDB</code></a>
 for <a 
href="https://playwright.dev/java/docs/api/class-browsercontext#browser-context-storage-state";>browserContext.storageState()</a>
 allows to save and restore IndexedDB contents. Useful when your application 
uses <a 
href="https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API";>IndexedDB 
API</a> to store authentication tokens, like Firebase Authentication.</p>
   <p>Here is an example following the <a 
href="https://playwright.dev/java/docs/auth#reusing-signed-in-state";>authentication
 guide</a>:</p>
   <pre lang="java"><code>// Save storage state into the file. Make sure to 
include IndexedDB.
   context.storageState(new BrowserContext.StorageStateOptions()
       .setPath(Paths.get(&quot;state.json&quot;))
       .setIndexedDB(true));
   <p>// Create a new context with the saved storage state.<br />
   BrowserContext context = browser.newContext(new 
Browser.NewContextOptions()<br />
   .setStorageStatePath(Paths.get(&quot;state.json&quot;)));<br />
   </code></pre></p>
   </li>
   <li>
   <p>New option <a 
href="https://playwright.dev/java/docs/api/class-locator#locator-filter-option-visible";><code>setVisible</code></a>
 for <a 
href="https://playwright.dev/java/docs/api/class-locator#locator-filter";>locator.filter()</a>
 allows matching only visible elements.</p>
   <pre lang="java"><code>// Ignore invisible todo items.
   Locator todoItems = page.getByTestId(&quot;todo-item&quot;)
       .filter(new Locator.FilterOptions().setVisible(true));
   // Check there are exactly 3 visible ones.
   assertThat(todoItems).hasCount(3);
   </code></pre>
   </li>
   <li>
   <p>New option <code>setContrast</code> for methods <a 
href="https://playwright.dev/java/docs/api/class-page#page-emulate-media";>page.emulateMedia()</a>
 and <a 
href="https://playwright.dev/java/docs/api/class-browser#browser-new-context";>browser.newContext()</a>
 allows to emulate the <code>prefers-contrast</code> media feature.</p>
   </li>
   <li>
   <p>New option <a 
href="https://playwright.dev/java/docs/api/class-apirequest#api-request-new-context-option-fail-on-status-code";><code>setFailOnStatusCode</code></a>
 makes all fetch requests made through the <a 
href="https://playwright.dev/java/docs/api/class-apirequestcontext";>APIRequestContext</a>
 throw on response codes other than 2xx and 3xx.</p>
   </li>
   </ul>
   <h2>Browser Versions</h2>
   <ul>
   <li>Chromium 134.0.6998.35</li>
   <li>Mozilla Firefox 135.0</li>
   <li>WebKit 18.4</li>
   </ul>
   <p>This version was also tested against the following stable channels:</p>
   <ul>
   <li>Google Chrome 133</li>
   <li>Microsoft Edge 133</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/4307548995464791c84f3786ec4906d0abdeeb1c";><code>4307548</code></a>
 chore: mark-1.51.0 (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1769";>#1769</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/6c059e351f9fe3396232bc41c1183ceabcf893d0";><code>6c059e3</code></a>
 chore: roll driver to 1.51.1 (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1768";>#1768</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/e86911ed2ae15b062e5f56e5c212e104f9a73f03";><code>e86911e</code></a>
 docs: remove obsolete toc from readme (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1767";>#1767</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/17cc3b82975e2e3ba8fa7b95ad89e25188cbb506";><code>17cc3b8</code></a>
 docs: abridge readme, redirect to playwright.dev (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1766";>#1766</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/43016df2417518f4b92cea34d3c0061d0154ba0a";><code>43016df</code></a>
 chore(deps): bump the all group with 3 updates (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1764";>#1764</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/ba4eb3ce7dfcfba9701a6f4aee501cb588f92cd5";><code>ba4eb3c</code></a>
 chore(deps): bump the actions group with 2 updates (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1765";>#1765</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/ba7dd3cd89b1eaa5ae6312592009f9147468e632";><code>ba7dd3c</code></a>
 devops: update GitHub Action workflows via dependabot (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1763";>#1763</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/5e37b7f5ca48cb0f0c0e29abab17cea164900152";><code>5e37b7f</code></a>
 devops: add DevContainer config (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1762";>#1762</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/84eaf8f3cba2fae324f21e09a7d9fcc8866c2c17";><code>84eaf8f</code></a>
 devops: retry failures up to 3 times on GHA (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1758";>#1758</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright-java/commit/c090824c9359acb76c84325d029d06b1117b3222";><code>c090824</code></a>
 chore: roll 1.51.0 driver, implement new features (<a 
href="https://redirect.github.com/microsoft/playwright-java/issues/1757";>#1757</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/microsoft/playwright-java/compare/v1.50.0...v1.51.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.50.0&new-version=1.51.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>


-- 
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: dev-unsubscr...@stormcrawler.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to