dependabot[bot] opened a new pull request, #155:
URL: https://github.com/apache/fineract-backoffice-ui/pull/155

   Bumps [@playwright/test](https://github.com/microsoft/playwright) from 
1.59.1 to 1.61.1.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/microsoft/playwright/releases";>@​playwright/test's 
releases</a>.</em></p>
   <blockquote>
   <h2>v1.61.1</h2>
   <h3>Bug Fixes</h3>
   <ul>
   <li><a 
href="https://redirect.github.com/microsoft/playwright/issues/41365";>#41365</a> 
[Bug]: Expect.Extend matcher with same name as default matcher in same expect 
instance overrides default matchers implementation to custom matcher</li>
   <li><a 
href="https://redirect.github.com/microsoft/playwright/issues/41351";>#41351</a> 
[Bug]: Playwright UI mode: apiRequestContext._wrapApiCall reports unexpected 
number of bytes (same test passes in headed mode)</li>
   <li><a 
href="https://redirect.github.com/microsoft/playwright/issues/41360";>#41360</a> 
[Bug]: Trace viewer: message times in websockets are downscaled by 1000</li>
   <li><a 
href="https://redirect.github.com/microsoft/playwright/issues/41311";>#41311</a> 
[Bug]: [Regression]: Sync loader throws &quot;context.conditions?.includes is 
not a function&quot; on Node 22.15</li>
   <li><a 
href="https://redirect.github.com/microsoft/playwright/issues/41371";>#41371</a> 
[Regression]: Sync ESM loader (registerHooks) fails to resolve extensionless 
.ts subpath imports across pnpm workspace symlinks</li>
   </ul>
   <h2>v1.61.0</h2>
   <h2>🔑 WebAuthn passkeys</h2>
   <p>New <a 
href="https://playwright.dev/docs/api/class-credentials";>Credentials</a> 
virtual authenticator, available via <a 
href="https://playwright.dev/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="js"><code>const context = await browser.newContext();
   <p>// Seed a passkey your backend provisioned for a test user.
   await context.credentials.create('example.com', {
   id: credentialId,
   userHandle,
   privateKey,
   publicKey,
   });
   await context.credentials.install();</p>
   <p>const page = await context.newPage();
   await page.goto('<a 
href="https://example.com/login";>https://example.com/login</a>');
   // The page's navigator.credentials.get() is answered with the seeded 
passkey.
   </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/docs/api/class-credentials#credentials-get";>credentials.get()</a>,
 and seed it into later tests — see <a 
href="https://playwright.dev/docs/api/class-credentials";>Credentials</a> for 
details.</p>
   <h2>🗃️ Web Storage</h2>
   <p>New <a 
href="https://playwright.dev/docs/api/class-webstorage";>WebStorage</a> API, 
available via <a 
href="https://playwright.dev/docs/api/class-page#page-local-storage";>page.localStorage</a>
 and <a 
href="https://playwright.dev/docs/api/class-page#page-session-storage";>page.sessionStorage</a>,
 reads and writes the page's storage for the current origin:</p>
   <pre lang="js"><code>await page.localStorage.setItem('token', 'abc');
   const token = await page.localStorage.getItem('token');
   const items = await page.sessionStorage.items();
   </code></pre>
   <h2>New APIs</h2>
   <h3>Network</h3>
   <ul>
   <li><a 
href="https://playwright.dev/docs/api/class-apiresponse#api-response-security-details";>apiResponse.securityDetails()</a>
 and <a 
href="https://playwright.dev/docs/api/class-apiresponse#api-response-server-addr";>apiResponse.serverAddr()</a>
 mirror the browser-side <a 
href="https://playwright.dev/docs/api/class-response#response-security-details";>response.securityDetails()</a>
 and <a 
href="https://playwright.dev/docs/api/class-response#response-server-addr";>response.serverAddr()</a>.</li>
   </ul>
   <h3>Browser and Screencast</h3>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/microsoft/playwright/commit/39e3553a4f283a41134d75d7e404484bd9e6865a";><code>39e3553</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41399";>#41399</a>):
 fix(test): load require-reached files as commonjs in syn...</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/4328122a0fa91df1be287f12d26f272f598ccca7";><code>4328122</code></a>
 chore: mark v1.61.1 (<a 
href="https://redirect.github.com/microsoft/playwright/issues/41404";>#41404</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/2c29a94ed59a2dbb2cb2553ee7d1ba429f027826";><code>2c29a94</code></a>
 fix(tracing): stop recording websocket frames outside of chunks (<a 
href="https://redirect.github.com/microsoft/playwright/issues/41398";>#41398</a>)</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/4324b1904199c58ae56d864390f5210df18e33f6";><code>4324b19</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41367";>#41367</a>):
 fix(test): keep builtin expect matchers on base extend</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/041e7e30002e7c384e1918c29720b34c435145f4";><code>041e7e3</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41364";>#41364</a>):
 fix(har): <code>WebSocket</code> message timestamps should be in mi...</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/b8a0fc33932399fc5cfcd211165cf16f8ca01d71";><code>b8a0fc3</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41309";>#41309</a>,
 <a 
href="https://redirect.github.com/microsoft/playwright/issues/43149";>#43149</a>):
 Revert &quot;fix(firefox): treat `navigationCommitted...</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/b5a31759e6611397bf3afaaa6049a420a5f082bd";><code>b5a3175</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41319";>#41319</a>):
 fix(loader): support other node versions</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/d4724a91b280ae1ee9a87c426e9d6a953c59756e";><code>d4724a9</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41290";>#41290</a>):
 feat(docker): add Ubuntu 26.04 (Resolute Raccoon) image</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/1cc5a90cfa3eaa430b1a991963100f95126caa47";><code>1cc5a90</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41295";>#41295</a>):
 chore: PLAYWRIGHT_TRACING_NO_WEBSOCKET_FRAMES and PLAYWR...</li>
   <li><a 
href="https://github.com/microsoft/playwright/commit/a6772bdede34028cbbd417a3b3d778801899e870";><code>a6772bd</code></a>
 cherry-pick(<a 
href="https://redirect.github.com/microsoft/playwright/issues/41280";>#41280</a>):
 Revert &quot;fix(trace-viewer): add keyboard navigation to `N...</li>
   <li>Additional commits viewable in <a 
href="https://github.com/microsoft/playwright/compare/v1.59.1...v1.61.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.59.1&new-version=1.61.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 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