Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 25, 2025

Bumps the dependencies group in /.config with 9 updates:

Package From To
ruff 0.11.10 0.11.11
cachetools 5.5.2 6.0.0
click 8.2.0 8.2.1
coverage 7.8.0 7.8.2
identify 2.6.10 2.6.12
mkdocs-autorefs 1.4.1 1.4.2
mkdocstrings-python 1.16.10 1.16.11
rpds-py 0.25.0 0.25.1

Updates ruff from 0.11.10 to 0.11.11

Release notes

Sourced from ruff's releases.

0.11.11

Release Notes

Preview features

  • [airflow] Add autofixes for AIR302 and AIR312 (#17942)
  • [airflow] Move rules from AIR312 to AIR302 (#17940)
  • [airflow] Update AIR301 and AIR311 with the latest Airflow implementations (#17985)
  • [flake8-simplify] Enable fix in preview mode (SIM117) (#18208)

Bug fixes

  • Fix inconsistent formatting of match-case on [] and _ (#18147)
  • [pylint] Fix PLW1514 not recognizing the encoding positional argument of codecs.open (#18109)

CLI

  • Add full option name in formatter warning (#18217)

Documentation

  • Fix rendering of admonition in docs (#18163)
  • [flake8-print] Improve print/pprint docs for T201 and T203 (#18130)
  • [flake8-simplify] Add fix safety section (SIM110,SIM210) (#18114,#18100)
  • [pylint] Fix docs example that produced different output (PLW0603) (#18216)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.11.11

Preview features

  • [airflow] Add autofixes for AIR302 and AIR312 (#17942)
  • [airflow] Move rules from AIR312 to AIR302 (#17940)
  • [airflow] Update AIR301 and AIR311 with the latest Airflow implementations (#17985)
  • [flake8-simplify] Enable fix in preview mode (SIM117) (#18208)

Bug fixes

  • Fix inconsistent formatting of match-case on [] and _ (#18147)
  • [pylint] Fix PLW1514 not recognizing the encoding positional argument of codecs.open (#18109)

CLI

  • Add full option name in formatter warning (#18217)

Documentation

  • Fix rendering of admonition in docs (#18163)
  • [flake8-print] Improve print/pprint docs for T201 and T203 (#18130)
  • [flake8-simplify] Add fix safety section (SIM110,SIM210) (#18114,#18100)
  • [pylint] Fix docs example that produced different output (PLW0603) (#18216)
Commits
  • 0397682 Bump 0.11.11 (#18259)
  • bcefa45 [ty] Rename call-possibly-unbound-method to `possibly-unbound-implicit-call...
  • 91b7a57 [ty] Implement Python's floor division semantics for Literal ints (#18249)
  • 98da200 [ty] Fix server panic when calling system_mut (#18252)
  • 029085f [ty] Clarify ty check output default in documentation. (#18246)
  • 6df10c6 [pylint] Fix docs example that produced different output (PLW0603) (#18216)
  • bdf4884 Preserve tuple parentheses in case patterns (#18147)
  • 01eeb2f [ty] Support frozen dataclasses (#17974)
  • cb04343 [ty] Split invalid-base error code into two error codes (#18245)
  • 02394b8 [ty] Improve invalid-type-form diagnostic where a module-literal type is us...
  • Additional commits viewable in compare view

Updates cachetools from 5.5.2 to 6.0.0

Changelog

Sourced from cachetools's changelog.

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
  • e497575 Release v6.0.0.
  • 0a8f391 Update related projects section.
  • 3afef37 Pre-release v6.0.0b4.
  • 34815dd Update documentation for v6.0.0.
  • 8854b50 Add intersphinx extension.
  • 0af4a07 Bump codecov/codecov-action from 5.4.0 to 5.4.2
  • ad42371 Merge pull request #349 from tkem/dependabot/github_actions/actions/setup-pyt...
  • 987c076 Bump actions/setup-python from 5.5.0 to 5.6.0
  • 27d0dce Add cache_condition wrapper attribute (and refactor a bit).
  • 37b5c12 Use class method attributes in tests.
  • Additional commits viewable in compare view

Updates click from 8.2.0 to 8.2.1

Release notes

Sourced from click's releases.

8.2.1

This is the Click 8.2.1 fix release, which fixes bugs but does not otherwise change behavior and should not result in breaking changes compared to the latest feature release.

PyPI: https://pypi.org/project/click/8.2.1/ Changes: https://click.palletsprojects.com/page/changes/#version-8-2-1 Milestone: https://github.com/pallets/click/milestone/24?closed=1

  • Fix flag value handling for flag options with a provided type. #2894 #2897
  • Fix shell completion for nested groups. #2906
  • Flush sys.stderr at the end of CliRunner.invoke. #2682
  • Fix EOF handling for stdin input in CliRunner. #2787
Changelog

Sourced from click's changelog.

Version 8.2.1

Released 2025-05-20

  • Fix flag value handling for flag options with a provided type. :issue:2894 :issue:2897 :pr:2930
  • Fix shell completion for nested groups. :issue:2906 :pr:2907
  • Flush sys.stderr at the end of CliRunner.invoke. :issue:2682
  • Fix EOF handling for stdin input in CliRunner. :issue:2787
Commits
  • fd183b2 release version 8.2.1
  • 262bdf0 Raise an exception on end of input in CliRunner (#2934)
  • 80efdf6 Raise an exception on end of input in CliRunner
  • cfa6f4a Flush sys.stderr when CliRunner finalizes (#2933)
  • f3a4363 flush sys.stderr when CliRunner.invoke finalizes
  • b7cf069 fix shell completion for nested groups (#2935)
  • 7c575d6 parametrize test
  • ac6a2ac Fix shell completion for nested groups
  • 884af5c Fix flag value set when is_flag=True and type is provided (#2930)
  • 4fd2fea Fix condition for setting flag value when type is provided
  • Additional commits viewable in compare view

Updates coverage from 7.8.0 to 7.8.2

Changelog

Sourced from coverage's changelog.

Version 7.8.2 — 2025-05-23

  • Wheels are provided for Windows ARM64 on Python 3.11, 3.12, and 3.13. Thanks, Finn Womack <pull 1972_>_.

.. _issue 1971: nedbat/coveragepy#1971 .. _pull 1972: nedbat/coveragepy#1972

.. _changes_7-8-1:

Version 7.8.1 — 2025-05-21

  • A number of EncodingWarnings were fixed that could appear if you've enabled PYTHONWARNDEFAULTENCODING, fixing issue 1966. Thanks, Henry Schreiner <pull 1967_>.

  • Fixed a race condition when using sys.monitoring with free-threading Python, closing issue 1970_.

.. _issue 1966: nedbat/coveragepy#1966 .. _pull 1967: nedbat/coveragepy#1967 .. _issue 1970: nedbat/coveragepy#1970

.. _changes_7-8-0:

Commits
  • 51ab2e5 build: have to keep expected dist counts in sync
  • be7bbf2 docs: sample HTML for 7.8.2
  • 3cee850 docs: prep for 7.8.2
  • 39bc6b0 docs: provide more details if the kit matrix is edited.
  • a608fb3 build: add support for Windows arm64 (#1972)
  • 2fe6225 build: run tox lint if actions have changed
  • 3d93a78 docs: docs need scriv for making github releases
  • 0c443a2 build: bump version to 7.8.2
  • ed98b87 docs: sample HTML for 7.8.1
  • b98bc9b docs: prep for 7.8.1
  • Additional commits viewable in compare view

Updates identify from 2.6.10 to 2.6.12

Commits

Updates mkdocs-autorefs from 1.4.1 to 1.4.2

Release notes

Sourced from mkdocs-autorefs's releases.

1.4.2

1.4.2 - 2025-05-20

Compare with 1.4.1

Build

  • Exclude mypy cache from dists (5e77f7f by Timothée Mazzucotelli). Issue-71
Changelog

Sourced from mkdocs-autorefs's changelog.

1.4.2 - 2025-05-20

Compare with 1.4.1

Build

  • Exclude mypy cache from dists (5e77f7f by Timothée Mazzucotelli). Issue-71
Commits

Updates mkdocstrings-python from 1.16.10 to 1.16.11

Release notes

Sourced from mkdocstrings-python's releases.

1.16.11

1.16.11 - 2025-05-24

Compare with 1.16.10

Bug Fixes

Changelog

Sourced from mkdocstrings-python's changelog.

1.16.11 - 2025-05-24

Compare with 1.16.10

Bug Fixes

Commits
  • 5d2ba0a chore: Prepare release 1.16.11
  • 7f95686 fix: Fix highlighting for signature with known special names like __init__
  • 0a35b20 fix: Use default font-size for parameter headings
  • ba66969 fix: Prevent uppercasing H5 titles (by Material for MkDocs)
  • 096960a fix: Use configured heading even when signature is not separated
  • d4e618a fix: Render attribute names without full path in ToC
  • bb36fa1 chore: Template upgrade
  • See full diff in compare view

Updates rpds-py from 0.25.0 to 0.25.1

Release notes

Sourced from rpds-py's releases.

v0.25.1

What's Changed

New Contributors

Full Changelog: crate-py/rpds@v0.25.0...v0.25.1

Commits
  • 125b4b1 Release v0.25.1 for Windows ARM.
  • 996e50a Properly pin hashes in workflows.
  • d8e3e84 Merge pull request #133 from finnagin/arm64-wheel-build
  • e4f09f1 remove trailing whitespace
  • 403a90d fix indentation
  • 1571595 pin maturin-action steps to hash
  • 184a8e6 Merge branch 'crate-py:main' into arm64-wheel-build
  • 2531d3b remove trailing whitespace
  • bb9ba9e add windows-arm to release needs
  • f850162 Add windows arm64 builds
  • See full diff 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 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 dependencies group in /.config with 9 updates:

| Package | From | To |
| --- | --- | --- |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.10` | `0.11.11` |
| [cachetools](https://github.com/tkem/cachetools) | `5.5.2` | `6.0.0` |
| [cairosvg](https://github.com/Kozea/CairoSVG) | `2.7.1` | `2.8.2` |
| [click](https://github.com/pallets/click) | `8.2.0` | `8.2.1` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.8.0` | `7.8.2` |
| [identify](https://github.com/pre-commit/identify) | `2.6.10` | `2.6.12` |
| [mkdocs-autorefs](https://github.com/mkdocstrings/autorefs) | `1.4.1` | `1.4.2` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.16.10` | `1.16.11` |
| [rpds-py](https://github.com/crate-py/rpds) | `0.25.0` | `0.25.1` |


Updates `ruff` from 0.11.10 to 0.11.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.11.10...0.11.11)

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

Updates `cairosvg` from 2.7.1 to 2.8.2
- [Release notes](https://github.com/Kozea/CairoSVG/releases)
- [Changelog](https://github.com/Kozea/CairoSVG/blob/main/NEWS.rst)
- [Commits](Kozea/CairoSVG@2.7.1...2.8.2)

Updates `click` from 8.2.0 to 8.2.1
- [Release notes](https://github.com/pallets/click/releases)
- [Changelog](https://github.com/pallets/click/blob/main/CHANGES.rst)
- [Commits](pallets/click@8.2.0...8.2.1)

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

Updates `identify` from 2.6.10 to 2.6.12
- [Commits](pre-commit/identify@v2.6.10...v2.6.12)

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

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

Updates `rpds-py` from 0.25.0 to 0.25.1
- [Release notes](https://github.com/crate-py/rpds/releases)
- [Commits](crate-py/rpds@v0.25.0...v0.25.1)

---
updated-dependencies:
- dependency-name: ruff
  dependency-version: 0.11.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cachetools
  dependency-version: 6.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: cairosvg
  dependency-version: 2.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: click
  dependency-version: 8.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: coverage
  dependency-version: 7.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: identify
  dependency-version: 2.6.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-autorefs
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-version: 1.16.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: rpds-py
  dependency-version: 0.25.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@ansibuddy ansibuddy merged commit 3f85aad into main May 25, 2025
24 checks passed
@ansibuddy ansibuddy deleted the dependabot/pip/dot-config/dependencies-9f74d9c029 branch May 25, 2025 16:39
panchal-yash added a commit to panchal-yash/molecule that referenced this pull request Jun 9, 2025
use str instead of Choice

perform driver name validation at runtime.

Include relevant error messages allowing for better user experience.
Qalthos pushed a commit to panchal-yash/molecule that referenced this pull request Jun 12, 2025
use str instead of Choice

perform driver name validation at runtime.

Include relevant error messages allowing for better user experience.
Qalthos pushed a commit to panchal-yash/molecule that referenced this pull request Jun 17, 2025
use str instead of Choice

perform driver name validation at runtime.

Include relevant error messages allowing for better user experience.
Qalthos pushed a commit to panchal-yash/molecule that referenced this pull request Jun 27, 2025
use str instead of Choice

perform driver name validation at runtime.

Include relevant error messages allowing for better user experience.
Qalthos pushed a commit to panchal-yash/molecule that referenced this pull request Jul 2, 2025
use str instead of Choice

perform driver name validation at runtime.

Include relevant error messages allowing for better user experience.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Archived in project

Development

Successfully merging this pull request may close these issues.

2 participants