Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps the python-packages group with 6 updates:

Package From To
cachetools 5.5.2 6.1.0
certifi 2025.6.15 2025.7.14
cryptography 45.0.4 45.0.5
jsonschema 4.24.0 4.25.0
mitogen 0.3.24 0.3.25
rich 14.0.0 14.1.0

Updates cachetools from 5.5.2 to 6.1.0

Changelog

Sourced from cachetools's changelog.

v6.1.0 (2025-06-16)

  • Improve LFUCache insertion performance by switching to an implementation based on the cacheing <https://pypi.org/project/cacheing/>_ library.

  • Update CI environment.

v6.0.0 (2025-05-23)

  • Require Python 3.9 or later (breaking change).

  • Remove MRUCache and the @func.mru_cache decorator (breaking change).

  • Add an optional condition parameter to the @cached and @cachedmethod decorators, which, when used with a threading.Condition instance, should improve cache stampede <https://en.wikipedia.org/wiki/Cache_stampede>_ issues in massively parallel environments. Note that this will inflict some performance penalty, and therefore has to be enabled explicitly.

  • Convert the cachetools.func decorators to use a threading.Condition instance to deal with cache stampede <https://en.wikipedia.org/wiki/Cache_stampede>_ issues. Note that this may result in a noticable performance degradation, depending on your actual use case.

  • Deprecate support for cache(self) returning None to suppress caching with the @cachedmethod decorator.

  • Improve documentation.

  • Update CI environment.

Commits

Updates certifi from 2025.6.15 to 2025.7.14

Commits

Updates cryptography from 45.0.4 to 45.0.5

Changelog

Sourced from cryptography's changelog.

45.0.5 - 2025-07-02


* Updated Windows, macOS, and Linux wheels to be compiled with OpenSSL 3.5.1.

.. _v45-0-4:

Commits

Updates jsonschema from 4.24.0 to 4.25.0

Release notes

Sourced from jsonschema's releases.

v4.25.0

What's Changed

New Contributors

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

v4.24.1

What's Changed

New Contributors

Full Changelog: python-jsonschema/jsonschema@v4.24.0...v4.24.1

Changelog

Sourced from jsonschema's changelog.

