Skip to content

ci: doc: bump the doc-deps group across 1 directory with 9 updates#5

Open
dependabot[bot] wants to merge 1 commit intotn-v4.3-branchfrom
dependabot/uv/doc/doc-deps-e7597a12f2
Open

ci: doc: bump the doc-deps group across 1 directory with 9 updates#5
dependabot[bot] wants to merge 1 commit intotn-v4.3-branchfrom
dependabot/uv/doc/doc-deps-e7597a12f2

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 10, 2026

Bumps the doc-deps group with 9 updates in the /doc directory:

Package From To
coverxygen 1.8.1 1.8.2
doxmlparser 1.14.0 1.16.1
pytest 8.4.2 9.0.2
python-dotenv 1.1.1 1.2.2
sphinx-rtd-theme 3.0.2 3.1.0
sphinx-tabs 3.4.7 3.5.0
sphinx-togglebutton 0.3.2 0.4.4
sphinxcontrib-programoutput 0.18 0.19
sphinxcontrib-svg2pdfconverter 1.3.0 2.1.0

Updates coverxygen from 1.8.1 to 1.8.2

Release notes

Sourced from coverxygen's releases.

1.8.2

What's Changed

New Contributors

distribution

pypi: https://pypi.org/project/coverxygen/

Full Changelog: psycofdj/coverxygen@1.8.1...1.8.2

Commits

Updates doxmlparser from 1.14.0 to 1.16.1

Release notes

Sourced from doxmlparser's releases.

Doxygen release 1.16.1

See the changelog for release 1.16.1

Doxygen release 1.16.0

See the changelog for release 1.16.0

Doxygen release 1.15.0

See the changelog for release 1.15.0

Changelog

Sourced from doxmlparser's changelog.

\page pg_rel Overview of doxygen release dates

The following table gives an overview of the doxygen releases together with the release dates.

... (truncated)

Commits

Updates pytest from 8.4.2 to 9.0.2

Release notes

Sourced from pytest's releases.

9.0.2

pytest 9.0.2 (2025-12-06)

Bug fixes

  • #13896: The terminal progress feature added in pytest 9.0.0 has been disabled by default, except on Windows, due to compatibility issues with some terminal emulators.

    You may enable it again by passing -p terminalprogress. We may enable it by default again once compatibility improves in the future.

    Additionally, when the environment variable TERM is dumb, the escape codes are no longer emitted, even if the plugin is enabled.

  • #13904: Fixed the TOML type of the tmp_path_retention_count settings in the API reference from number to string.

  • #13946: The private config.inicfg attribute was changed in a breaking manner in pytest 9.0.0. Due to its usage in the ecosystem, it is now restored to working order using a compatibility shim. It will be deprecated in pytest 9.1 and removed in pytest 10.

  • #13965: Fixed quadratic-time behavior when handling unittest subtests in Python 3.10.

Improved documentation

  • #4492: The API Reference now contains cross-reference-able documentation of pytest's command-line flags <command-line-flags>.

9.0.1

pytest 9.0.1 (2025-11-12)

Bug fixes

  • #13895: Restore support for skipping tests via raise unittest.SkipTest.
  • #13896: The terminal progress plugin added in pytest 9.0 is now automatically disabled when iTerm2 is detected, it generated desktop notifications instead of the desired functionality.
  • #13904: Fixed the TOML type of the verbosity settings in the API reference from number to string.
  • #13910: Fixed UserWarning: Do not expect file_or_dir on some earlier Python 3.12 and 3.13 point versions.

Packaging updates and notes for downstreams

  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

Contributor-facing changes

  • #13891, #13942: The CI/CD part of the release automation is now capable of creating GitHub Releases without having a Git checkout on disk -- by bluetech and webknjaz.
  • #13933: The tox configuration has been adjusted to make sure the desired version string can be passed into its package_env through the SETUPTOOLS_SCM_PRETEND_VERSION_FOR_PYTEST environment variable as a part of the release process -- by webknjaz.

... (truncated)

