Skip to content

Bump the dependencies group across 1 directory with 24 updates#4549

Merged
ansibuddy merged 3 commits intomainfrom
dependabot/pip/dot-config/dependencies-1a3366a3ce
Sep 3, 2025
Merged

Bump the dependencies group across 1 directory with 24 updates#4549
ansibuddy merged 3 commits intomainfrom
dependabot/pip/dot-config/dependencies-1a3366a3ce

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2025

Bumps the dependencies group with 24 updates in the /.config directory:

Package From To
ansible-lint 25.8.1 25.8.2
ansible-navigator 25.5.0 25.8.0
pydoclint 0.6.10 0.7.1
requests 2.32.4 2.32.5
ruff 0.12.9 0.12.11
tox 4.28.4 4.29.0
types-jsonschema 4.25.0.20250809 4.25.1.20250822
types-pyyaml 6.0.12.20250809 6.0.12.20250822
beautifulsoup4 4.13.4 4.13.5
cachetools 6.1.0 6.2.0
coverage 7.10.4 7.10.6
cryptography 45.0.6 45.0.7
docstring-parser-fork 0.0.12 0.0.13
griffe 1.12.1 1.13.0
jsonschema 4.25.0 4.25.1
mkdocs-autorefs 1.4.2 1.4.3
mkdocs-material 9.6.17 9.6.18
mkdocstrings-python 1.17.0 1.18.2
pbr 7.0.0 7.0.1
platformdirs 4.3.8 4.4.0
rpds-py 0.27.0 0.27.1
ruamel-yaml 0.18.14 0.18.15
soupsieve 2.7 2.8

Updates ansible-lint from 25.8.1 to 25.8.2

Release notes

Sourced from ansible-lint's releases.

v25.8.2

Bugfixes

