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 31 updates #323

Closed

Conversation

dependabot[bot]
Copy link

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

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

Package From To
ansible-compat 24.8.0 24.9.0
antsibull-changelog 0.29.0 0.30.0
antsibull-core 3.0.2 3.1.0
antsibull-docs 2.13.1 2.14.0
azure-core 1.30.2 1.31.0
botocore 1.35.7 1.35.19
build 1.2.1 1.2.2
cffi 1.17.0 1.17.1
docutils 0.20.1 0.21.2
filelock 3.15.4 3.16.0
flake8 6.1.0 7.1.1
idna 3.8 3.9
importlib-metadata 6.2.1 8.5.0
importlib-resources 5.0.7 6.4.5
mdit-py-plugins 0.4.1 0.4.2
more-itertools 10.4.0 10.5.0
multidict 6.0.5 6.1.0
pkginfo 1.10.0 1.11.1
platformdirs 4.2.2 4.3.3
psycopg 3.1.18 3.2.1
psycopg-binary 3.1.18 3.2.1
pycodestyle 2.11.1 2.12.1
pydantic 2.8.2 2.9.1
pydantic-core 2.20.1 2.23.3
pyflakes 3.1.0 3.2.0
readme-renderer 43.0 44.0
rich 13.8.0 13.8.1
urllib3 1.26.20 2.2.3
virtualenv 20.26.3 20.26.4
yarl 1.9.8 1.11.1
zipp 3.20.1 3.20.2

Updates ansible-compat from 24.8.0 to 24.9.0

Release notes

Sourced from ansible-compat's releases.

v24.9.0

Enhancements

Bugfixes

Commits

Updates antsibull-changelog from 0.29.0 to 0.30.0

Release notes

Sourced from antsibull-changelog's releases.

0.30.0

Release Summary

Feature release.

Minor Changes

Changelog

Sourced from antsibull-changelog's changelog.

v0.30.0

Release Summary

Feature release.

