Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the dependencies group across 1 directory with 35 updates #4283

Merged
merged 2 commits into from
Sep 9, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 8, 2024

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

Package From To
check-jsonschema 0.29.1 0.29.2
filelock 3.15.4 3.16.0
mypy 1.11.1 1.11.2
pydoclint 0.5.6 0.5.7
pylint 3.2.6 3.2.7
ruff 0.5.7 0.6.4
tox 4.17.1 4.18.1
types-jsonschema 4.23.0.20240712 4.23.0.20240813
ansible-compat 24.7.0 24.8.0
ansible-core 2.17.2 2.17.3
build 1.2.1 1.2.2
cachetools 5.4.0 5.5.0
certifi 2024.7.4 2024.8.30
cffi 1.17.0 1.17.1
cryptography 43.0.0 43.0.1
griffe 0.48.0 1.2.0
idna 3.7 3.8
importlib-metadata 8.2.0 8.4.0
linkchecker 10.4.0 10.5.0
markdown 3.6 3.7
mkdocs 1.6.0 1.6.1
mkdocs-autorefs 1.0.1 1.2.0
mkdocs-material 9.5.31 9.5.34
mkdocstrings 0.25.2 0.26.1
mkdocstrings-python 1.10.7 1.11.1
paginate 0.5.6 0.5.7
pipdeptree 2.23.1 2.23.3
platformdirs 4.2.2 4.3.1
rich 13.7.1 13.8.0
soupsieve 2.5 2.6
tomlkit 0.13.0 0.13.2
virtualenv 20.26.3 20.26.4
watchdog 4.0.1 5.0.2
zipp 3.19.2 3.20.1

Updates check-jsonschema from 0.29.1 to 0.29.2

Release notes

Sourced from check-jsonschema's releases.

v0.29.2

  • Update vendored schemas: buildkite, github-workflows, gitlab-ci, renovate, woodpecker-ci (2024-08-22)
  • Convert from setup.cfg to pyproject.toml for python package metadata
Changelog

Sourced from check-jsonschema's changelog.

0.29.2

  • Update vendored schemas: buildkite, github-workflows, gitlab-ci, renovate, woodpecker-ci (2024-08-22)
  • Convert from setup.cfg to pyproject.toml for python package metadata
Commits

Updates filelock from 3.15.4 to 3.16.0

Release notes

Sourced from filelock's releases.

3.16.0

What's Changed

Full Changelog: tox-dev/filelock@3.15.4...3.16.0

Commits

Updates mypy from 1.11.1 to 1.11.2

Commits
  • 789f02c Bump version to 1.11.2
  • 917cc75 An alternative fix for a union-like literal string (#17639)
  • 7d805b3 Unwrap TypedDict item types before storing (#17640)
  • 32675dd Revert "Fix Literal strings containing pipe characters" (#17638)
  • 778542b Revert "Fix RawExpressionType.accept crash with --cache-fine-grained" (#1...
  • 14ab742 Bump version to 1.11.2+dev
  • See full diff in compare view

Updates pydoclint from 0.5.6 to 0.5.7

Release notes

Sourced from pydoclint's releases.

0.5.7

What's Changed

New Contributors

Full Changelog: jsh9/pydoclint@0.5.6...0.5.7

Changelog

Sourced from pydoclint's changelog.

[0.5.7] - 2024-09-02

  • Added

    • A new violation code, DOC503, which checks that exceptions in the function body match those in the "Raises" section of the docstring
  • Changed

    • Switched from tab to 4 spaces in baseline
Commits

Updates pylint from 3.2.6 to 3.2.7

Commits
  • a98215b Bump pylint to 3.2.7, update changelog
  • 1deaffa Fix to maintain order of package paths (#9887) (#9897)
  • b4c2951 [Backport maintenance/3.2.x] Fix a crash in undefined-loop-variable with `e...
  • f1925f4 Fix crash in refactoring checker when calling bound lambda (#9867)
  • 7d1626c Fix a false positive unreachable for NoReturn coroutine functions (#9844)...
  • See full diff in compare view

Updates ruff from 0.5.7 to 0.6.4

Release notes

Sourced from ruff's releases.

0.6.4

Release Notes

Preview features

  • [flake8-builtins] Use dynamic builtins list based on Python version (#13172)
  • [pydoclint] Permit yielding None in DOC402 and DOC403 (#13148)
  • [pylint] Update diagnostic message for PLW3201 (#13194)
  • [ruff] Implement post-init-default (RUF033) (#13192)
  • [ruff] Implement useless if-else (RUF034) (#13218)

Rule changes

  • [flake8-pyi] Respect pep8_naming.classmethod-decorators settings when determining if a method is a classmethod in custom-type-var-return-type (PYI019) (#13162)
  • [flake8-pyi] Teach various rules that annotations might be stringized (#12951)
  • [pylint] Avoid no-self-use for attrs-style validators (#13166)
  • [pylint] Recurse into subscript subexpressions when searching for list/dict lookups (PLR1733, PLR1736) (#13186)
  • [pyupgrade] Detect aiofiles.open calls in UP015 (#13173)
  • [pyupgrade] Mark sys.version_info[0] < 3 and similar comparisons as outdated (UP036) (#13175)

CLI

  • Enrich messages of SARIF results (#13180)
  • Handle singular case for incompatible rules warning in ruff format output (#13212)

Bug fixes

  • [pydocstyle] Improve heuristics for detecting Google-style docstrings (#13142)
  • [refurb] Treat sep arguments with effects as unsafe removals (FURB105) (#13165)

Contributors

Install ruff 0.6.4

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.4

Preview features

  • [flake8-builtins] Use dynamic builtins list based on Python version (#13172)
  • [pydoclint] Permit yielding None in DOC402 and DOC403 (#13148)
  • [pylint] Update diagnostic message for PLW3201 (#13194)
  • [ruff] Implement post-init-default (RUF033) (#13192)
  • [ruff] Implement useless if-else (RUF034) (#13218)

Rule changes

  • [flake8-pyi] Respect pep8_naming.classmethod-decorators settings when determining if a method is a classmethod in custom-type-var-return-type (PYI019) (#13162)
  • [flake8-pyi] Teach various rules that annotations might be stringized (#12951)
  • [pylint] Avoid no-self-use for attrs-style validators (#13166)
  • [pylint] Recurse into subscript subexpressions when searching for list/dict lookups (PLR1733, PLR1736) (#13186)
  • [pyupgrade] Detect aiofiles.open calls in UP015 (#13173)
  • [pyupgrade] Mark sys.version_info[0] < 3 and similar comparisons as outdated (UP036) (#13175)

CLI

  • Enrich messages of SARIF results (#13180)
  • Handle singular case for incompatible rules warning in ruff format output (#13212)

Bug fixes

  • [pydocstyle] Improve heuristics for detecting Google-style docstrings (#13142)
  • [refurb] Treat sep arguments with effects as unsafe removals (FURB105) (#13165)

0.6.3

Preview features

  • [flake8-simplify] Extend open-file-with-context-handler to work with dbm.sqlite3 (SIM115) (#13104)
  • [pycodestyle] Disable E741 in stub files (.pyi) (#13119)
  • [pydoclint] Avoid DOC201 on explicit returns in functions that only return None (#13064)

Rule changes

  • [flake8-async] Disable check for asyncio before Python 3.11 (ASYNC109) (#13023)

Bug fixes

  • [FastAPI] Avoid introducing invalid syntax in fix for fast-api-non-annotated-dependency (FAST002) (#13133)
  • [flake8-implicit-str-concat] Normalize octals before merging concatenated strings in single-line-implicit-string-concatenation (ISC001) (#13118)
  • [flake8-pytest-style] Improve help message for pytest-incorrect-mark-parentheses-style (PT023) (#13092)
  • [pylint] Avoid autofix for calls that aren't min or max as starred expression (PLW3301) (#13089)
  • [ruff] Add datetime.time, datetime.tzinfo, and datetime.timezone as immutable function calls (RUF009) (#13109)
  • [ruff] Extend comment deletion for RUF100 to include trailing text from noqa directives while preserving any following comments on the same line, if any (#13105)
  • Fix dark theme on initial page load for the Ruff playground (#13077)

... (truncated)

Commits
  • 65cc6ec Bump version to 0.6.4 (#13253)
  • 66fe226 [red-knot] fix lookup of nonlocal names in deferred annotations (#13236)
  • e965f9c [red-knot] Infer Unknown for the loop var in async for loops (#13243)
  • 0512428 [red-knot] Emit a diagnostic if the value of a starred expression or a `yield...
  • 46a4573 [red-knot] Add type inference for basic for loops (#13195)
  • 5728909 Make mypy pass on black in knot_benchmark (#13235)
  • 9d1bd7a [pylint] removed dunder methods in Python 3 (PLW3201) (#13194)
  • e37bde4 [ruff] implement useless if-else (RUF034) (#13218)
  • 862bd0c [red-knot] Add debug assert to check for duplicate definitions (#13214)
  • e1e9143 [red-knot] Handle multiple comprehension targets (#13213)
  • Additional commits viewable in compare view

Updates tox from 4.17.1 to 4.18.1

Release notes

Sourced from tox's releases.

4.18.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.18.0...4.18.1

4.18.0

What's Changed

Full Changelog: tox-dev/tox@4.17.1...4.18.0

Changelog

Sourced from tox's changelog.

v4.18.1 (2024-09-07)

Bugfixes - 4.18.1

- Fix and test the string spec for the ``sys.executable`` interpreter (introduced in :pull:`3325`)
  - by :user:`hroncok` (:issue:`3327`)

Improved Documentation - 4.18.1

  • Changes the tox_env_teardown docstring to explain the hook is called after a tox env was teared down. (:issue:3305)

v4.18.0 (2024-08-13)

Features - 4.18.0

- Suppress spinner in parallel runs in CI - by :user:`ziima`. (:issue:`3318`)

Bugfixes - 4.18.0

  • Boost temporary directories cleanup in tests - by :user:ziima. (:issue:3278)
  • Fix absolute base python paths conflicting - by :user:gaborbernat. (:issue:3325)
Commits

Updates types-jsonschema from 4.23.0.20240712 to 4.23.0.20240813

Commits

Updates ansible-compat from 24.7.0 to 24.8.0

Release notes

Sourced from ansible-compat's releases.

v24.8.0

Bugfixes

Commits

Updates ansible-core from 2.17.2 to 2.17.3

Release notes

Sourced from ansible-core's releases.

v2.17.3

Changelog

See the full changelog for the changes included in this release.

Release Artifacts

v2.17.3rc1

Changelog

See the full changelog for the changes included in this release.

Release Artifacts

Commits

Updates build from 1.2.1 to 1.2.2

Release notes

Sourced from build's releases.

Version 1.2.2

What's Changed

  • Add editable to builder.get_requries_for_build's static types (PR #764, fixes issue #763)
  • Include artifact attestations in our release (PR #782)
  • Fix typing compatibility with typed pyproject-hooks (PR #788)
  • Mark more tests with network (PR #808)
  • Add more intersphinx links to docs (PR #804)
  • Make uv optional for tests (PR #807 and #813)

New Contributors

Full Changelog: pypa/build@1.2.1...1.2.2

Changelog

Sourced from build's changelog.

1.2.2 (2024-09-06)

  • Add editable to builder.get_requries_for_build's static types (PR :pr:764, fixes issue :issue:763)
  • Include artifact attestations in our release (PR :pr:782)
  • Fix typing compatibility with typed pyproject-hooks (PR :pr:788)
  • Mark more tests with network (PR :pr:808)
  • Add more intersphinx links to docs (PR :pr:804)
  • Make uv optional for tests (PR :pr:807 and :pr:813)
Commits
  • 3b0b5d0 docs: changelog for 1.2.2 (#812)
  • b44a886 docs: more info in README
  • 8e19948 build(deps): bump actions/attest-build-provenance in the actions group (#814)
  • b90956c tests: add module case to uv detection (#813)
  • e79f1b3 ci: remove bot comments from generated release notes (#810)
  • f6da25a pre-commit: bump repositories (#801)
  • 9a52c50 tests: optional uv (#807)
  • 553b700 docs: Add a few intersphinx links to the Python Packaging User Guide (#804)
  • 336efcb build(deps): bump actions/attest-build-provenance in the actions group (#802)
  • 73b7213 tests: mark more network tests (#808)
  • Additional commits viewable in compare view

Updates cachetools from 5.4.0 to 5.5.0

Changelog

Sourced from cachetools's changelog.

v5.5.0 (2024-08-18)

  • TTLCache.expire() returns iterable of expired (key, value) pairs.

  • TLRUCache.expire() returns iterable of expired (key, value) pairs.

  • Documentation improvements.

  • Update CI environment.

Commits

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates cffi from 1.17.0 to 1.17.1

Release notes

Sourced from cffi's releases.

v1.17.1

  • Fix failing distutils.msvc9compiler imports under Windows (#118).
  • ffibuilder.emit_python_code() and ffibuiler.emit_c_code() accept file-like objects (#115).
  • ffiplatform calls are bypassed by ffibuilder.emit_python_code() and ffibuilder.emit_c_code() (#81).

Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1

Commits
  • 38bd6be release 1.17.1
  • ba10180 update whatsnew.rst for 1.17.1 (#121)
  • 61deb5f add yet another flag to recompile() to avoid calling ffiplatform (#81)
  • 1c292c1 Handle distutils without distutils.msvc9compiler.MSVCCompiler class (#118)
  • 182ffc4 Allow writing generated code to a file-like object. (#115)
  • See full diff in compare view

Updates cryptography from 43.0.0 to 43.0.1

Changelog

Sourced from cryptography's changelog.

43.0.1 - 2024-09-03


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

.. _v43-0-0:

Commits

Updates griffe from 0.48.0 to 1.2.0

Release notes

Sourced from griffe's releases.

1.2.0

1.2.0 - 2024-08-23

Compare with 1.1.1

Features

  • Support attribute syntax in __all__ values (ad99794 by Timothée Mazzucotelli). Issue-316

1.1.1

1.1.1 - 2024-08-20

Compare with 1.1.0

Bug Fixes

  • Pre-emptively expand __all__ values and wildcard imports before firing the on_package_loaded event (21b3780 by Timothée Mazzucotelli).

1.1.0

1.1.0 - 2024-08-17

Compare with 1.0.0

Features

  • Add on_wildcard_expansion event (c6bc6fa by Timothée Mazzucotelli). Issue-282
  • Add on_alias event (a760a8c by Timothée Mazzucotelli). Issue-282
  • Pass loader to on_package_loaded hooks (7f82dc3 by Timothée Mazzucotelli).

1.0.0

1.0.0 - 2024-08-15

Compare with 0.49.0

V1! 🚀 🔥 🌈

Breaking changes

Highlights:

  • Extensions inherit from Extension, (VisitorExtension and InspectorExtension are removed)
  • Members are serialized (as_dict/JSON) as a dictionary instead of a list
  • All objects are available in the top-level griffe module, nowhere else

Removed objects:

  • all modules under the griffe package
  • the griffe.DocstringWarningCallable class
  • the griffe.When class
  • the griffe.ExtensionType type

... (truncated)

Changelog

Sourced from griffe's changelog.

1.2.0 - 2024-08-23

Compare with 1.1.1

Features

  • Support attribute syntax in __all__ values (ad99794 by Timothée Mazzucotelli). Issue-316

1.1.1 - 2024-08-20

Compare with 1.1.0

Bug Fixes

  • Pre-emptively expand __all__ values and wildcard imports before firing the on_package_loaded event (21b3780 by Timothée Mazzucotelli).

1.1.0 - 2024-08-17

Compare with 1.0.0

Features

  • Add on_wildcard_expansion event (c6bc6fa by Timothée Mazzucotelli). Issue-282
  • Add on_alias event (a760a8c by Timothée Mazzucotelli). Issue-282
  • Pass loader to on_package_loaded hooks (7f82dc3 by Timothée Mazzucotelli).

1.0.0 - 2024-08-15

Compare with 0.49.0

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

| Package | From | To |
| --- | --- | --- |
| [check-jsonschema](https://github.com/python-jsonschema/check-jsonschema) | `0.29.1` | `0.29.2` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.15.4` | `3.16.0` |
| [mypy](https://github.com/python/mypy) | `1.11.1` | `1.11.2` |
| [pydoclint](https://github.com/jsh9/pydoclint) | `0.5.6` | `0.5.7` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.2.6` | `3.2.7` |
| [ruff](https://github.com/astral-sh/ruff) | `0.5.7` | `0.6.4` |
| [tox](https://github.com/tox-dev/tox) | `4.17.1` | `4.18.1` |
| [types-jsonschema](https://github.com/python/typeshed) | `4.23.0.20240712` | `4.23.0.20240813` |
| [ansible-compat](https://github.com/ansible/ansible-compat) | `24.7.0` | `24.8.0` |
| [ansible-core](https://github.com/ansible/ansible) | `2.17.2` | `2.17.3` |
| [astroid](https://github.com/pylint-dev/astroid) | `3.2.4` | `3.3.2` |
| [build](https://github.com/pypa/build) | `1.2.1` | `1.2.2` |
| [cachetools](https://github.com/tkem/cachetools) | `5.4.0` | `5.5.0` |
| [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
| [cffi](https://github.com/python-cffi/cffi) | `1.17.0` | `1.17.1` |
| [cryptography](https://github.com/pyca/cryptography) | `43.0.0` | `43.0.1` |
| [griffe](https://github.com/mkdocstrings/griffe) | `0.48.0` | `1.2.0` |
| [idna](https://github.com/kjd/idna) | `3.7` | `3.8` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `8.2.0` | `8.4.0` |
| [linkchecker](https://github.com/linkchecker/linkchecker) | `10.4.0` | `10.5.0` |
| [markdown](https://github.com/Python-Markdown/markdown) | `3.6` | `3.7` |
| [mkdocs](https://github.com/mkdocs/mkdocs) | `1.6.0` | `1.6.1` |
| [mkdocs-autorefs](https://github.com/mkdocstrings/autorefs) | `1.0.1` | `1.2.0` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.5.31` | `9.5.34` |
| [mkdocstrings](https://github.com/mkdocstrings/mkdocstrings) | `0.25.2` | `0.26.1` |
| [mkdocstrings-python](https://github.com/mkdocstrings/python) | `1.10.7` | `1.11.1` |
| [paginate](https://github.com/Signum/paginate) | `0.5.6` | `0.5.7` |
| [pipdeptree](https://github.com/tox-dev/pipdeptree) | `2.23.1` | `2.23.3` |
| [platformdirs](https://github.com/platformdirs/platformdirs) | `4.2.2` | `4.3.1` |
| [rich](https://github.com/Textualize/rich) | `13.7.1` | `13.8.0` |
| [soupsieve](https://github.com/facelessuser/soupsieve) | `2.5` | `2.6` |
| [tomlkit](https://github.com/sdispater/tomlkit) | `0.13.0` | `0.13.2` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.26.3` | `20.26.4` |
| [watchdog](https://github.com/gorakhargosh/watchdog) | `4.0.1` | `5.0.2` |
| [zipp](https://github.com/jaraco/zipp) | `3.19.2` | `3.20.1` |



Updates `check-jsonschema` from 0.29.1 to 0.29.2
- [Release notes](https://github.com/python-jsonschema/check-jsonschema/releases)
- [Changelog](https://github.com/python-jsonschema/check-jsonschema/blob/main/CHANGELOG.rst)
- [Commits](python-jsonschema/check-jsonschema@0.29.1...0.29.2)

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

Updates `mypy` from 1.11.1 to 1.11.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11.1...v1.11.2)

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

Updates `pylint` from 3.2.6 to 3.2.7
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.6...v3.2.7)

Updates `ruff` from 0.5.7 to 0.6.4
- [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.5.7...0.6.4)

Updates `tox` from 4.17.1 to 4.18.1
- [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.17.1...4.18.1)

Updates `types-jsonschema` from 4.23.0.20240712 to 4.23.0.20240813
- [Commits](https://github.com/python/typeshed/commits)

Updates `ansible-compat` from 24.7.0 to 24.8.0
- [Release notes](https://github.com/ansible/ansible-compat/releases)
- [Commits](ansible/ansible-compat@v24.7.0...v24.8.0)

Updates `ansible-core` from 2.17.2 to 2.17.3
- [Release notes](https://github.com/ansible/ansible/releases)
- [Commits](ansible/ansible@v2.17.2...v2.17.3)

Updates `astroid` from 3.2.4 to 3.3.2
- [Release notes](https://github.com/pylint-dev/astroid/releases)
- [Changelog](https://github.com/pylint-dev/astroid/blob/main/ChangeLog)
- [Commits](pylint-dev/astroid@v3.2.4...v3.3.2)

Updates `build` from 1.2.1 to 1.2.2
- [Release notes](https://github.com/pypa/build/releases)
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst)
- [Commits](pypa/build@1.2.1...1.2.2)

Updates `cachetools` from 5.4.0 to 5.5.0
- [Changelog](https://github.com/tkem/cachetools/blob/master/CHANGELOG.rst)
- [Commits](tkem/cachetools@v5.4.0...v5.5.0)

Updates `certifi` from 2024.7.4 to 2024.8.30
- [Commits](certifi/python-certifi@2024.07.04...2024.08.30)

Updates `cffi` from 1.17.0 to 1.17.1
- [Release notes](https://github.com/python-cffi/cffi/releases)
- [Commits](python-cffi/cffi@v1.17.0...v1.17.1)

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

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

Updates `idna` from 3.7 to 3.8
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.7...v3.8)

Updates `importlib-metadata` from 8.2.0 to 8.4.0
- [Release notes](https://github.com/python/importlib_metadata/releases)
- [Changelog](https://github.com/python/importlib_metadata/blob/main/NEWS.rst)
- [Commits](python/importlib_metadata@v8.2.0...v8.4.0)

Updates `linkchecker` from 10.4.0 to 10.5.0
- [Release notes](https://github.com/linkchecker/linkchecker/releases)
- [Changelog](https://github.com/linkchecker/linkchecker/blob/master/doc/changelog.txt)
- [Commits](linkchecker/linkchecker@v10.4.0...v10.5.0)

Updates `markdown` from 3.6 to 3.7
- [Release notes](https://github.com/Python-Markdown/markdown/releases)
- [Changelog](https://github.com/Python-Markdown/markdown/blob/master/docs/changelog.md)
- [Commits](Python-Markdown/markdown@3.6...3.7)

Updates `mkdocs` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/mkdocs/mkdocs/releases)
- [Commits](mkdocs/mkdocs@1.6.0...1.6.1)

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

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

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

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

Updates `paginate` from 0.5.6 to 0.5.7
- [Changelog](https://github.com/Pylons/paginate/blob/master/CHANGELOG.txt)
- [Commits](Pylons/paginate@0.5.6...0.5.7)

Updates `pipdeptree` from 2.23.1 to 2.23.3
- [Release notes](https://github.com/tox-dev/pipdeptree/releases)
- [Commits](tox-dev/pipdeptree@2.23.1...2.23.3)

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

Updates `rich` from 13.7.1 to 13.8.0
- [Release notes](https://github.com/Textualize/rich/releases)
- [Changelog](https://github.com/Textualize/rich/blob/master/CHANGELOG.md)
- [Commits](Textualize/rich@v13.7.1...v13.8.0)

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

Updates `tomlkit` from 0.13.0 to 0.13.2
- [Release notes](https://github.com/sdispater/tomlkit/releases)
- [Changelog](https://github.com/python-poetry/tomlkit/blob/master/CHANGELOG.md)
- [Commits](python-poetry/tomlkit@0.13.0...0.13.2)

Updates `virtualenv` from 20.26.3 to 20.26.4
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.26.3...20.26.4)

Updates `watchdog` from 4.0.1 to 5.0.2
- [Release notes](https://github.com/gorakhargosh/watchdog/releases)
- [Changelog](https://github.com/gorakhargosh/watchdog/blob/master/changelog.rst)
- [Commits](gorakhargosh/watchdog@v4.0.1...v5.0.2)

Updates `zipp` from 3.19.2 to 3.20.1
- [Release notes](https://github.com/jaraco/zipp/releases)
- [Changelog](https://github.com/jaraco/zipp/blob/main/NEWS.rst)
- [Commits](jaraco/zipp@v3.19.2...v3.20.1)

---
updated-dependencies:
- dependency-name: check-jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: filelock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mypy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydoclint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: types-jsonschema
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: ansible-compat
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: ansible-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: astroid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cachetools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: certifi
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cffi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cryptography
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: griffe
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: idna
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: importlib-metadata
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: linkchecker
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: markdown
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocs-autorefs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocs-material
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: mkdocstrings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: mkdocstrings-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: paginate
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pipdeptree
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: platformdirs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: soupsieve
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: tomlkit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: virtualenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: watchdog
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: zipp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
This won't be fixed until pylint 3.3.x
Copy link

sonarcloud bot commented Sep 9, 2024

@ansibuddy ansibuddy merged commit 2714d30 into main Sep 9, 2024
20 checks passed
@ansibuddy ansibuddy deleted the dependabot/pip/dot-config/dependencies-69d522d2a6 branch September 9, 2024 14:01
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