Commits
  • 50373ef make rule deprecated-local-action preserve module parameters (#4733)
  • 359d866 Fix Jinja template rendering error when concatenating _AnsibleTaggedStr with ...
  • 5a78671 Update supported Ubuntu platforms (#4727)
  • 22689f2 Update deps (#4734)
  • See full diff in compare view

Updates ansible-navigator from 25.5.0 to 25.8.0

Release notes

Sourced from ansible-navigator's releases.

v25.8.0

Maintenance

Commits

Updates pydoclint from 0.6.10 to 0.7.1

Release notes

Sourced from pydoclint's releases.

0.7.1

What's Changed

Full Changelog: jsh9/pydoclint@0.7.0...0.7.1

0.7.0

New Feature

A new config option --check-arg-default (default: False) to check consistency of argument defaults (between docstring and function signature)

0.6.11

What's Changed

Full Changelog: jsh9/pydoclint@0.6.10...0.6.11

Changelog

Sourced from pydoclint's changelog.

[0.7.1] - 2025-09-02

[0.7.0] - 2025-09-01

[0.6.11] - 2025-08-31

Commits

Updates requests from 2.32.4 to 2.32.5

Release notes

Sourced from requests's releases.

v2.32.5

2.32.5 (2025-08-18)

Bugfixes

  • The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.

Deprecations

  • Added support for Python 3.14.
  • Dropped support for Python 3.8 following its end of support.
Changelog

Sourced from requests's changelog.

2.32.5 (2025-08-18)

Bugfixes

  • The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.

Deprecations

  • Added support for Python 3.14.
  • Dropped support for Python 3.8 following its end of support.
Commits
  • b25c87d v2.32.5
  • 131e506 Merge pull request #7010 from psf/dependabot/github_actions/actions/checkout-...
  • b336cb2 Bump actions/checkout from 4.2.0 to 5.0.0
  • 46e939b Update publish workflow to use artifact-id instead of name
  • 4b9c546 Merge pull request #6999 from psf/dependabot/github_actions/step-security/har...
  • 7618dbe Bump step-security/harden-runner from 2.12.0 to 2.13.0
  • 2edca11 Add support for Python 3.14 and drop support for Python 3.8 (#6993)
  • fec96cd Update Makefile rules (#6996)
  • d58d8aa docs: clarify timeout parameter uses seconds in Session.request (#6994)
  • 91a3eab Bump github/codeql-action from 3.28.5 to 3.29.0
  • Additional commits viewable in compare view

Updates ruff from 0.12.9 to 0.12.11

Release notes

Sourced from ruff's releases.

0.12.11

Release Notes

Preview features

  • [airflow] Extend AIR311 and AIR312 rules (#20082)
  • [airflow] Replace wrong path airflow.io.storage with airflow.io.store (AIR311) (#20081)
  • [flake8-async] Implement blocking-http-call-httpx-in-async-function (ASYNC212) (#20091)
  • [flake8-logging-format] Add auto-fix for f-string logging calls (G004) (#19303)
  • [flake8-use-pathlib] Add autofix for PTH211 (#20009)
  • [flake8-use-pathlib] Make PTH100 fix unsafe because it can change behavior (#20100)

Bug fixes

  • [pyflakes, pylint] Fix false positives caused by __class__ cell handling (F841, PLE0117) (#20048)
  • [pyflakes] Fix allowed-unused-imports matching for top-level modules (F401) (#20115)
  • [ruff] Fix false positive for t-strings in default-factory-kwarg (RUF026) (#20032)
  • [ruff] Preserve relative whitespace in multi-line expressions (RUF033) (#19647)

Rule changes

  • [ruff] Handle empty t-strings in unnecessary-empty-iterable-within-deque-call (RUF037) (#20045)

Documentation

  • Fix incorrect D413 links in docstrings convention FAQ (#20089)
  • [flake8-use-pathlib] Update links to the table showing the correspondence between os and pathlib (#20103)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.12.11

Preview features

  • [airflow] Extend AIR311 and AIR312 rules (#20082)
  • [airflow] Replace wrong path airflow.io.storage with airflow.io.store (AIR311) (#20081)
  • [flake8-async] Implement blocking-http-call-httpx-in-async-function (ASYNC212) (#20091)
  • [flake8-logging-format] Add auto-fix for f-string logging calls (G004) (#19303)
  • [flake8-use-pathlib] Add autofix for PTH211 (#20009)
  • [flake8-use-pathlib] Make PTH100 fix unsafe because it can change behavior (#20100)

Bug fixes

  • [pyflakes, pylint] Fix false positives caused by __class__ cell handling (F841, PLE0117) (#20048)
  • [pyflakes] Fix allowed-unused-imports matching for top-level modules (F401) (#20115)
  • [ruff] Fix false positive for t-strings in default-factory-kwarg (RUF026) (#20032)
  • [ruff] Preserve relative whitespace in multi-line expressions (RUF033) (#19647)

Rule changes

  • [ruff] Handle empty t-strings in unnecessary-empty-iterable-within-deque-call (RUF037) (#20045)

Documentation

  • Fix incorrect D413 links in docstrings convention FAQ (#20089)
  • [flake8-use-pathlib] Update links to the table showing the correspondence between os and pathlib (#20103)

0.12.10

Preview features

  • [flake8-simplify] Implement fix for maxsplit without separator (SIM905) (#19851)
  • [flake8-use-pathlib] Add fixes for PTH102 and PTH103 (#19514)

Bug fixes

  • [isort] Handle multiple continuation lines after module docstring (I002) (#19818)
  • [pyupgrade] Avoid reporting __future__ features as unnecessary when they are used (UP010) (#19769)
  • [pyupgrade] Handle nested Optionals (UP045) (#19770)

Rule changes

  • [pycodestyle] Make E731 fix unsafe instead of display-only for class assignments (#19700)
  • [pyflakes] Add secondary annotation showing previous definition (F811) (#19900)

Documentation

Commits
  • c2bc15b Bump 0.12.11 (#20136)
  • e586f6d [ty] Benchmarks for problematic implicit instance attributes cases (#20133)
  • 76a6b7e [pyflakes] Fix allowed-unused-imports matching for top-level modules (`F4...
  • 1ce6571 Move GitLab output rendering to ruff_db (#20117)
  • d9aaacd [ty] Evaluate reachability of non-definitely-bound to Ambiguous (#19579)
  • 18eaa65 [ty] Introduce a representation for the top/bottom materialization of an inva...
  • af259fa [flake8-async] Implement blocking-http-call-httpx (ASYNC212) (#20091)
  • d75ef38 [ty] print diagnostics with fully qualified name to disambiguate some cases (...
  • 89ca493 [ruff] Preserve relative whitespace in multi-line expressions (RUF033) (#...
  • 4b80f5f [ty] Optimize TDD atom ordering (#20098)
  • Additional commits viewable in compare view

Updates tox from 4.28.4 to 4.29.0

Release notes

Sourced from tox's releases.

4.29.0

What's Changed

Full Changelog: tox-dev/tox@4.28.4...4.29.0

Changelog

Sourced from tox's changelog.

v4.29.0 (2025-08-29)

Features - 4.29.0

- A new tox life cycle event is now exposed for use via :doc:`Plugins
  API </plugins>` -- by :user:`webknjaz`.

The corresponding hook point is :func:tox_extend_envs &lt;tox.plugin.spec.tox_extend_envs&gt;. It allows plugin authors to declare ephemeral environments that they can then populate through the in-memory configuration loader interface.

This patch was made possible thanks to pair programming with :user:gaborbernat at PyCon US 2025. (:issue:3510, :issue:3591)

Commits

Updates types-jsonschema from 4.25.0.20250809 to 4.25.1.20250822

Commits

Updates types-pyyaml from 6.0.12.20250809 to 6.0.12.20250822

Commits

Updates beautifulsoup4 from 4.13.4 to 4.13.5

Updates cachetools from 6.1.0 to 6.2.0

Changelog

Sourced from cachetools's changelog.

v6.2.0 (2025-08-25)

  • Improve general RRCache performance by storing cache keys in an additional sequence container. Note that this will increase memory consumption.

  • Add more unit tests.

Commits

Updates coverage from 7.10.4 to 7.10.6

Changelog

Sourced from coverage's changelog.

Version 7.10.6 — 2025-08-29

  • Fix: source directories were not properly communicated to subprocesses that ran in different directories, as reported in issue 1499_. This is now fixed.

  • Performance: Alex Gaynor continues fine-tuning <pull 2038_>_ the speed of combination, especially with many contexts.

.. _issue 1499: nedbat/coveragepy#1499 .. _pull 2038: nedbat/coveragepy#2038

.. _changes_7-10-5:

Version 7.10.5 — 2025-08-23

  • Big speed improvements for coverage combine: it's now about twice as fast! Huge thanks to Alex Gaynor for pull requests 2032 <pull 2032_>, 2033 <pull 2033_>, and 2034 <pull 2034_>_.

.. _pull 2032: nedbat/coveragepy#2032 .. _pull 2033: nedbat/coveragepy#2033 .. _pull 2034: nedbat/coveragepy#2034

.. _changes_7-10-4:

Commits
  • 88c55ff docs: sample HTML for 7.10.6
  • 01d8995 docs: prep for 7.10.6
  • 9b0c24f docs: thanks Alex #2038
  • 66d6910 fix: make source paths absolute where they exist. #1499
  • bb3382f build: no need for the combine/html times now
  • 9ea349a lab: warn_executed.py
  • 808c9b4 build: changing metacov.ini should trigger metacov
  • 384f5f2 build: oops, some 'if's are really line pragmas
  • a7224af perf: pre-compute the mapping between other_db.context and main.context (#2038)
  • 5c00c5b chore: bump the action-dependencies group with 3 updates (#2039)
  • Additional commits viewable in compare view

Updates cryptography from 45.0.6 to 45.0.7

Changelog

Sourced from cryptography's changelog.

45.0.7 - 2025-09-01


* Added a function to support an upcoming ``pyOpenSSL`` release.

.. _v45-0-6:

Commits

Updates docstring-parser-fork from 0.0.12 to 0.0.13

Commits

Updates griffe from 1.12.1 to 1.13.0

Release notes

Sourced from griffe's releases.

1.13.0

1.13.0 - 2025-08-26

Compare with 1.12.1

Features

  • Add is_init_method property (5417b70 by Timothée Mazzucotelli).

Bug Fixes

  • Increase maximum recursion limit when calling as a CLI (5f0d9e6 by Timothée Mazzucotelli). Issue-402
Changelog

Sourced from griffe's changelog.

1.13.0 - 2025-08-26

Compare with 1.12.1

Features

  • Add is_init_method property (5417b70 by Timothée Mazzucotelli).

Bug Fixes

  • Increase maximum recursion limit when calling as a CLI (5f0d9e6 by Timothée Mazzucotelli). Issue-402
Commits
  • e13f5ed chore: Prepare release 1.13.0
  • 5417b70 feat: Add is_init_method property
  • fa01ac0 ci: Fix Pylance warnings
  • 5f0d9e6 fix: Increase maximum recursion limit when calling as a CLI
  • 266be2d ci: Improve typing fof callables in expression-building node map
  • edf81df chore: Fix make run command
  • 2cb37a7 docs: Fix link to API tests file
  • 1796272 chore: Template upgrade
  • 5e79fbe docs: Add rad clone badge in README
  • 72b4466 chore: Template upgrade
  • See full diff in compare view

Updates jsonschema from 4.25.0 to 4.25.1

Release notes

Sourced from jsonschema's releases.

v4.25.1

What's Changed

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

Changelog

Sourced from jsonschema's changelog.

v4.25.1

  • Fix an incorrect required argument in the Validator protocol's type annotations (#1396).
Commits
  • 331c384 Add the fix to the changelog.
  • c1ec0a6 Merge pull request #1398 from python-jsonschema/dependabot/github_actions/ast...
  • 8e7d594 Merge pull request #1399 from python-jsonschema/dependabot/github_actions/act...
  • 460f4fa Merge pull request #1396 from sirosen/improve-protocol-init-signature
  • 1e58409 [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 64bc217 Add a typing test for the Validator protocol
  • 6c25741 Bump actions/checkout from 4 to 5
  • bf603d5 Bump astral-sh/setup-uv from 6.4.3 to 6.5.0
  • a916d8f Fix Validator protocol init to match runtime
  • de60f18 Merge pull request #1397 from python-jsonschema/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates mkdocs-autorefs from 1.4.2 to 1.4.3

Release notes

Sourced from mkdocs-autorefs's releases.

1.4.3

1.4.3 - 2025-08-26

Compare with 1.4.2

Code Refactoring

  • Be more robust when getting breadcrumbs/backlinks (664aece by Timothée Mazzucotelli).
Changelog

Sourced from mkdocs-autorefs's changelog.

1.4.3 - 2025-08-26

Compare with 1.4.2

Code Refactoring

  • Be more robust when getting breadcrumbs/backlinks (664aece by Timothée Mazzucotelli).
Commits
  • a77611b chore: Prepare release 1.4.3
  • 0bc358b chore: Template upgrade
  • 664aece refactor: Be more robust when getting breadcrumbs/backlinks
  • See full diff in compare view

Updates mkdocs-material from 9.6.17 to 9.6.18

Release notes

Sourced from mkdocs-material's releases.

mkdocs-material-9.6.18

  • Updated Azerbaijani translations
  • Fixed last compat issues with minijinja, now 100% compatible
Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.6.18 (2025-08-22)

  • Updated Azerbaijani translations
  • Fixed last compat issues with [minijinja], now 100% compatible

mkdocs-material-9.6.17 (2025-08-15)

  • Fixed #8396: Videos do not autoplay when inside a content tab
  • Fixed #8394: Stroke width not effective in Mermaid.js diagrams
  • Fixed disappearing version selector when hiding page title

mkdocs-material-9.6.16 (2025-07-26)

  • Fixed #8349: Info plugin doesn't correctly detect virtualenv in some cases
  • Fixed #8334: Find-in-page detects matches in hidden search result list

mkdocs-material-9.6.15 (2025-07-01)

  • Updated Mongolian translations
  • Improved semantic markup of "edit this page" button
  • Improved info plugin virtual environment resolution
  • Fixed #8291: Large font size setting throws of breakpoints in JavaScript

mkdocs-material-9.6.14 (2025-05-13)

  • Fixed #8215: Social plugin crashes when CairoSVG is updated to 2.8

mkdocs-material-9.6.13 (2025-05-10)

  • Fixed #8204: Annotations showing list markers in print view
  • Fixed #8153: Improve style of cardinality symbols in Mermaid.js ER diagrams

mkdocs-material-9.6.12 (2025-04-17)

  • Fixed #8158: Flip footnote back reference icon for right-to-left languages

mkdocs-material-9.6.11 (2025-04-01)

  • Updated Docker image to latest Alpine Linux
  • Bump required Jinja version to 3.1
  • Fixed #8133: Jinja filter items not available (9.6.10 regression)
  • Fixed #8128: Search plugin not entirely disabled via enabled setting

mkdocs-material-9.6.10 (2025-03-30)

This version is a pure refactoring release, and does not contain new features or bug fixes. It strives to improve the compatibility of our templates with alternative Jinja-like template engines that we're currently exploring, including minijinja.

... (truncated)

Commits

Updates mkdocstrings-python from 1.17.0 to 1.18.2

Release notes

Sourced from mkdocstrings-python's releases.

1.18.2

1.18.2 - 2025-08-28

Compare with 1.18.1

Bug Fixes

  • Normalize spaces to underscores when passing object to rendering context using its kind as key (6f79be0 by Timothée Mazzucotelli). Issue-mkdocstrings-791

1.18.1

1.18.1 - 2025-08-28

Compare with 1.18.0

Bug Fixes

  • Don't show implementation signature of __init__ method when overloads_only is true and it is merged into the class (9ef620f by Timothée Mazzucotelli). Issue-308

1.18.0

1.18.0 - 2025-08-26

Compare with 1.17.0

Features

Bug Fixes

  • Increase maximum recursion limit in case of deeply nested ASTs (rare occurrence) (6004ccf by Timothée Mazzucotelli). Issue-griffe-402
Changelog

Sourced from mkdocstrings-python's changelog.

1.18.2 - 2025-08-28

Compare with 1.18.1

Bug Fixes

  • Normalize spaces to underscores when passing object to rendering context using its kind as key (6f79be0 by Timothée Mazzucotelli). Issue-mkdocstrings-791

1.18.1 - 2025-08-28

Compare with 1.18.0

Bug Fixes

  • Don't show implementation signature of __init__ method when overloads_only is true and it is merged into the class (9ef620f by Timothée Mazzucotelli). Issue-308

1.18.0 - 2025-08-26

Compare with 1.17.0

Features

Bug Fixes

  • Increase maximum recursion limit in case of deeply nested ASTs (rare occurrence) (6004ccf by Timothée Mazzucotelli). Issue-griffe-402
Commits
  • 754b481 chore: Prepare release 1.18.2
  • 6f79be0 fix: Normalize spaces to underscores when passing object to rendering context...
  • 30d4ba2 docs: Fix docs for type parameter headings
  • 9133589 chore: Prepare release 1.18.1
  • 9ef620f fix: Don't show implementation signature of __init__ method when
  • 2d3f75a chore: Prepare release 1.18.0
  • dc8c3ad feat: Support PEP 695 generics
  • 53507b5 ci: Remove unused type ignore comment
  • 6004ccf fix: Increase maximum recursion limit in case of deeply nested ASTs (rare occ...
  • See full diff in compare view

Updates pbr from 7.0.0 to 7.0.1

Updates platformdirs from 4.3.8 to 4.4.0

Release notes

Sourced from platformdirs's releases.

4.4.0

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.3.8...4.4.0

Commits

@github-project-automation github-project-automation bot moved this from In Progress to Review in 🧰 devtools project board Sep 2, 2025
@github-project-automation github-project-automation bot moved this from In Progress to Review in 🧰 devtools project board Sep 3, 2025
dependabot bot and others added 3 commits September 3, 2025 13:05
Bumps the dependencies group with 24 updates in the /.config directory:

| Package | From | To |
| --- | --- | --- |
| [ansible-lint](https://github.com/ansible/ansible-lint) | `25.8.1` | `25.8.2` |
| [ansible-navigator](https://github.com/ansible/ansible-navigator) | `25.5.0` | `25.8.0` |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.6.10` | `0.7.1` |
| [requests](https://github.com/psf/requests) | `2.32.4` | `2.32.5` |
| [ruff](https://github.com/astral-sh/ruff) | `0.12.9` | `0.12.11` |
| [tox](https://github.com/tox-dev/tox) | `4.28.4` | `4.29.0` |
| [types-jsonschema](https://github.com/typeshed-internal/stub_uploader) | `4.25.0.20250809` | `4.25.1.20250822` |
| [types-pyyaml](https://github.com/typeshed-internal/stub_uploader) | `6.0.12.20250809` | `6.0.12.20250822` |
| [backrefs](https://github.com/facelessuser/backrefs) | `5.9` | `6.0` |
| [beautifulsoup4](https://www.crummy.com/software/BeautifulSoup/bs4/) | `4.13.4` | `4.13.5` |
| [cachetools](https://github.com/tkem/cachetools) | `6.1.0` | `6.2.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.10.4` | `7.10.6` |
| [cryptography](https://github.com/pyca/cryptography) | `45.0.6` | `45.0.7` |
| [docstring-parser-fork](https://github.com/rr-/docstring_parser) | `0.0.12` | `0.0.13` |
| [griffe](https://github.com/mkdocstrings/griffe) | `1.12.1` | `1.13.0` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.25.0` | `4.25.1` |
| [mkdocs-autorefs](https://github.com/mkdocstrings/autorefs) | `1.4.2` | `1.4.3` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.6.17` | `9.6.18` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.17.0` | `1.18.2` |
| [pbr](https://docs.openstack.org/pbr/latest/) | `7.0.0` | `7.0.1` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.3.8` | `4.4.0` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.27.0` | `0.27.1` |
| ruamel-yaml | `0.18.14` | `0.18.15` |
| [soupsieve](https://github.com/facelessuser/soupsieve) | `2.7` | `2.8` |



Updates `ansible-lint` from 25.8.1 to 25.8.2
- [Release notes](https://github.com/ansible/ansible-lint/releases)
- [Commits](ansible/ansible-lint@v25.8.1...v25.8.2)

Updates `ansible-navigator` from 25.5.0 to 25.8.0
- [Release notes](https://github.com/ansible/ansible-navigator/releases)
- [Changelog](https://github.com/ansible/ansible-navigator/blob/main/CHANGELOG.md)
- [Commits](ansible/ansible-navigator@v25.5.0...v25.8.0)

Updates `pydoclint` from 0.6.10 to 0.7.1
- [Release notes](https://github.com/jsh9/pydoclint/releases)
- [Changelog](https://github.com/jsh9/pydoclint/blob/main/CHANGELOG.md)
- [Commits](jsh9/pydoclint@0.6.10...0.7.1)

Updates `requests` from 2.32.4 to 2.32.5
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.4...v2.32.5)

Updates `ruff` from 0.12.9 to 0.12.11
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.12.9...0.12.11)

Updates `tox` from 4.28.4 to 4.29.0
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.28.4...4.29.0)

Updates `types-jsonschema` from 4.25.0.20250809 to 4.25.1.20250822
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `types-pyyaml` from 6.0.12.20250809 to 6.0.12.20250822
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `backrefs` from 5.9 to 6.0
- [Release notes](https://github.com/facelessuser/backrefs/releases)
- [Commits](facelessuser/backrefs@5.9...6.0)

Updates `beautifulsoup4` from 4.13.4 to 4.13.5

Updates `cachetools` from 6.1.0 to 6.2.0
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v6.1.0...v6.2.0)

Updates `coverage` from 7.10.4 to 7.10.6
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.10.4...7.10.6)

Updates `cryptography` from 45.0.6 to 45.0.7
- [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst)
- [Commits](pyca/cryptography@45.0.6...45.0.7)

Updates `docstring-parser-fork` from 0.0.12 to 0.0.13
- [Changelog](https://github.com/rr-/docstring_parser/blob/master/CHANGELOG.md)
- [Commits](https://github.com/rr-/docstring_parser/commits)

Updates `griffe` from 1.12.1 to 1.13.0
- [Release notes](https://github.com/mkdocstrings/griffe/releases)
- [Changelog](https://github.com/mkdocstrings/griffe/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/griffe@1.12.1...1.13.0)

Updates `jsonschema` from 4.25.0 to 4.25.1
- [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.0...v4.25.1)

Updates `mkdocs-autorefs` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/mkdocstrings/autorefs/releases)
- [Changelog](https://github.com/mkdocstrings/autorefs/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/autorefs@1.4.2...1.4.3)

Updates `mkdocs-material` from 9.6.17 to 9.6.18
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.17...9.6.18)

Updates `mkdocstrings-python` from 1.17.0 to 1.18.2
- [Release notes](https://github.com/mkdocstrings/python/releases)
- [Changelog](https://github.com/mkdocstrings/python/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/python@1.17.0...1.18.2)

Updates `pbr` from 7.0.0 to 7.0.1

Updates `platformdirs` from 4.3.8 to 4.4.0
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.3.8...4.4.0)

Updates `rpds-py` from 0.27.0 to 0.27.1
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.27.0...v0.27.1)

Updates `ruamel-yaml` from 0.18.14 to 0.18.15

Updates `soupsieve` from 2.7 to 2.8
- [Release notes](https://github.com/facelessuser/soupsieve/releases)
- [Commits](facelessuser/soupsieve@2.7...2.8)

---
updated-dependencies:
- dependency-name: ansible-lint
  dependency-version: 25.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansible-navigator
  dependency-version: 25.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydoclint
  dependency-version: 0.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: requests
  dependency-version: 2.32.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-version: 0.12.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: tox
  dependency-version: 4.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-jsonschema
  dependency-version: 4.25.1.20250822
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: types-pyyaml
  dependency-version: 6.0.12.20250822
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: backrefs
  dependency-version: '6.0'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: beautifulsoup4
  dependency-version: 4.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cachetools
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: coverage
  dependency-version: 7.10.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cryptography
  dependency-version: 45.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: docstring-parser-fork
  dependency-version: 0.0.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: griffe
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: jsonschema
  dependency-version: 4.25.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-autorefs
  dependency-version: 1.4.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-material
  dependency-version: 9.6.18
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pbr
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: platformdirs
  dependency-version: 4.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rpds-py
  dependency-version: 0.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruamel-yaml
  dependency-version: 0.18.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: soupsieve
  dependency-version: '2.8'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@Qalthos Qalthos force-pushed the dependabot/pip/dot-config/dependencies-1a3366a3ce branch from 5b7429c to 3720bc1 Compare September 3, 2025 17:05
@ansibuddy ansibuddy merged commit 216cd2c into main Sep 3, 2025
37 of 39 checks passed
@ansibuddy ansibuddy deleted the dependabot/pip/dot-config/dependencies-1a3366a3ce branch September 3, 2025 17:54
@github-project-automation github-project-automation bot moved this from Review to Done in 🧰 devtools project board Sep 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

chore dependabot-deps-updates dependencies Pull requests that update a dependency file

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

2 participants