Commits
  • 3d10b51 Prepare release version 9.0.2
  • 188750b Merge pull request #14030 from pytest-dev/patchback/backports/9.0.x/1e4b01d1f...
  • b7d7bef Merge pull request #14014 from bluetech/compat-note
  • bd08e85 Merge pull request #14013 from pytest-dev/patchback/backports/9.0.x/922b60377...
  • bc78386 Add CLI options reference documentation (#13930)
  • 5a4e398 Fix docs typo (#14005) (#14008)
  • d7ae6df Merge pull request #14006 from pytest-dev/maintenance/update-plugin-list-tmpl...
  • 556f6a2 pre-commit: fix rst-lint after new release (#13999) (#14001)
  • c60fbe6 Fix quadratic-time behavior when handling unittest subtests in Python 3.10 ...
  • 73d9b01 Merge pull request #13995 from nicoddemus/patchback/backports/9.0.x/1b5200c0f...
  • Additional commits viewable in compare view

Updates python-dotenv from 1.1.1 to 1.2.2

Release notes

Sourced from python-dotenv's releases.

v1.2.2

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#)

Changed

  • The dotenv run command now forwards flags directly to the specified command by @​bbc2 in theskumar/python-dotenv#607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Support for Python 3.9.

Fixed

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

Misc

New Contributors

Full Changelog: theskumar/python-dotenv@v1.2.1...v1.2.2

v1.2.1

What's Changed

... (truncated)

Changelog

Sourced from python-dotenv's changelog.

[1.2.2] - 2026-03-01

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#588)

Changed

  • The dotenv run command now forwards flags directly to the specified command by [@​bbc2] in #607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Dropped Support for Python 3.9.

Fixed

  • Improved set_key and unset_key behavior when interacting with symlinks by [@​bbc2] in [790c5c0]
  • Corrected the license specifier and added missing Python 3.14 classifiers in package metadata by [@​JYOuyang] in #590

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

[1.2.1] - 2025-10-26

  • Move more config to pyproject.toml, removed setup.cfg
  • Add support for reading .env from FIFOs (Unix) by [@​sidharth-sudhir] in #586

[1.2.0] - 2025-10-26

Commits

Updates sphinx-rtd-theme from 3.0.2 to 3.1.0

Changelog

Sourced from sphinx-rtd-theme's changelog.

3.1.0

  • Added support for docutils 0.22
  • Added support for Sphinx 9.x

.. _release-3.1.0rc2:

3.1.0rc2

  • Added support for docutils 0.22

.. _release-3.1.0rc1:

3.1.0rc1

  • Added support for Sphinx 9.x

.. _release-3.0.2:

Commits

Updates sphinx-tabs from 3.4.7 to 3.5.0

Release notes

Sourced from sphinx-tabs's releases.

v3.5.0

What's Changed

New Contributors

Full Changelog: executablebooks/sphinx-tabs@v3.4.7...v3.5.0

Changelog

Sourced from sphinx-tabs's changelog.

3.5.0 - 2026-03-02

  • Adding support for up to Sphinx 9.1 and dropped support for versions <7.
  • Adding support for docutils 0.22.
  • Adding support for up to Python 3.14 and dropped support for versions <3.10.

3.4.5 - 2024-01-21

Removed

  • docutils version pin

3.4.2 - 2023-19-22

Added

  • Testing for Python 3.11 and 3.12

Removed

  • Dependency on unsupported sphinx_testing package

3.4.2 - 2023-19-22

Fixed

  • tests for sphinx 7.2
  • slice assignment in update_context(), which was removing JS scripts from other sphinx extensions/themes on pages where tabs were not used

Added

  • Note in docs to clarify that include directive can't be used within a code-tab

3.4.1 - 2022-07-02

Added

  • Weekly scheduled testing, to catch breaking changes in unpinned dependencies

Changed

  • docutils version pin to allow use of verison 0.18.x

Removed

  • sphinx version pinning - only the latest version of sphinx will now be fully supported, but previous versions will work if sphinx dependencies (i.e. jinja2) are managed correctly. This is inline with the approach at sphinx
  • tests that were specific to older versions of sphinx and pygments
  • jinja2 version pinning, as this is now pinned in latest version of sphinx

3.4.0 - 2022-06-26

Added

... (truncated)

Commits
  • 4ee56c6 Release v3.5.0
  • eeb478f Update packaging command in CI
  • 505d776 MAINT: adding basic build-system
  • 1af2528 Finalizing changelog for v3.5.0
  • f682229 MAINT: ignoring bots for changelog
  • 40f50ad MAINT: renaming the default branch to main (#219)
  • fcb455c MAINT: dropping sphinx<7 and python<3.10 versions (#218)
  • bb0be82 Bump the actions group in /.github/workflows with 3 updates (#217)
  • 853e580 MAINT: adding dependabot (#215)
  • 3bab12d MAINT: adding new python versions to testing (#216)
  • Additional commits viewable in compare view

Updates sphinx-togglebutton from 0.3.2 to 0.4.4

Release notes

Sourced from sphinx-togglebutton's releases.

Version 0.4.4

What's Changed

Full Changelog: executablebooks/sphinx-togglebutton@v0.4.3...v0.4.4

Version 0.4.3

0.4.3 - 2026-01-14

Fixed

  • Added missing information in tests.yml.

Full Changelog: executablebooks/sphinx-togglebutton@v0.4.2...v0.4.3

Version 0.4.2

0.4.2 - 2026-01-14

Fixed

  • Enhanced setup.cfg with complete metadata.
  • Simplified setup.py to just call setup().

Full Changelog: executablebooks/sphinx-togglebutton@v0.4.1...v0.4.2

Version 0.4.1

0.4.1 - 2026-01-14

Fixed

  • Updated the release workflow to use a recent Python version.

Full Changelog: executablebooks/sphinx-togglebutton@v0.4.0...v0.4.1

Version 0.4.0

0.4.0 - 2026-01-14

Full Changelog: executablebooks/sphinx-togglebutton@v0.3.2...v0.4.0

Added

  • Support for more languages in toggle button text (see README for full list) #66.
  • Added new functions (syncToggleHint, syncAllToggleHints) to dynamically update toggle button hints based on the current state #66. This allows developers to change the open or closed state of an element and have the button hint text update accordingly automatically.

Fixed

  • Update togglebutton.js to use an admonition's existing ID if present, instead of always generating a new one #66.

New Contributors

... (truncated)

Changelog

Sourced from sphinx-togglebutton's changelog.

0.4.4 - 2026-01-14

Fixed

  • Upgrade used version in release workflow to the latest available.
  • Correct build command in tests.yml.

0.4.3 - 2026-01-14

Fixed

  • Added missing information in tests.yml.

0.4.2 - 2026-01-14

Fixed

  • Enhanced setup.cfg with complete metadata.
  • Simplified setup.py to just call setup().

0.4.1 - 2026-01-14

Fixed

  • Updated the release workflow to use a recent Python version.

0.4.0 - 2026-01-14

Added

  • Support for more languages in toggle button text (see README for full list) #66.
  • Added new functions (syncToggleHint, syncAllToggleHints) to dynamically update toggle button hints based on the current state #66. This allows developers to change the open or closed state of an element and have the button hint text update accordingly automatically.

Fixed

  • Update togglebutton.js to use an admonition's existing ID if present, instead of always generating a new one #66.
Commits
  • ec20337 Update release workflow and bump version to 0.4.4 (#73)
  • 9465032 Prep rls 0.4.3 (#72)
  • 20245cb Update to v0.4.2 and improve packaging metadata (#71)
  • b869f69 Bump version to 0.4.1 and update release workflow (#70)
  • aa94ac0 🚀 RELEASE: version 0.4.0 (#69)
  • 5f4c8f7 👌 IMPROVE: Add i18n support & general improvements (#66)
  • f301181 Fix dropdown under a code cell in dark mode (#64)
  • 9a8272d A11y: set aria-expanded to the toggle button. (#61)
  • f468ca6 Display hide hint text when admonition is expanded (#59)
  • 0a356c2 FIX: dropdown toggle height when closed (#57)
  • Additional commits viewable in compare view

Updates sphinxcontrib-programoutput from 0.18 to 0.19

Changelog

Sourced from sphinxcontrib-programoutput's changelog.

0.19 (2026-02-20)

  • Reintroduce ANSI output integration through the programoutput_use_ansi configuration value. When enabled, command output is emitted as an ANSI-aware literal block for processing by the erbsland.sphinx.ansi <https://pypi.org/project/erbsland-sphinx-ansi/>_ extension. Note that this extension and thus ANSI support is only available on Python 3.10 and newer.
Commits
  • 9bb1144 Preparing release 0.19
  • f038e74 Add URLs to project metadata.
  • a44a66a Merge pull request #69 from OpenNTI/dependabot/github_actions/github-actions-...
  • 1e36881 Update documentation links and fix broken index.rst
  • 3f13618 Merge pull request #74 from henryiii/henryiii/feat/ansi
  • ad556e1 The ansi extension is only on 3.10+. Note this in changes and fix the test th...
  • 872b45b Add a test for when the ansi extension is enabled.
  • ebfc909 feat: support ansi via erbsland-sphinx-ansi
  • 6c76f3a Merge pull request #71 from henryiii/henryiii/chore/setup
  • 7695769 chore: improve build backend specification
  • Additional commits viewable in compare view

Updates sphinxcontrib-svg2pdfconverter from 1.3.0 to 2.1.0

Commits
  • 4863664 pyproject.toml: Bump version to v2.1.0
  • 41740c9 Merge pull request #34 from QSchulz/dev/fix-namespace
  • 3f288e3 migrate to PEP-0420 to stop breaking sphinxcontrib namespace
  • c1af786 pyproject.toml: fix build deprecation warningsy
  • 1e381fd pyproject.toml: Bump version to v2.0.0
  • d9abd57 Merge pull request #30 from HeinischValentin/fix-sphinxcontrib-plantuml-inksc...
  • 2c55eab Merge branch 'master' into fix-sphinxcontrib-plantuml-inkscape-call
  • 01ff643 Merge pull request #31 from QSchulz/dev/svg2png
  • 4bfb74b inkscapeconverter: fix deprecation warning for Sphinx 9.0
  • bfd73e7 add support for PNG output
  • Additional commits viewable in compare view

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 commands and options

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

Bumps the doc-deps group with 9 updates in the /doc directory:

| Package | From | To |
| --- | --- | --- |
| [coverxygen](https://github.com/psycofdj/coverxygen) | `1.8.1` | `1.8.2` |
| [doxmlparser](https://github.com/doxygen/doxygen) | `1.14.0` | `1.16.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.4.2` | `9.0.2` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.1.1` | `1.2.2` |
| [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) | `3.0.2` | `3.1.0` |
| [sphinx-tabs](https://github.com/executablebooks/sphinx-tabs) | `3.4.7` | `3.5.0` |
| [sphinx-togglebutton](https://github.com/executablebooks/sphinx-togglebutton) | `0.3.2` | `0.4.4` |
| [sphinxcontrib-programoutput](https://github.com/OpenNTI/sphinxcontrib-programoutput) | `0.18` | `0.19` |
| [sphinxcontrib-svg2pdfconverter](https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter) | `1.3.0` | `2.1.0` |



Updates `coverxygen` from 1.8.1 to 1.8.2
- [Release notes](https://github.com/psycofdj/coverxygen/releases)
- [Commits](psycofdj/coverxygen@1.8.1...1.8.2)

Updates `doxmlparser` from 1.14.0 to 1.16.1
- [Release notes](https://github.com/doxygen/doxygen/releases)
- [Changelog](https://github.com/doxygen/doxygen/blob/master/doc_internal/releases.md)
- [Commits](https://github.com/doxygen/doxygen/commits)

Updates `pytest` from 8.4.2 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@8.4.2...9.0.2)

Updates `python-dotenv` from 1.1.1 to 1.2.2
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.1.1...v1.2.2)

Updates `sphinx-rtd-theme` from 3.0.2 to 3.1.0
- [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst)
- [Commits](readthedocs/sphinx_rtd_theme@3.0.2...3.1.0)

Updates `sphinx-tabs` from 3.4.7 to 3.5.0
- [Release notes](https://github.com/executablebooks/sphinx-tabs/releases)
- [Changelog](https://github.com/executablebooks/sphinx-tabs/blob/main/CHANGELOG.md)
- [Commits](executablebooks/sphinx-tabs@v3.4.7...v3.5.0)

Updates `sphinx-togglebutton` from 0.3.2 to 0.4.4
- [Release notes](https://github.com/executablebooks/sphinx-togglebutton/releases)
- [Changelog](https://github.com/executablebooks/sphinx-togglebutton/blob/master/CHANGELOG.md)
- [Commits](executablebooks/sphinx-togglebutton@v0.3.2...v0.4.4)

Updates `sphinxcontrib-programoutput` from 0.18 to 0.19
- [Changelog](https://github.com/OpenNTI/sphinxcontrib-programoutput/blob/master/CHANGES.rst)
- [Commits](OpenNTI/sphinxcontrib-programoutput@0.18...0.19)

Updates `sphinxcontrib-svg2pdfconverter` from 1.3.0 to 2.1.0
- [Commits](missinglinkelectronics/sphinxcontrib-svg2pdfconverter@v1.3.0...v2.1.0)

---
updated-dependencies:
- dependency-name: coverxygen
  dependency-version: 1.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: doc-deps
- dependency-name: doxmlparser
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: doc-deps
- dependency-name: python-dotenv
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: sphinx-rtd-theme
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: sphinx-tabs
  dependency-version: 3.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: sphinx-togglebutton
  dependency-version: 0.4.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: sphinxcontrib-programoutput
  dependency-version: '0.19'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: doc-deps
- dependency-name: sphinxcontrib-svg2pdfconverter
  dependency-version: 2.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: doc-deps
...

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants