Skip to content

build(deps): bump the python-deps group across 1 directory with 2 updates - #111

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-deps-fe647c9ecc
Open

build(deps): bump the python-deps group across 1 directory with 2 updates#111
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/python-deps-fe647c9ecc

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown

Bumps the python-deps group with 2 updates in the / directory: playwright and pyinstaller.

Updates playwright from 1.60.0 to 1.62.0

Release notes

Sourced from playwright's releases.

v1.62.0

🖼️ WebP screenshots

page.screenshot() and locator.screenshot() can now capture screenshots in the WebP format. Playwright infers the format from a .webp file extension, or you can set the type explicitly. Quality 100 (the default) is lossless, while lower values use lossy compression:

page.screenshot(path="homepage.webp", quality=50)

New APIs

  • New scroll option ("auto" | "none") on actions to opt out of Playwright's automatic scrolling into view.
  • New locator.wait_for_function() waits until a function called with the matching element returns a truthy value.
  • New apiResponse.timing() returns resource timing information for an API response.

Announcements

  • 📋 The clipboard is now isolated from the operating system in headless mode, so tests that use navigator.clipboard no longer read or overwrite the clipboard of the machine running them.
  • ⚠️ Debian 11 is not supported anymore.

Browser Versions

  • Chromium 151.0.7922.34
  • Mozilla Firefox 153.0
  • WebKit 26.5

This version was also tested against the following stable channels:

  • Google Chrome 151
  • Microsoft Edge 151

v1.61.0

🔑 WebAuthn passkeys

New Credentials virtual authenticator, available via browserContext.credentials, lets tests register passkeys and answer navigator.credentials.create() / navigator.credentials.get() ceremonies in the page — no real hardware key required, works in all browsers:

context = browser.new_context()
Seed a passkey your backend provisioned for a test user.
context.credentials.create("example.com",
id=credential_id,
user_handle=user_handle,
private_key=private_key,
public_key=public_key,
)
context.credentials.install()
page = context.new_page()
page.goto("https://example.com/login")
The page's navigator.credentials.get() is answered with the seeded passkey.

You can also let the app register a passkey once in a setup test, read it back with credentials.get(), and seed it into later tests — see Credentials for details.

... (truncated)