Minor Changes

  • Allow to configure the used VCS in changelogs/config.yml. Valid choices are none (default), git, or auto. If set to git, or auto detects that the project is part of a Git repository, only non-ignored files will be copied to a temporary directory when trying to load information on Ansible modules, plugins and roles (ansible-community/antsibull-changelog#172, ansible-community/antsibull-changelog#175).
  • Antsibull-changelog now depends on the new package antsibull-docutils. This should not have any visible impact, expect potentially improved MarkDown output (ansible-community/antsibull-changelog#174).
  • Antsibull-changelog now depends on the new project antsibull-fileutils (ansible-community/antsibull-changelog#176).
  • If you are using argcomplete <https://pypi.org/project/argcomplete/>__ global completion, you can now tab-complete antsibull-changelog command lines. See Activating global completion <https://pypi.org/project/argcomplete/#activating-global-completion>__ in the argcomplete README for how to enable tab completion globally. This will also tab-complete Ansible commands such as ansible-playbook and ansible-test (ansible-community/antsibull-changelog#173).
Commits
  • bb1f78b Release 0.30.0.
  • 23d084f Prepare 0.30.0.
  • 066ef11 Add antsibull-fileutils dependency (#176)
  • c2f962f Docsite: add Community guide (#177)
  • f7fa371 Add VCS support; use to copy only non-ignored files for module/plugin/role de...
  • e7c4682 Use antsibull-docutils and remove code moved there (#174)
  • c15ad61 Make CLI startup faster, support tab completion with argcomplete (#173)
  • 2d34898 Remove pyre and poetry entries from gitignore.
  • d15b39f Remove pyre config files.
  • 1a2be8a Remove pyre (#171)
  • Additional commits viewable in compare view

Updates antsibull-core from 3.0.2 to 3.1.0

Release notes

Sourced from antsibull-core's releases.

3.1.0

Release Summary

Feature release adding a new dependency.

Minor Changes

Changelog

Sourced from antsibull-core's changelog.

v3.1.0

Release Summary

Feature release adding a new dependency.

Minor Changes

Commits

Updates antsibull-docs from 2.13.1 to 2.14.0

Release notes

Sourced from antsibull-docs's releases.

2.14.0

Release Summary

Feature release.

Minor Changes

Changelog

Sourced from antsibull-docs's changelog.

v2.14.0

Release Summary

Feature release.

Minor Changes

Commits
  • 9694434 Release 2.14.0.
  • 4e417e0 Prepare 2.14.0.
  • d6672f6 Update CI and instructions for antsibull-fileutils; add explicit dependency o...
  • ae85576 Docsite: add Community guide (#323)
  • 49cfcde Remove ansible-project mailing list from ansible.builtin links. (#325)
  • 2130935 Bump postcss from 8.4.41 to 8.4.44 in /src/sphinx_antsibull_ext/css (#324)
  • ae8f0d3 Show deprecation marker in module/plugin/role lists (#320)
  • 18a168d Post-release version bump.
  • See full diff in compare view

Updates azure-core from 1.30.2 to 1.31.0

Release notes

Sourced from azure-core's releases.

azure-core_1.31.0

1.31.0 (2024-09-12)

Features Added

  • Added azure.core.AzureClouds enum to represent the different Azure clouds.
  • Added two new credential protocol classes, SupportsTokenInfo and AsyncSupportsTokenInfo, to offer more extensibility in supporting various token acquisition scenarios. #36565
    • Each new protocol class defines a get_token_info method that returns an AccessTokenInfo object.
  • Added a new TokenRequestOptions class, which is a TypedDict with optional parameters, that can be used to define options for token requests through the get_token_info method. #36565
  • Added a new AccessTokenInfo class, which is returned by get_token_info implementations. This class contains the token, its expiration time, and optional additional information like when a token should be refreshed. #36565
  • BearerTokenCredentialPolicy and AsyncBearerTokenCredentialPolicy now first check if a credential has the get_token_info method defined. If so, the get_token_info method is used to acquire a token. Otherwise, the get_token method is used. #36565
    • These policies now also check the refresh_on attribute when determining if a new token request should be made.

Other Changes

  • The Azure Core OpenTelemetry tracing plugin will now be the preferred tracing plugin over the OpenCensus plugin. If both plugins are installed and opentelemetry is imported, then OpenTelemetry will be used to trace Azure SDK operations. #35050
Commits

Updates botocore from 1.35.7 to 1.35.19

Changelog

Sourced from botocore's changelog.

1.35.19

  • api-change:amplify: Doc only update to Amplify to explain platform setting for Next.js 14 SSG only applications
  • api-change:ivs: Updates to all tags descriptions.
  • api-change:ivschat: Updates to all tags descriptions.

1.35.18

  • api-change:cognito-idp: Added email MFA option to user pools with advanced security features.
  • api-change:elbv2: Correct incorrectly mapped error in ELBv2 waiters
  • api-change:emr: Update APIs to allow modification of ODCR options, allocation strategy, and InstanceTypeConfigs on running InstanceFleet clusters.
  • api-change:glue: AWS Glue is introducing two new optimizers for Apache Iceberg tables: snapshot retention and orphan file deletion. Customers can enable these optimizers and customize their configurations to perform daily maintenance tasks on their Iceberg tables based on their specific requirements.
  • api-change:mediaconvert: This release includes support for dynamic video overlay workflows, including picture-in-picture and squeezeback
  • api-change:rds: This release adds support for the os-upgrade pending maintenance action for Amazon Aurora DB clusters.
  • api-change:storagegateway: The S3 File Gateway now supports DSSE-KMS encryption. A new parameter EncryptionType is added to these APIs: CreateSmbFileShare, CreateNfsFileShare, UpdateSmbFileShare, UpdateNfsFileShare, DescribeSmbFileShares, DescribeNfsFileShares. Also, in favor of EncryptionType, KmsEncrypted is deprecated.
  • api-change:synthetics: This release introduces two features. The first is tag replication, which allows for the propagation of canary tags onto Synthetics related resources, such as Lambda functions. The second is a limit increase in canary name length, which has now been increased from 21 to 255 characters.

1.35.17

  • api-change:bedrock-agent: Amazon Bedrock Knowledge Bases now supports using inference profiles to increase throughput and improve resilience.
  • api-change:bedrock-agent-runtime: Amazon Bedrock Knowledge Bases now supports using inference profiles to increase throughput and improve resilience.
  • api-change:ecr: Added KMS_DSSE to EncryptionType
  • api-change:guardduty: Add support for new statistic types in GetFindingsStatistics.
  • api-change:lexv2-models: Support new Polly voice engines in VoiceSettings: long-form and generative
  • api-change:medialive: Adds AV1 Codec support, SRT ouputs, and MediaLive Anywhere support.

1.35.16

  • api-change:chime-sdk-voice: Documentation-only update that clarifies the ValidateE911Address action of the Amazon Chime SDK Voice APIs.
  • api-change:cognito-identity: This release adds sensitive trait to some required shapes.
  • api-change:pipes: This release adds support for customer managed KMS keys in Amazon EventBridge Pipe
  • api-change:securityhub: Documentation update for Security Hub
  • enhancement:AWSCRT: Update awscrt version to 0.21.5
  • enhancement:s3: Adds logic to gracefully handle invalid timestamps returned in the Expires header.

1.35.15

  • api-change:dynamodb: Doc-only update for DynamoDB. Added information about async behavior for TagResource and UntagResource APIs and updated the description of ResourceInUseException.
  • api-change:elbv2: Add paginators for the ELBv2 DescribeListenerCertificates and DescribeRules APIs. Fix broken waiter for the ELBv2 DescribeLoadBalancers API.
  • api-change:ivs-realtime: IVS Real-Time now offers customers the ability to broadcast to Stages using RTMP(S).
  • api-change:kafka: Amazon MSK Replicator can now replicate data to identically named topics between MSK clusters within the same AWS Region or across different AWS Regions.

... (truncated)

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 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 docutils from 0.20.1 to 0.21.2

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 flake8 from 6.1.0 to 7.1.1

Commits

Updates idna from 3.8 to 3.9

Changelog

Sourced from idna's changelog.

3.9 (2024-09-13) ++++++++++++++++

  • Update to Unicode 16.0.0
  • Deprecate setup.cfg in favour of pyproject.toml
  • Use ruff for code formatting

Thanks to Waket Zheng for contributions to this release.

Commits
  • 1b8800a Release v3.9
  • a1fd168 Merge pull request #190 from kjd/unicode-16
  • 7732c61 Merge branch 'master' into unicode-16
  • 4ed183d Refactor membership test
  • 762216b Format with ruff
  • 580ece9 Implement changes to UTS46 algorithm
  • 5343dd5 Update IDNA data to Unicode 16.0.0
  • d5b7696 Merge pull request #189 from kjd/fix-sigstore-action
  • 336fe1a Upgrade gh-action-sigstore-python to v3.0.0
  • 3a26791 Merge pull request #186 from kjd/format-code
  • Additional commits viewable in compare view

Updates importlib-metadata from 6.2.1 to 8.5.0

Changelog

Sourced from importlib-metadata's changelog.

v8.5.0

Features

  • Deferred import of zipfile.Path (#502)
  • Deferred import of json (#503)
  • Rely on zipp overlay for zipfile.Path.

v8.4.0

Features

  • Deferred import of inspect for import performance. (#499)

v8.3.0

Features

  • Disallow passing of 'dist' to EntryPoints.select.

v8.2.0

Features

  • Add SimplePath to importlib_metadata.all. (#494)

v8.1.0

Features

  • Prioritize valid dists to invalid dists when retrieving by name. (#489)

v8.0.0

... (truncated)

Commits
  • b34810b Finalize
  • 8c1d1fa Merge pull request #501 from Avasam/Pass-mypy-and-link-issues
  • afa39e8 Back out changes to tests._path
  • 8b909f9 Merge pull request #503 from danielhollas/defer-json
  • 2a3f50d Add news fragment.
  • 3f78dc1 Add comment to protect the deferred import.
  • 18eb2da Revert "Defer platform import"
  • 58832f2 Merge pull request #502 from danielhollas/defer-zipp
  • e3ce33b Add news fragment.
  • d11b67f Add comment to protect the deferred import.
  • Additional commits viewable in compare view

Updates importlib-resources from 5.0.7 to 6.4.5

Changelog

Sourced from importlib-resources's changelog.

v6.4.5

Bugfixes

  • Omit sentinel values from a namespace path. (#311)

v6.4.4

No significant changes.

v6.4.3

Bugfixes

  • When inferring the caller in files()python/cpython#123085

v6.4.2

Bugfixes

  • Merged fix for UTF-16 BOM handling in functional tests. (#312)

v6.4.1

Bugfixes

  • python/cpython#121735

v6.4.0

Features

  • The functions is_resource(),

... (truncated)

Commits
  • 284148b Finalize
  • 63a7bcb Merge pull request #315 from python/bugfix/311-non-path-namespace-paths
  • 2c145c5 Omit sentinel values from a namespace path.
  • 47d73b1 Add test capturing failure when resolving the MultiplexedPath for a namespace...
  • 4875bc5 Add type annotations for _candidate_paths
  • d84ca37 Fix typo in _temp_path comment.
  • 1a6fef2 Merge https://github.com/jaraco/skeleton
  • 790fa6e Include the trailing slash in disable_error_code(overload-overlap), also requ...
  • 2beb8b0 Add support for linking usernames.
  • 0c326f3 Add a degenerate nitpick_ignore for downstream consumers. Add a 'local' comme...
  • Additional commits viewable in compare view

Updates mdit-py-plugins from 0.4.1 to 0.4.2

Release notes

Sourced from mdit-py-plugins's releases.

v0.4.2

What's Changed

New Contributors

Full Changelog: executablebooks/mdit-py-plugins@v0.4.1...v0.4.2

Changelog

Sourced from mdit-py-plugins's changelog.

0.4.2 - 2024-09-09

  • 👌 Improve parsing of nested amsmath

    The previous logic was problematic for amsmath blocks nested in other blocs (such as blockquotes)

    The new parsing code now principally follows the logic in markdown_it/rules_block/fence.py (see also https://spec.commonmark.org/0.30/#fenced-code-blocks), except that:

    1. it allows for a closing tag on the same line as the opening tag, and
    2. it does not allow for an opening tag without closing tag (i.e. no auto-closing)
  • ✨ Add allowed option for inline/block attributes

    The allowed option accepts a list of allowed attribute names. If not None, any attributes not in this list will be removed and placed in the token's meta under the key "insecure_attrs".

Commits

Updates more-itertools from 10.4.0 to 10.5.0

Release notes

Sourced from more-itertools's releases.

v10.5.0

What's Changed

Full Changelog: more-itertools/more-itertools@v10.4.0...v10.5.0

Commits
  • 4998a25 Merge pull request #906 from more-itertools/version-10.5.0
  • b585bb5 Version notes for 10.5.0
  • 2f9036c Bump version: 10.4.0 → 10.5.0
  • 7384f9e Merge pull request #905 from more-itertools/issue-887
  • c381a42 Fix types.UnionType for 3.10+
  • 35f8e41 Merge pull request #903 from more-itertools/issue-902
  • ebe42b0 Reduce groupby.next calls in all_equal
  • 4f4217c Fix issue 897
  • 390a3db Merge pull request #899 from more-itertools/issue-896-all-equal
  • fa05e90 Use loops
  • Additional commits viewable in compare view

Updates multidict from 6.0.5 to 6.1.0

Release notes

Sourced from multidict's releases.

6.1.0

Bug fixes

  • Covered the unreachable code path in multidict._multidict_base._abc_itemsview_register() with typing -- by :user:skinnyBat.

    Related issues and pull requests on GitHub: #928.

Features

  • Added support for Python 3.13 -- by :user:bdraco.

    Related issues and pull requests on GitHub: #1002.

Removals and backward incompatible breaking changes

  • Removed Python 3.7 support -- by :user:bdraco.

    Related issues and pull requests on GitHub: #997.

Contributor-facing changes

  • Added tests to have full code coverage of the multidict._multidict_base._viewbaseset_richcmp() function -- by :user:skinnyBat.

    Related issues and pull requests on GitHub: #928.

... (truncated)

Changelog

Sourced from multidict's changelog.

6.1.0 (2024-09-09)

Bug fixes

  • Covered the unreachable code path in multidict._multidict_base._abc_itemsview_register() with typing -- by :user:skinnyBat.

    Related issues and pull requests on GitHub: :issue:928.

Features

  • Added support for Python 3.13 -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:1002.

Removals and backward incompatible breaking changes

  • Removed Python 3.7 support -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:997.

Contributor-facing changes

  • Added tests to have full code coverage of the multidict._multidict_base._viewbaseset_richcmp() function -- by :user:skinnyBat.

    Related issues and pull requests on GitHub:

... (truncated)

Commits

Updates pkginfo from 1.10.0 to 1.11.1

Updates platformdirs from 4.2.2 to 4.3.3

Release notes

Sourced from platformdirs's releases.

4.3.3

What's Changed

  • Update check.yml by

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

| Package | From | To |
| --- | --- | --- |
| [ansible-compat](https://github.com/ansible/ansible-compat) | `24.8.0` | `24.9.0` |
| [antsibull-changelog](https://github.com/ansible-community/antsibull-changelog) | `0.29.0` | `0.30.0` |
| [antsibull-core](https://github.com/ansible-community/antsibull-core) | `3.0.2` | `3.1.0` |
| [antsibull-docs](https://github.com/ansible-community/antsibull-docs) | `2.13.1` | `2.14.0` |
| [azure-core](https://github.com/Azure/azure-sdk-for-python) | `1.30.2` | `1.31.0` |
| [botocore](https://github.com/boto/botocore) | `1.35.7` | `1.35.19` |
| [build](https://github.com/pypa/build) | `1.2.1` | `1.2.2` |
| [cffi](https://github.com/python-cffi/cffi) | `1.17.0` | `1.17.1` |
| [docutils](https://docutils.sourceforge.io) | `0.20.1` | `0.21.2` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.15.4` | `3.16.0` |
| [flake8](https://github.com/pycqa/flake8) | `6.1.0` | `7.1.1` |
| [idna](https://github.com/kjd/idna) | `3.8` | `3.9` |
| [importlib-metadata](https://github.com/python/importlib_metadata) | `6.2.1` | `8.5.0` |
| [importlib-resources](https://github.com/python/importlib_resources) | `5.0.7` | `6.4.5` |
| [mdit-py-plugins](https://github.com/executablebooks/mdit-py-plugins) | `0.4.1` | `0.4.2` |
| [more-itertools](https://github.com/more-itertools/more-itertools) | `10.4.0` | `10.5.0` |
| [multidict](https://github.com/aio-libs/multidict) | `6.0.5` | `6.1.0` |
| [pkginfo](https://code.launchpad.net/~tseaver/pkginfo/trunk) | `1.10.0` | `1.11.1` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.2.2` | `4.3.3` |
| [psycopg](https://github.com/psycopg/psycopg) | `3.1.18` | `3.2.1` |
| [psycopg-binary](https://github.com/psycopg/psycopg) | `3.1.18` | `3.2.1` |
| [pycodestyle](https://github.com/PyCQA/pycodestyle) | `2.11.1` | `2.12.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.8.2` | `2.9.1` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.20.1` | `2.23.3` |
| [pyflakes](https://github.com/PyCQA/pyflakes) | `3.1.0` | `3.2.0` |
| [readme-renderer](https://github.com/pypa/readme_renderer) | `43.0` | `44.0` |
| [rich](https://github.com/Textualize/rich) | `13.8.0` | `13.8.1` |
| [urllib3](https://github.com/urllib3/urllib3) | `1.26.20` | `2.2.3` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.26.3` | `20.26.4` |
| [yarl](https://github.com/aio-libs/yarl) | `1.9.8` | `1.11.1` |
| [zipp](https://github.com/jaraco/zipp) | `3.20.1` | `3.20.2` |



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

Updates `antsibull-changelog` from 0.29.0 to 0.30.0
- [Release notes](https://github.com/ansible-community/antsibull-changelog/releases)
- [Changelog](https://github.com/ansible-community/antsibull-changelog/blob/main/CHANGELOG.rst)
- [Commits](ansible-community/antsibull-changelog@0.29.0...0.30.0)

Updates `antsibull-core` from 3.0.2 to 3.1.0
- [Release notes](https://github.com/ansible-community/antsibull-core/releases)
- [Changelog](https://github.com/ansible-community/antsibull-core/blob/main/CHANGELOG.rst)
- [Commits](ansible-community/antsibull-core@3.0.2...3.1.0)

Updates `antsibull-docs` from 2.13.1 to 2.14.0
- [Release notes](https://github.com/ansible-community/antsibull-docs/releases)
- [Changelog](https://github.com/ansible-community/antsibull-docs/blob/main/CHANGELOG.rst)
- [Commits](ansible-community/antsibull-docs@2.13.1...2.14.0)

Updates `azure-core` from 1.30.2 to 1.31.0
- [Release notes](https://github.com/Azure/azure-sdk-for-python/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-python/blob/main/doc/esrp_release.md)
- [Commits](Azure/azure-sdk-for-python@azure-core_1.30.2...azure-core_1.31.0)

Updates `botocore` from 1.35.7 to 1.35.19
- [Changelog](https://github.com/boto/botocore/blob/develop/CHANGELOG.rst)
- [Commits](boto/botocore@1.35.7...1.35.19)

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 `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 `docutils` from 0.20.1 to 0.21.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 `flake8` from 6.1.0 to 7.1.1
- [Commits](PyCQA/flake8@6.1.0...7.1.1)

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

Updates `importlib-metadata` from 6.2.1 to 8.5.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@v6.2.1...v8.5.0)

Updates `importlib-resources` from 5.0.7 to 6.4.5
- [Release notes](https://github.com/python/importlib_resources/releases)
- [Changelog](https://github.com/python/importlib_resources/blob/main/NEWS.rst)
- [Commits](python/importlib_resources@v5.0.7...v6.4.5)

Updates `mdit-py-plugins` from 0.4.1 to 0.4.2
- [Release notes](https://github.com/executablebooks/mdit-py-plugins/releases)
- [Changelog](https://github.com/executablebooks/mdit-py-plugins/blob/master/CHANGELOG.md)
- [Commits](executablebooks/mdit-py-plugins@v0.4.1...v0.4.2)

Updates `more-itertools` from 10.4.0 to 10.5.0
- [Release notes](https://github.com/more-itertools/more-itertools/releases)
- [Commits](more-itertools/more-itertools@v10.4.0...v10.5.0)

Updates `multidict` from 6.0.5 to 6.1.0
- [Release notes](https://github.com/aio-libs/multidict/releases)
- [Changelog](https://github.com/aio-libs/multidict/blob/master/CHANGES.rst)
- [Commits](aio-libs/multidict@v6.0.5...v6.1.0)

Updates `pkginfo` from 1.10.0 to 1.11.1

Updates `platformdirs` from 4.2.2 to 4.3.3
- [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.2.2...4.3.3)

Updates `psycopg` from 3.1.18 to 3.2.1
- [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst)
- [Commits](psycopg/psycopg@3.1.18...3.2.1)

Updates `psycopg-binary` from 3.1.18 to 3.2.1
- [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst)
- [Commits](psycopg/psycopg@3.1.18...3.2.1)

Updates `pycodestyle` from 2.11.1 to 2.12.1
- [Release notes](https://github.com/PyCQA/pycodestyle/releases)
- [Changelog](https://github.com/PyCQA/pycodestyle/blob/main/CHANGES.txt)
- [Commits](PyCQA/pycodestyle@2.11.1...2.12.1)

Updates `pydantic` from 2.8.2 to 2.9.1
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.9.1)

Updates `pydantic-core` from 2.20.1 to 2.23.3
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.20.1...v2.23.3)

Updates `pyflakes` from 3.1.0 to 3.2.0
- [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst)
- [Commits](PyCQA/pyflakes@3.1.0...3.2.0)

Updates `readme-renderer` from 43.0 to 44.0
- [Release notes](https://github.com/pypa/readme_renderer/releases)
- [Changelog](https://github.com/pypa/readme_renderer/blob/main/CHANGES.rst)
- [Commits](pypa/readme_renderer@43.0...44.0)

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

Updates `urllib3` from 1.26.20 to 2.2.3
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@1.26.20...2.2.3)

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 `yarl` from 1.9.8 to 1.11.1
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.9.8...v1.11.1)

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

---
updated-dependencies:
- dependency-name: ansible-compat
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: antsibull-changelog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: antsibull-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: antsibull-docs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: azure-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: botocore
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: cffi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: docutils
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: filelock
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: flake8
  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-major
  dependency-group: dependencies
- dependency-name: importlib-resources
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: mdit-py-plugins
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: more-itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: multidict
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pkginfo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: platformdirs
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: psycopg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: psycopg-binary
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pycodestyle
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pydantic-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pyflakes
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: readme-renderer
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: rich
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: urllib3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: virtualenv
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: yarl
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: zipp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Author

dependabot bot commented on behalf of github Sep 15, 2024

The following labels could not be found: dependabot-deps-updates.

Copy link
Author

dependabot bot commented on behalf of github Sep 22, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Sep 22, 2024
auto-merge was automatically disabled September 22, 2024 03:58

Pull request was closed

@dependabot dependabot bot deleted the dependabot/pip/dot-config/dependencies-4fa2e1476a branch September 22, 2024 03:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging this pull request may close these issues.

1 participant