v4.25.0

  • Add support for the iri and iri-reference formats to the format-nongpl extra via the MIT-licensed rfc3987-syntax. They were alread supported by the format extra. (#1388).

v4.24.1

  • Properly escape segments in ValidationError.json_path (#139).
Commits
  • 9889f69 Add the new functionality to the CHANGELOG.
  • 18855d0 Merge pull request #1388 from jkowalleck/feat/validate_rfc3987_non-gpl/rfc398...
  • 1a6067f adjust rfc3987-syntax min-version
  • 6aadb8b Add the fix to the CHANGELOG.
  • 785741e Add a dependency group for our new test dependency.
  • dc54734 Add a uv.lock.
  • b5572c9 Merge pull request #1390 from kurtmckee/fix-json_path-str-rendering
  • 4cf45b9 Feedback: Use jsonpath-ng to re-parse the rendered JSON path
  • 2680f6a Feedback: Make a compiled regex pattern private
  • 9a957d7 Unambiguously quote and escape properties in JSON path rendering
  • Additional commits viewable in compare view

Updates mitogen from 0.3.24 to 0.3.25

Release notes

Sourced from mitogen's releases.

v0.3.25

What's Changed

New Contributors

Full Changelog: mitogen-hq/mitogen@v0.3.24...v0.3.25

v0.3.25b1

What's Changed

New Contributors

Full Changelog: mitogen-hq/mitogen@v0.3.25a3...v0.3.25b1

v0.3.25a3

What's Changed

Full Changelog: mitogen-hq/mitogen@v0.3.25a2...v0.3.25a3

v0.3.25a2

What's Changed

... (truncated)

Changelog

Sourced from mitogen's changelog.

v0.3.25 (2025-07-29)

Ansible 12 has deprecated third-party strategy plugins. This is currently how Mitogen integrates with Ansible (e.g. ANSIBLE_STRATEGY=mitogen_linear). Running Ansible 12 + Mitogen will currently print a deprecation warning

[DEPRECATION WARNING]: Use of strategy plugins not included in
ansible.builtin are deprecated [...]. This feature will be removed from
ansible-core in a future release.

Ansible + Mitogen will still work for now. Mitogen is considering alternatives to strategy plugins under :gh:issue:1278.

  • :gh:issue:1258 Ansible 12 (ansible-core 2.19) support

v0.3.25b1 (2025-07-21)

  • :gh:issue:1303 CI: Switch to archived Debian 10 (buster) apt repository

v0.3.25a3 (2025-07-02)

  • :gh:issue:1285 CI: use result_format = yaml for Ansible test output, instead of deprecated stdout_callback = yaml
  • :gh:issue:1293 CI: Fix ansible_version comparisons when an Ansible release candidate is under test
  • :gh:issue:1275 CI: Test ansible_ssh_password behaviour without sshpass installed
  • :gh:issue:1282 :mod:ansible_mitogen: Support ANSIBLE_SSH_VERBOSITY with Ansible 12

v0.3.25a2 (2025-06-21)

  • :gh:issue:1274 :mod:ansible_mitogen: Replace use of jsonify(), which is deprecated form Ansible 12 (ansible-core 2.19)

v0.3.25a1 (2025-06-05)

  • :gh:issue:1258 Initial Ansible 12 (ansible-core 2.19) support
  • :gh:issue:1258 :mod:ansible_mitogen: Initial Ansible datatag support (:gh:anspull:84621)
  • :gh:issue:1258 :mod:ansible_mitogen: Ansible 12 (ansible-core 2.19) test

... (truncated)

Commits
  • 021d712 Merge pull request #1316 from moreati/release-v0.3.25
  • 536ab7d Merge commit 'dfafa14' into release-v0.3.25
  • dfafa14 Prepare v0.3.25
  • d240a78 Merge pull request #1308 from moreati/prep-v0.3.25b1
  • fa22aa1 Resume 0.3.25dev
  • 2ae35c8 Prepare v0.3.25b1
  • 058787f Merge pull request #1304 from moreati/issue1303
  • 573303a CI: Switch to archived Debian 10 (buster) apt repository
  • bb18d9e Merge pull request #1298 from feteu/patch-1
  • d818b20 Update missing host key checking argument in docs/ansible_detailed.rst
  • Additional commits viewable in compare view

Updates rich from 14.0.0 to 14.1.0

Release notes

Sourced from rich's releases.

The Lively Release

Live objects may now be nested. Previously a progress bar inside another progress context would fail. See the changelog below for this and other changes.

[14.1.0] - 2025-06-25

Changed

Fixed

Added

  • Added TTY_INTERACTIVE environment variable to force interactive mode off or on Textualize/rich#3777
Changelog

Sourced from rich's changelog.

[14.1.0] - 2025-06-25

Changed

Fixed

Added

  • Added TTY_INTERACTIVE environment variable to force interactive mode off or on Textualize/rich#3777
Commits

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 python-packages group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [cachetools](https://github.com/tkem/cachetools) | `5.5.2` | `6.1.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2025.6.15` | `2025.7.14` |
| [cryptography](https://github.com/pyca/cryptography) | `45.0.4` | `45.0.5` |
| [jsonschema](https://github.com/python-jsonschema/jsonschema) | `4.24.0` | `4.25.0` |
| [mitogen](https://github.com/mitogen-hq/mitogen) | `0.3.24` | `0.3.25` |
| [rich](https://github.com/Textualize/rich) | `14.0.0` | `14.1.0` |


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

Updates `certifi` from 2025.6.15 to 2025.7.14
- [Commits](certifi/python-certifi@2025.06.15...2025.07.14)

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

Updates `jsonschema` from 4.24.0 to 4.25.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.24.0...v4.25.0)

Updates `mitogen` from 0.3.24 to 0.3.25
- [Release notes](https://github.com/mitogen-hq/mitogen/releases)
- [Changelog](https://github.com/mitogen-hq/mitogen/blob/master/docs/changelog.rst)
- [Commits](mitogen-hq/mitogen@v0.3.24...v0.3.25)

Updates `rich` from 14.0.0 to 14.1.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v14.0.0...v14.1.0)

---
updated-dependencies:
- dependency-name: cachetools
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-packages
- dependency-name: certifi
  dependency-version: 2025.7.14
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: cryptography
  dependency-version: 45.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: jsonschema
  dependency-version: 4.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: mitogen
  dependency-version: 0.3.25
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
- dependency-name: rich
  dependency-version: 14.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
...

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 1, 2025
@korowa
Copy link
Collaborator

korowa commented Aug 4, 2025

Will rebase after googleapis/google-auth-library-python#1773 will be released (2.41.0)

@korowa korowa marked this pull request as draft August 4, 2025 06:35
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.

1 participant