Commits
  • 3b7c24c chore: roll Playwright to 1.62.0 (#3161)
  • 1db079f build(deps): bump typing-extensions from 4.15.0 to 4.16.0 (#3162)
  • 8335307 build(deps): bump greenlet from 3.5.3 to 3.5.4 (#3163)
  • 5c71b2b build(deps): bump mypy from 2.1.0 to 2.3.0 (#3150)
  • d0c8d03 build(deps-dev): bump setuptools-scm from 9.2.2 to 10.2.1 (#3151)
  • ca0319c build(deps): bump build from 1.4.4 to 1.5.0 (#3152)
  • 53802fe build(deps): bump requests from 2.33.0 to 2.34.2 (#3153)
  • 9bc998f build(deps): bump actions/setup-python from 6 to 7 in the actions group (#3154)
  • 9a10128 perf: speed up Python stack capture (#3147)
  • c3eff76 fix: show not_ prefix in call log when negative assertions fail (#3033)
  • Additional commits viewable in compare view

Updates pyinstaller from 6.21.0 to 6.22.0

Release notes

Sourced from pyinstaller's releases.

v6.22.0

Please see the v6.22.0 section of the changelog for a list of the changes since v6.21.0.

Changelog

Sourced from pyinstaller's changelog.

6.22.0 (2026-08-08)

Features


* Implement support for Tcl/Tk 9 builds with embedded data archives in
  ``tkinter`` hooks and the splash screen. Tcl/Tk 9 with embedded data
  is used, for example, in python.org Windows builds of Python 3.15.0b3.
  (:issue:`9470`)
* Use portable path separators (always forward slashes) in generated spec files.
  (:issue:`8004`)

Bugfix


* (Linux) Fix regression that prevented automatic collection of Wayland
  shared libraries that are bundled with ``pywayland`` binary wheels.
  (:issue:`9430`)
* Fix :class:`ValueError` build error on Windows if :option:`--specpath` is set
  to a different drive. (:issue:`8116`)
* Fix backslash mishandling of some CLI options (``--contents-directory``,
  ``--resource``). (:issue:`9472`)

Hooks


* Add hooks for ``gi.repository.Soup`` and ``gi.repository.Spelling``.
  (:issue:`9491`)
* Rework the standard and run-time hook for ``_tkinter`` so that error
  about missing Tcl/Tk data directories is raised at build time rather
  than at run time. (:issue:`9470`)
* Update the ``matplotlib.backends`` hook to automatically collect dist
  metadata for backends that are discovered via ``matplotlib.backend``
  entry point (Matplotlib >= 3.9). (:issue:`9469`)
* Update the ``matplotlib.backends`` hook to obtain the list of available
  Matplotlib backends from the new backends registry, if available
  (Matplotlib >= 3.9). Fixes compatibility with Matplotlib >= 3.11, which
  removed the old list of available backends that was superseded by the
  backends registry. (:issue:`9467`)
</code></pre>
</blockquote>
</details>
<details>
<summary>Commits</summary>

<ul>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/70fc17210920bce17f4ab09bbf8104b0dbd45338"><code>70fc172</code></a> Release v6.22.0. [skip ci]</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/138ae1bfe09c21c22f9ed6c847a55026505a94e1"><code>138ae1b</code></a> doc: update yapf version under Coding conventions [skip ci]</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/5b38ee9c5d1bfbe6da7df8559084f6bbd3272b32"><code>5b38ee9</code></a> Tests: Requirements: Scheduled weekly dependency update for week 31 (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/9494">#9494</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/9fdf5162a2cc2c8f2a4d2a13f78b498a35a1c106"><code>9fdf516</code></a> hooks: Add hooks for libsoup and libspelling (gi.repository) (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/9491">#9491</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/8af799925260c4ea606b1e9235409891c1abbd84"><code>8af7999</code></a> rthooks: gstreamer: fix plugin directory name in GST_PLUGIN_PATH (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/9490">#9490</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/2343e0e94e014094b3b4dfa1b9a70e0cc1257e53"><code>2343e0e</code></a> makespec: Use portable path separators.</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/ece7422f7ec49f02cbc3f7100cd5dd77226469b4"><code>ece7422</code></a> Fix ValueError on Windows if --specpath points to a different drive</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/08116e0ce0c1fc7e37d373d1867e17b3ecab0bc8"><code>08116e0</code></a> makespec: Remove <em>variable path</em> substitution.</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/fa9f57ae9821068f82948e65943c5e4667436e2a"><code>fa9f57a</code></a> Tests: Requirements: Scheduled weekly dependency update for week 30 (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/9489">#9489</a>)</li>
<li><a href="https://github.com/pyinstaller/pyinstaller/commit/3e85744ba8f7f550ec51c8b4412af03ebf5c0694"><code>3e85744</code></a> Tests: Requirements: Scheduled weekly dependency update for week 29 (<a href="https://redirect.github.com/pyinstaller/pyinstaller/issues/9486">#9486</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/pyinstaller/pyinstaller/compare/v6.21.0...v6.22.0">compare view</a></li>
</ul>
</details>

&lt;br /&gt;</code></pre>


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 <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

…ates

Bumps the python-deps group with 2 updates in the / directory: [playwright](https://github.com/microsoft/playwright-python) and [pyinstaller](https://github.com/pyinstaller/pyinstaller).


Updates `playwright` from 1.60.0 to 1.62.0
- [Release notes](https://github.com/microsoft/playwright-python/releases)
- [Commits](microsoft/playwright-python@v1.60.0...v1.62.0)

Updates `pyinstaller` from 6.21.0 to 6.22.0
- [Release notes](https://github.com/pyinstaller/pyinstaller/releases)
- [Changelog](https://github.com/pyinstaller/pyinstaller/blob/develop/doc/CHANGES.rst)
- [Commits](pyinstaller/pyinstaller@v6.21.0...v6.22.0)

---
updated-dependencies:
- dependency-name: playwright
  dependency-version: 1.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
- dependency-name: pyinstaller
  dependency-version: 6.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Aug 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants