Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 26, 2026

Bumps the bowtie-dependencies group with 15 updates:

Package From To
aiodocker 0.24.0 0.25.0
diagnostic 2.1.0 3.0.0
jsonschema 4.25.1 4.26.0
rich-click 1.9.4 1.9.5
rpds-py 0.29.0 0.30.0
url-py 0.18.0 0.19.0
hypothesis 6.148.2 6.150.2
furo 2025.9.25 2025.12.19
sphinx 8.2.3 9.1.0
sphinx-click 6.1.0 6.2.0
sphinx-substitution-extensions 2025.1.2 2026.1.12
sphinxcontrib-spelling 8.0.1 8.0.2
pytest 9.0.1 9.0.2
pytest-asyncio 0.21.2 1.3.0
pyright 1.1.407 1.1.408

Updates aiodocker from 0.24.0 to 0.25.0

Release notes

Sourced from aiodocker's releases.

0.25.0

Breaking Changes

  • Drop Python 3.9 support and add Python 3.14 support, updating dependencies such as aiohttp (minimum 3.8 to 3.10) and async-timeout (minimum to 5.0) for stdlib TaskGroup and timeout compatibility in Python 3.11+ (#976)
  • Replace **kwargs with explicit parameters in DockerContainer.{stop,restart,kill,delete}() methods, accepting t for server-side stop timeout and timeout for client-side request timeouts for consistency with other methods covered in the previous PRs #983 and #990; since this is a BREAKING CHANGE for those who have used the timeout argument for the DockerContainer.restart() method calls, the users should replace it with t to keep the intended semantics (#991)

Bug Fixes

  • Fix issue authenticating against private registries where the X-Registry-Auth header would require URL-safe substitutions. (#941)

New Features

  • Add support for Docker context endpoints with TLS, reading configuration from ~/.docker/contexts/ and respecting DOCKER_CONTEXT environment variable and SkipTLSVerify option. (#811)
  • Add SSH protocol support for secure connections to remote Docker instances via "ssh://" URLs with mandatory host key verification (#982)
  • Introduce the client-level timeout configuration which becomes the base timeout configuration while still allowing legacy individual per-API timeouts and merging it into the base timeout. Now setting individual float (total) timeout per-API call is HIGHLY DISCOURAGED in favor of composable timeouts via stdlib's asyncio.timeout() async context manager. (#983)

Miscellaneous

  • Improve the CI workflows to expand the test matrix for aiohttp 3.10/3.13 releases and let tests use the prebuilt artifact to ensure consistency with the release (#980)
  • Isolate the docker instance for swarm and service tests via a docker-in-docker compose stack to avoid affecting the user environment (#981)
  • Apply the default cooldown period (7 days) to the dependabot configuration (#984)
Changelog

Sourced from aiodocker's changelog.

0.25.0 (2025-12-20)

Breaking Changes

  • Drop Python 3.9 support and add Python 3.14 support, updating dependencies such as aiohttp (minimum 3.8 to 3.10) and async-timeout (minimum to 5.0) for stdlib TaskGroup and timeout compatibility in Python 3.11+ (#976)
  • Replace **kwargs with explicit parameters in DockerContainer.{stop,restart,kill,delete}() methods, accepting t for server-side stop timeout and timeout for client-side request timeouts for consistency with other methods covered in the previous PRs #983 and #990; since this is a BREAKING CHANGE for those who have used the timeout argument for the DockerContainer.restart() method calls, the users should replace it with t to keep the intended semantics (#991)

Bug Fixes

  • Fix issue authenticating against private registries where the X-Registry-Auth header would require URL-safe substitutions. (#941)

New Features

  • Add support for Docker context endpoints with TLS, reading configuration from ~/.docker/contexts/ and respecting DOCKER_CONTEXT environment variable and SkipTLSVerify option. (#811)
  • Add SSH protocol support for secure connections to remote Docker instances via "ssh://" URLs with mandatory host key verification (#982)
  • Introduce the client-level timeout configuration which becomes the base timeout configuration while still allowing legacy individual per-API timeouts and merging it into the base timeout. Now setting individual float (total) timeout per-API call is HIGHLY DISCOURAGED in favor of composable timeouts via stdlib's asyncio.timeout() async context manager. (#983)

Miscellaneous

  • Improve the CI workflows to expand the test matrix for aiohttp 3.10/3.13 releases and let tests use the prebuilt artifact to ensure consistency with the release (#980)
  • Isolate the docker instance for swarm and service tests via a docker-in-docker compose stack to avoid affecting the user environment (#981)
  • Apply the default cooldown period (7 days) to the dependabot configuration (#984)
Commits
  • 53cb286 ci: Update sigstore action to avoid using deprecated artifact actions
  • cf67541 Release v0.25.0
  • 872a9c2 Add missing consistent client timeout in DockerContainer.commit() (#992)
  • b2c0cd7 Even more consistent timeouts for all long-running APIs (#991)
  • 972d3e1 Make per-call and contextual timeout handling consistent across all long-runn...
  • d271832 Bump Ruff version in pre-commit-config
  • c2ddcfd Bump the ci group across 1 directory with 3 updates (#989)
  • ede0268 feat: add SSH support for remote Docker connections (#982)
  • b5f93e0 feat: Add context arg and docs for config precedence (#988)
  • e992db2 Add support for Docker context endpoints (#854)
  • Additional commits viewable in compare view

Updates diagnostic from 2.1.0 to 3.0.0

Release notes

Sourced from diagnostic's releases.

3.0.0

What's Changed

  • Drop support for Python 3.7, 3.8, 3.9.
  • Add explicitly tested support for Python 3.12, 3.13 and 3.14.
  • Use the standard library argparse for boolean options.
  • Modernise the code and tooling used.

Full Changelog: pradyunsg/diagnostic@2.1.0...3.0.0

Changelog

Sourced from diagnostic's changelog.

Release 3.0.0 (2025-12-15)

  • Drop support for Python 3.7, 3.8, 3.9.
  • Add explicitly tested support for Python 3.12, 3.13 and 3.14.
  • Use the standard library argparse for boolean options.
  • Modernise the code and tooling used.
Commits
  • 56439f6 Release 3.0.0
  • e44dd86 Drop manual provenance and build pin
  • 36a5afd Merge pull request #45 from pradyunsg/dependabot/github_actions/github-action...
  • 37f95c7 Bump the github-actions group across 1 directory with 6 updates
  • da22086 Merge pull request #43 from pradyunsg/argparse-builtin
  • fa62988 Use the stdlib implementation for boolean options
  • c231f58 Merge pull request #42 from pradyunsg/modernise
  • 5f45e5d Add and test support for Python 3.12-3.14
  • ff5ad05 Fix pyright deprecation warnings
  • 679cc98 Pacify docutils <-> pyright errors
  • Additional commits viewable in compare view

Updates jsonschema from 4.25.1 to 4.26.0

Release notes

Sourced from jsonschema's releases.

v4.26.0

What's Changed

New Contributors

Full Changelog: python-jsonschema/jsonschema@v4.25.1...v4.26.0

Changelog

Sourced from jsonschema's changelog.

v4.26.0

  • Decrease import time by delaying importing of urllib.request (#1416).
Commits
  • a727743 Add a changelog entry for 4.26.
  • 6d28c13 Update the lockfile.
  • 739499e Update pre-commit hooks.
  • cb2d779 Merge pull request #1443 from python-jsonschema/pre-commit-ci-update-config
  • e6bbbb7 [pre-commit.ci] pre-commit autoupdate
  • d56037a Merge pull request #1442 from python-jsonschema/dependabot/github_actions/ast...
  • e54ce13 Bump astral-sh/setup-uv from 7.1.4 to 7.1.6
  • 1f7c9fb Partially update docs requirements.
  • 241aec9 Merge pull request #1441 from python-jsonschema/pre-commit-ci-update-config
  • 2818efb Apache-2.0 -> nongpl
  • Additional commits viewable in compare view

Updates rich-click from 1.9.4 to 1.9.5

Release notes

Sourced from rich-click's releases.

v1.9.5

  • Fix no_args_is_help for Typer CLIs. [#313]
  • Fix strange encoding issue on Windows in GH Actions [#314]

1.9.5.dev0

  • Fix no_args_is_help for Typer CLIs. [#313]
  • Fix strange encoding issue on Windows in GH Actions [#314]
Changelog

Sourced from rich-click's changelog.

Version 1.9.5 (2025-12-21)

  • Fix no_args_is_help for Typer CLIs. [#313]
  • Fix strange encoding issue on Windows in GH Actions [#314]
Commits
  • bab2cbd Merge pull request #317 from dwreeves/1.9.5
  • 5cb4177 finalize version bump
  • aa3e15f Merge pull request #316 from peterdragun/fix/use_encodedstringio
  • 8c99252 fix: Use _EncodedStringIO for Rich Console detection
  • 0137fe8 fix timestamp
  • eee195e Merge pull request #315 from dwreeves/dec2025-fixes
  • 2b7488d Merge branch 'main' of github.com-dwreeves:ewels/rich-click into dec2025-fixes
  • 77fb2fc fix
  • d1a2e00 lock mypy
  • c5992fe update
  • Additional commits viewable in compare view

Updates rpds-py from 0.29.0 to 0.30.0

Release notes

Sourced from rpds-py's releases.

v0.30.0

What's Changed

Full Changelog: crate-py/rpds@v0.29.0...v0.30.0

Commits
  • c38c979 Tag a release.
  • 09c7538 Update the pre-commit link for zizmor.
  • 086997f Remove an unneeded section of the pyproject.toml.
  • 7690933 Merge pull request #204 from edgarrmondragon/pyo3-0.27.2
  • 84f9bd1 Update to PyO3 0.27.2
  • 5cb6bc4 Merge pull request #203 from crate-py/pre-commit-ci-update-config
  • 677a6db [pre-commit.ci] pre-commit autoupdate
  • 5f1fa20 Merge pull request #202 from crate-py/pre-commit-ci-update-config
  • 6657a51 [pre-commit.ci] pre-commit autoupdate
  • See full diff in compare view

Updates url-py from 0.18.0 to 0.19.0

Release notes

Sourced from url-py's releases.

v0.19.0

What's Changed

Full Changelog: crate-py/url@v0.18.0...v0.19.0

Commits
  • 73303a5 Bump to PyO3 v0.27.2
  • 9597b7b Update the pre-commit link for zizmor.
  • 0e4bf83 Merge pull request #173 from crate-py/pre-commit-ci-update-config
  • 37827d1 [pre-commit.ci] pre-commit autoupdate
  • 6ee7f78 Merge pull request #172 from crate-py/dependabot/pip/pytest-9.0.1
  • 4760097 Bump pytest from 8.4.2 to 9.0.1
  • c22ab9f Merge pull request #168 from crate-py/dependabot/github_actions/github/codeql...
  • f5e2adf Merge pull request #171 from crate-py/pre-commit-ci-update-config
  • 34eadce [pre-commit.ci] pre-commit autoupdate
  • f1e2316 Merge pull request #170 from crate-py/dependabot/github_actions/softprops/act...
  • Additional commits viewable in compare view

Updates hypothesis from 6.148.2 to 6.150.2

Release notes

Sourced from hypothesis's releases.

Hypothesis for Python - version 6.150.2

Update some internal type hints.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.150.1

This patch fixes a bug where "recursive()" would fail in cases where the "extend=" function does not reference it's argument - which was assumed by the recent "min_leaves=" feature, because the strategy can't actually recurse otherwise. (issue #4638)

Now, the historical behavior is working-but-deprecated, or an error if you explicitly pass "min_leaves=".

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.150.0

This release adds a "min_leaves" argument to "recursive()", which ensures that generated recursive structures have at least the specified number of leaf nodes (issue #4205).

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.149.1

Add type hints to an internal class.

The canonical version of these notes (with links) is on readthedocs.

Hypothesis for Python - version 6.149.0

This release extends the explain-phase "# or any other generated value" comments to sub-arguments within "builds()", "tuples()", and "fixed_dictionaries()".

Previously, these comments only appeared on top-level test arguments. Now, when the explain phase determines that a sub-argument can vary freely without affecting the test failure, you'll see comments like:

Falsifying example: test_foo( obj=MyClass( x=0, # or any other generated value y=True, ), data=( '', # or any other generated value 42, ), )

This makes it easier to understand which parts of complex inputs actually matter for reproducing a failure.

... (truncated)

Commits
  • a3d5bff Bump hypothesis-python version to 6.150.2 and update changelog
  • 6100544 Merge pull request #4512 from Liam-DeVoe/next
  • 1cab11e simplify entrypoints
  • 174c1f1 Bump hypothesis-python version to 6.150.1 and update changelog
  • 8cc1f38 Merge pull request #4639 from Zac-HD/fix-recursive-strategy
  • c62b34a Merge branch 'master' into next
  • 6541d3c Merge branch 'master' into fix-recursive-strategy
  • 4a322b4 Merge pull request #4641 from Liam-DeVoe/test-updates
  • a0082e8 spacing
  • b1bc5c2 update changelog
  • Additional commits viewable in compare view

Updates furo from 2025.9.25 to 2025.12.19

Release notes

Sourced from furo's releases.

2025.12.19

  • Bump the supported Sphinx version range

Full Changelog: pradyunsg/furo@2025.09.25...2025.12.19

Changelog

Sourced from furo's changelog.

2025.12.19 -- Harmonious Honeydew

  • ✨ Add support for Sphinx 9.
  • Drop support for Sphinx 6.

2025.09.25 -- Gleaming Green

  • Change the dark mode code back to native.

2025.07.19 -- Frozen Flame

  • ✨ Switch to accessible-pygments themes
  • ✨ Prefetch the sidebar logos
  • ✨ Fix flickering header drop shadow on Safari
  • Add rel=edit attribute to "Edit this page" link/icon
  • Bump NodeJS and npm dependency versions
  • Bump Saas & Webpack major versions
  • Improve current page detection to be resilient to sticky elements above header
  • Modernise Sass and use @use + @forward
  • Remove top of code border-radius with captions
  • Remove "debug printf" for headerTop value
  • Use distinct images for light and dark mode in the documentation
  • Use the modern Saas Modules

2024.08.06 -- Energetic Eminence

  • ✨ Add support for Sphinx 8
  • ✨ Add smoother transitions between breakpoints
  • Increase specificity of table-wrapper selector
  • Avoid page breaks inside paragraphs

2024.07.18 -- Dull Denim

  • Improve how icons are handled and aligned.
  • Improve scroll event handler.
  • Hide the copybutton by default.
  • Fix source_view_link configuration handling.
  • Fix close tag on pencil icon.

2024.05.06 -- Cheerful Cerulean

  • ✨ Add new custom icons for auto mode, reflecting the currently active theme.
  • ✨ Add a view this page button.
  • ✨ Add colours and highlighting to "version modified" API helpers.
  • ✨ Add release information to various customisation knobs.
  • Make all icons bigger and use a thinner stroke with them.

2024.04.27 -- Bold Burgundy

  • Add a skip to content link.

... (truncated)

Commits

Updates sphinx from 8.2.3 to 9.1.0

Release notes

Sourced from sphinx's releases.

Sphinx 9.1.0

Changelog: https://www.sphinx-doc.org/en/master/changes.html

Dependencies

  • #14153: Drop Python 3.11 support.
  • #12555: Drop Docutils 0.20 support. Patch by Adam Turner

Features added

  • Add add_static_dir() for copying static assets from extensions to the build output. Patch by Jared Dillard

Bugs fixed

  • #14189: autodoc: Fix duplicate :no-index-entry: for modules. Patch by Adam Turner
  • #13713: Fix compatibility with MyST-Parser. Patch by Adam Turner
  • Fix tests for Python 3.15. Patch by Adam Turner
  • #14089: autodoc: Fix default option parsing. Patch by Adam Turner
  • Remove incorrect static typing assertions. Patch by Adam Turner
  • #14050: LaTeXTranslator fails to build documents using the "acronym" standard role. Patch by Günter Milde
  • LaTeX: Fix rendering for grid filled merged vertical cell. Patch by Tim Nordell
  • #14228: LaTeX: Fix overrun footer for cases of merged vertical table cells. Patch by Tim Nordell
  • #14207: Fix creating HTMLThemeFactory objects in third-party extensions. Patch by Adam Turner
  • #3099: LaTeX: PDF build crashes if a code-block contains more than circa 1350 codelines (about 27 a4-sized pages at default pointsize). Patch by Jean-François B.
  • #14064: LaTeX: TABs ending up in sphinxVerbatim fail to obey tab stops. Patch by Jean-François B.
  • #14089: autodoc: Improve support for non-weakreferencable objects. Patch by Adam Turner
  • LaTeX: Fix accidental removal at 3.5.0 (#8854) of the documentation of literalblockcappos key of sphinxsetup. Patch by Jean-François B.

... (truncated)

Changelog

Sourced from sphinx's changelog.

Release 9.1.0 (released Dec 31, 2025)

Dependencies

  • #14153: Drop Python 3.11 support.
  • #12555: Drop Docutils 0.20 support. Patch by Adam Turner

Features added

  • Add :meth:~sphinx.application.Sphinx.add_static_dir for copying static assets from extensions to the build output. Patch by Jared Dillard

Bugs fixed

  • #14189: autodoc: Fix duplicate :no-index-entry: for modules. Patch by Adam Turner
  • #13713: Fix compatibility with MyST-Parser. Patch by Adam Turner
  • Fix tests for Python 3.15. Patch by Adam Turner
  • #14089: autodoc: Fix default option parsing. Patch by Adam Turner
  • Remove incorrect static typing assertions. Patch by Adam Turner
  • #14050: LaTeXTranslator fails to build documents using the "acronym" standard role. Patch by Günter Milde
  • LaTeX: Fix rendering for grid filled merged vertical cell. Patch by Tim Nordell
  • #14228: LaTeX: Fix overrun footer for cases of merged vertical table cells. Patch by Tim Nordell
  • #14207: Fix creating HTMLThemeFactory objects in third-party extensions. Patch by Adam Turner
  • #3099: LaTeX: PDF build crashes if a code-block contains more than circa 1350 codelines (about 27 a4-sized pages at default pointsize). Patch by Jean-François B.
  • #14064: LaTeX: TABs ending up in sphinxVerbatim fail to obey tab stops. Patch by Jean-François B.
  • #14089: autodoc: Improve support for non-weakreferencable objects. Patch by Adam Turner
  • LaTeX: Fix accidental removal at 3.5.0 (#8854) of the documentation of literalblockcappos key of :ref:'sphinxsetup' <latexsphinxsetup>. Patch by Jean-François B.
Commits
  • cc7c6f4 Bump to 9.1.0 final
  • b127b94 Add app.add_static_dir() for copying extension static files (#14219)
  • 20f1c46 LaTeX: Inhibit breaks for rows with merged vertical cells (#14227)
  • 3c85411 Polish CHANGES.rst (#14225)
  • 9ee5446 LaTeX: restore 1.7 documentation of literalblockcappos (#14224)
  • d75d602 LaTeX: improve (again...) some code comments in time for 9.1.0 (#14222)
  • 8dca61d Improve some LaTeX code comments (#14220)
  • 8ab9600 Bump to 9.1.0 candidate 2
  • d59b237 autodoc: Improve support for non-weakreferencable objects
  • 964424b Use the correct reference for using existing extensions (#14157)
  • Additional commits viewable in compare view

Updates sphinx-click from 6.1.0 to 6.2.0

Commits

Updates sphinx-substitution-extensions from 2025.1.2 to 2026.1.12

Release notes

Sourced from sphinx-substitution-extensions's releases.

Release 2026.01.12

2026.01.12 (2026-01-12)

Release 2025.12.15

2025.12.15 (2025-12-15)

Release 2025.11.17

2025.11.17 (2025-11-17)

Release 2025.10.24

2025.10.24 (2025-10-24)

Release 2025.06.06

2025.06.06 (2025-06-06)

Release 2025.04.03

2025.04.03 (2025-04-03)

Release 2025.03.03

2025.03.03 (2025-03-03)

Release 2025.02.19

2025.02.19 (2025-02-19)

Changelog

Sourced from sphinx-substitution-extensions's changelog.

Changelog

.. contents::

Next

2026.01.12

  • Fix bug where SubstitutionXRefRole removed all occurrences of "substitution-" from CSS class names instead of only the prefix.

2025.12.15

2025.11.17

  • Give version in extension metadata.

  • literalinclude directive now supports the following options:

    • :content-substitutions: - Performs substitutions on the included file content.
    • :path-substitutions: - Performs substitutions on the file path.
  • image directive now supports the following option:

    • :path-substitutions: - Performs substitutions on the image file path.
  • Add substitutions_default_enabled configuration option to enable substitutions by default. When set to True in conf.py:

    • Substitutions are applied to all code-block directives without requiring the :substitutions: flag. Use the :nosubstitutions: flag on individual code blocks to disable substitutions when the default is enabled.
    • Substitutions are applied to all literalinclude directives (both content and path) without requiring the :content-substitutions: or :path-substitutions: flags. Use the :nocontent-substitutions: or :nopath-substitutions: flags on individual literalinclude directives to disable substitutions when the default is enabled.
    • Substitutions are applied to all image directives (path) without requiring the :path-substitutions: flag. Use the :nopath-substitutions: flag on individual image directives to disable substitutions when the default is enabled.

2025.10.24

2025.06.06

2025.04.03

2025.03.03

... (truncated)

Commits

Updates sphinxcontrib-spelling from 8.0.1 to 8.0.2

Release notes

Sourced from sphinxcontrib-spelling's releases.

8.0.2

What's Changed

Bumps the bowtie-dependencies group with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [aiodocker](https://github.com/aio-libs/aiodocker) | `0.24.0` | `0.25.0` |
| [diagnostic](https://github.com/pradyunsg/diagnostic) | `2.1.0` | `3.0.0` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.25.1` | `4.26.0` |
| [rich-click](https://github.com/ewels/rich-click) | `1.9.4` | `1.9.5` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.29.0` | `0.30.0` |
| [url-py](https://github.com/crate-py/url) | `0.18.0` | `0.19.0` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.148.2` | `6.150.2` |
| [furo](https://github.com/pradyunsg/furo) | `2025.9.25` | `2025.12.19` |
| [sphinx](https://github.com/sphinx-doc/sphinx) | `8.2.3` | `9.1.0` |
| [sphinx-click](https://github.com/click-contrib/sphinx-click) | `6.1.0` | `6.2.0` |
| [sphinx-substitution-extensions](https://github.com/adamtheturtle/sphinx-substitution-extensions) | `2025.1.2` | `2026.1.12` |
| [sphinxcontrib-spelling](https://github.com/sphinx-contrib/spelling) | `8.0.1` | `8.0.2` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.1` | `9.0.2` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `0.21.2` | `1.3.0` |
| [pyright](https://github.com/RobertCraigie/pyright-python) | `1.1.407` | `1.1.408` |


Updates `aiodocker` from 0.24.0 to 0.25.0
- [Release notes](https://github.com/aio-libs/aiodocker/releases)
- [Changelog](https://github.com/aio-libs/aiodocker/blob/main/CHANGES.rst)
- [Commits](aio-libs/aiodocker@v0.24.0...v0.25.0)

Updates `diagnostic` from 2.1.0 to 3.0.0
- [Release notes](https://github.com/pradyunsg/diagnostic/releases)
- [Changelog](https://github.com/pradyunsg/diagnostic/blob/main/docs/changelog.md)
- [Commits](pradyunsg/diagnostic@2.1.0...3.0.0)

Updates `jsonschema` from 4.25.1 to 4.26.0
- [Release notes](https://github.com/python-jsonschema/jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/jsonschema@v4.25.1...v4.26.0)

Updates `rich-click` from 1.9.4 to 1.9.5
- [Release notes](https://github.com/ewels/rich-click/releases)
- [Changelog](https://github.com/ewels/rich-click/blob/main/CHANGELOG.md)
- [Commits](ewels/rich-click@v1.9.4...v1.9.5)

Updates `rpds-py` from 0.29.0 to 0.30.0
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.29.0...v0.30.0)

Updates `url-py` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/crate-py/url/releases)
- [Changelog](https://github.com/crate-py/url/blob/main/docs/changes.rst)
- [Commits](crate-py/url@v0.18.0...v0.19.0)

Updates `hypothesis` from 6.148.2 to 6.150.2
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.148.2...hypothesis-python-6.150.2)

Updates `furo` from 2025.9.25 to 2025.12.19
- [Release notes](https://github.com/pradyunsg/furo/releases)
- [Changelog](https://github.com/pradyunsg/furo/blob/main/docs/changelog.md)
- [Commits](pradyunsg/furo@2025.09.25...2025.12.19)

Updates `sphinx` from 8.2.3 to 9.1.0
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/master/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v8.2.3...v9.1.0)

Updates `sphinx-click` from 6.1.0 to 6.2.0
- [Release notes](https://github.com/click-contrib/sphinx-click/releases)
- [Commits](click-contrib/sphinx-click@6.1.0...6.2.0)

Updates `sphinx-substitution-extensions` from 2025.1.2 to 2026.1.12
- [Release notes](https://github.com/adamtheturtle/sphinx-substitution-extensions/releases)
- [Changelog](https://github.com/adamtheturtle/sphinx-substitution-extensions/blob/main/CHANGELOG.rst)
- [Commits](adamtheturtle/sphinx-substitution-extensions@2025.01.02...2026.01.12)

Updates `sphinxcontrib-spelling` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/sphinx-contrib/spelling/releases)
- [Commits](sphinx-contrib/spelling@8.0.1...8.0.2)

Updates `pytest` from 9.0.1 to 9.0.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@9.0.1...9.0.2)

Updates `pytest-asyncio` from 0.21.2 to 1.3.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v0.21.2...v1.3.0)

Updates `pyright` from 1.1.407 to 1.1.408
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.407...v1.1.408)

---
updated-dependencies:
- dependency-name: aiodocker
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: diagnostic
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: bowtie-dependencies
- dependency-name: jsonschema
  dependency-version: 4.26.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: rich-click
  dependency-version: 1.9.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: bowtie-dependencies
- dependency-name: rpds-py
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: url-py
  dependency-version: 0.19.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: hypothesis
  dependency-version: 6.150.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: furo
  dependency-version: 2025.12.19
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: sphinx
  dependency-version: 9.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bowtie-dependencies
- dependency-name: sphinx-click
  dependency-version: 6.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: bowtie-dependencies
- dependency-name: sphinx-substitution-extensions
  dependency-version: 2026.1.12
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bowtie-dependencies
- dependency-name: sphinxcontrib-spelling
  dependency-version: 8.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bowtie-dependencies
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bowtie-dependencies
- dependency-name: pytest-asyncio
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: bowtie-dependencies
- dependency-name: pyright
  dependency-version: 1.1.408
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: bowtie-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jan 26, 2026
@read-the-docs-community
Copy link

Documentation build overview

📚 Bowtie | 🛠️ Build #31142579 | 📁 Comparing c0511d5 against latest (e9e063e)


🔍 Preview build

Show files changed (1 files in total): 📝 1 modified | ➕ 0 added | ➖ 0 deleted
File Status
cli/index.html 📝 modified

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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants