dependabot[bot] opened a new pull request, #1875: URL: https://github.com/apache/stormcrawler/pull/1875
Bumps [com.microsoft.playwright:playwright](https://github.com/microsoft/playwright-java) from 1.58.0 to 1.59.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.59.0</h2> <h2>🎬 Screencast</h2> <p>New <a href="https://playwright.dev/java/docs/api/class-page#page-screencast">page.screencast</a> API provides a unified interface for capturing page content with:</p> <ul> <li>Screencast recordings</li> <li>Action annotations</li> <li>Visual overlays</li> <li>Real-time frame capture</li> <li>Agentic video receipts</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p><strong>Screencast recording</strong> — record video with precise start/stop control, as an alternative to the <a href="https://playwright.dev/java/docs/api/class-browser#browser-new-context-option-record-video-dir"><code>recordVideoDir</code></a> option:</p> <pre lang="java"><code>page.screencast().start(new Screencast.StartOptions().setPath(Paths.get("video.webm"))); // ... perform actions ... page.screencast().stop(); </code></pre> <p><strong>Action annotations</strong> — enable built-in visual annotations that highlight interacted elements and display action titles during recording:</p> <pre lang="java"><code>page.screencast().showActions(new Screencast.ShowActionsOptions().setPosition("top-right")); </code></pre> <p><a href="https://playwright.dev/java/docs/api/class-screencast#screencast-show-actions">screencast.showActions()</a> accepts <code>position</code> (<code>"top-left"</code>, <code>"top"</code>, <code>"top-right"</code>, <code>"bottom-left"</code>, <code>"bottom"</code>, <code>"bottom-right"</code>), <code>duration</code> (ms per annotation), and <code>fontSize</code> (px). Returns a disposable to stop showing actions.</p> <p><strong>Visual overlays</strong> — add chapter titles and custom HTML overlays on top of the page for richer narration:</p> <pre lang="java"><code>page.screencast().showChapter("Adding TODOs", new Screencast.ShowChapterOptions() .setDescription("Type and press enter for each TODO") .setDuration(1000)); <p>page.screencast().showOverlay("<div style=&quot;color: red&quot;>Recording</div>");<br /> </code></pre></p> <p><strong>Real-time frame capture</strong> — stream JPEG-encoded frames for custom processing like thumbnails, live previews, AI vision, and more:</p> <pre lang="java"><code>page.screencast().start(new Screencast.StartOptions() .setOnFrame(frame -> sendToVisionModel(frame.data))); </code></pre> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/microsoft/playwright-java/commit/c433c1d6e5646c6e24cc92c450d08a6fec871b8f"><code>c433c1d</code></a> chore: mark 1.59.0 (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1909">#1909</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/b01bf64e64ef3cad7252369f1d747709f7507e81"><code>b01bf64</code></a> chore: resolve Object langAliases in function argument types (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1908">#1908</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/7dbd6cac3b0c3759e25538c8b2c02e4592da95d7"><code>7dbd6ca</code></a> chore: use langAliases from api.json in api generator (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1907">#1907</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/c3e4b92982067b90bfe297ed06ebbb80d36eb799"><code>c3e4b92</code></a> chore: roll to 1.59.1-beta-1775752988000 (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1906">#1906</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/9e73db411cae7f3da00702d7506d0945e2ed61c2"><code>9e73db4</code></a> chore(deps): bump the actions group with 2 updates (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1904">#1904</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/10ed7e036d8c2b37101d3ab5b41d5fd0daf3b5ac"><code>10ed7e0</code></a> chore(deps-dev): bump org.apache.maven.plugins:maven-resources-plugin from 3....</li> <li><a href="https://github.com/microsoft/playwright-java/commit/5ccdd3e4b919515974860cd658976df9a5c77c36"><code>5ccdd3e</code></a> chore: roll to 1.59.0-alpha-1774622285000 (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1901">#1901</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/afd80add277bd3129802323cfaa251b912a775fa"><code>afd80ad</code></a> chore: roll to 1.59.0-alpha (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1900">#1900</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/605e428fd7630a9610c2d4f544d34820d70317ee"><code>605e428</code></a> chore(deps-dev): bump the all group with 2 updates (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1894">#1894</a>)</li> <li><a href="https://github.com/microsoft/playwright-java/commit/932669036bbf249fe518cf9bce4c84195b08dd23"><code>9326690</code></a> fix: handle null close code and reason in WebSocketRoute (<a href="https://redirect.github.com/microsoft/playwright-java/issues/1886">#1886</a>)</li> <li>Additional commits viewable in <a href="https://github.com/microsoft/playwright-java/compare/v1.58.0...v1.59.0">compare view</a></li> </ul> </details> <br /> [](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]
