Skip to content

build(deps): bump the minor-and-patch group with 5 updates #646

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

Merged
merged 1 commit into from
Apr 7, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 7, 2025

Bumps the minor-and-patch group with 5 updates:

Package From To
authlib 1.5.1 1.5.2
pyflakes 3.3.1 3.3.2
rapidfuzz 3.12.2 3.13.0
typing-extensions 4.12.2 4.13.1
virtualenv 20.29.3 20.30.0

Updates authlib from 1.5.1 to 1.5.2

Release notes

Sourced from authlib's releases.

Version 1.5.2

Released on Apr 1, 2025

  • Forbid fragments in redirect_uris. #714
  • Fix invalid characters in error_description. #720
  • Add claims_cls parameter for client's parse_id_token method. #725
Changelog

Sourced from authlib's changelog.

Version 1.5.2

Released on Apr 1, 2025

  • Forbid fragments in redirect_uris. :issue:714
  • Fix invalid characters in error_description. :issue:720
  • Add claims_cls``` parameter for client's parse_id_token`` method. :issue:725
Commits
  • fb698d7 chore: release version 1.5.2
  • 29fbe66 Merge pull request #729 from azmeuk/714-redirect-uri-fragments
  • 2f1f971 Merge pull request #732 from azmeuk/731-request-discovery
  • c68daba Merge branch 'main' into 714-redirect-uri-fragments
  • c1f237d Merge pull request #728 from azmeuk/720-error-description
  • 35e210b Merge branch 'main' into 720-error-description
  • 80737a5 Merge pull request #727 from lepture/fix-725
  • 50960f7 docs: add changelog for claims_cls parameter
  • ca468d8 fix: request_object_signing_alg_values_supported 'none' and 'RS256'
  • 5394bc0 fix: forbid fragments in redirect_uris
  • Additional commits viewable in compare view

Updates pyflakes from 3.3.1 to 3.3.2

Changelog

Sourced from pyflakes's changelog.

3.3.2 (2025-03-31)

  • Fix crash with global / nonlocal in class bodies (regressed in 3.3.0)
Commits

Updates rapidfuzz from 3.12.2 to 3.13.0

Release notes

Sourced from rapidfuzz's releases.

Release 3.13.0

Added

  • add support for arrays of type 'w'
  • add support for any DTypeLike as dtype in cdist and cpdist

Changed

  • upgrade to rapidfuzz-cpp==3.3.2
Changelog

Sourced from rapidfuzz's changelog.

Changelog

[3.13.0] - 2025-04-03 ^^^^^^^^^^^^^^^^^^^^^ Added

* add support for arrays of type 'w'
* add support for any DTypeLike as dtype in ``cdist`` and ``cpdist``

Changed

  • upgrade to rapidfuzz-cpp==3.3.2

[3.12.2] - 2025-03-02 ^^^^^^^^^^^^^^^^^^^^^ Added

* added wheels for pypy 3.11

Changed

  • upgrade to Cython==3.0.12

[3.12.1] - 2025-01-30 ^^^^^^^^^^^^^^^^^^^^^ Fixed

* fix version number

[3.12.0] - 2025-01-16 ^^^^^^^^^^^^^^^^^^^^^ Changed

  • generate code for fallback imports to be better parseable for tools bundling Python applications into a single binary (examples are cx-freeze and pyinstaller)

Added

* added support for taskflow 3.9.0

[3.11.0] - 2024-12-17 ^^^^^^^^^^^^^^^^^^^^^ Performance

  • improve calculation of min score inside partial_ratio so it can skip more alignments

Added

</tr></table> 

... (truncated)

Commits
  • 07a5a6d update version
  • aa52f02 Bump pypa/cibuildwheel from 2.23.1 to 2.23.2 in the github-actions group
  • 9e3419a fix ci
  • e237aee upgrade rapidfuzz-cpp
  • 2830c31 add support for any DTypeLike as dtype in cdist and cpdist
  • d5390fa properly handle arrays with the new 'w' typecode
  • be26a60 hopefully fix regressions
  • ae01246 fix warnings on Python 3.13
  • 64be9b7 Bump pypa/cibuildwheel from 2.23.0 to 2.23.1 in the github-actions group
  • 5367c41 apply pre-commit
  • Additional commits viewable in compare view

Updates typing-extensions from 4.12.2 to 4.13.1

Release notes

Sourced from typing-extensions's releases.

4.13.1

This is a bugfix release fixing two edge cases that appear on old bugfix releases of CPython.

Bugfixes:

  • Fix regression in 4.13.0 on Python 3.10.2 causing a TypeError when using Concatenate. Patch by Daraan.
  • Fix TypeError when using evaluate_forward_ref on Python 3.10.1-2 and 3.9.8-10. Patch by Daraan.

4.13.0

New features:

  • Add typing_extensions.TypeForm from PEP 747. Patch by Jelle Zijlstra.
  • Add typing_extensions.get_annotations, a backport of inspect.get_annotations that adds features specified by PEP 649. Patches by Jelle Zijlstra and Alex Waygood.
  • Backport evaluate_forward_ref from CPython PR #119891 to evaluate ForwardRefs. Patch by Daraan, backporting a CPython PR by Jelle Zijlstra.

Bugfixes and changed features:

  • Update PEP 728 implementation to a newer version of the PEP. Patch by Jelle Zijlstra.
  • Copy the coroutine status of functions and methods wrapped with @typing_extensions.deprecated. Patch by Sebastian Rittau.
  • Fix bug where TypeAliasType instances could be subscripted even where they were not generic. Patch by Daraan.
  • Fix bug where a subscripted TypeAliasType instance did not have all attributes of the original TypeAliasType instance on older Python versions. Patch by Daraan and Alex Waygood.
  • Fix bug where subscripted TypeAliasType instances (and some other subscripted objects) had wrong parameters if they were directly subscripted with an Unpack object. Patch by Daraan.
  • Backport to Python 3.10 the ability to substitute ... in generic Callable aliases that have a Concatenate special form as their argument. Patch by Daraan.
  • Extended the Concatenate backport for Python 3.8-3.10 to now accept Ellipsis as an argument. Patch by Daraan.
  • Fix backport of get_type_hints to reflect Python 3.11+ behavior which does not add Union[..., NoneType] to annotations that have a None default value anymore. This fixes wrapping of Annotated in an unwanted Optional in such cases. Patch by Daraan.
  • Fix error in subscription of Unpack aliases causing nested Unpacks to not be resolved correctly. Patch by Daraan.
  • Backport CPython PR #124795: fix TypeAliasType not raising an error on non-tuple inputs for type_params. Patch by Daraan.
  • Fix that lists and ... could not be used for parameter expressions for TypeAliasType

... (truncated)

Changelog

Sourced from typing-extensions's changelog.

Release 4.13.1 (April 3, 2025)

Bugfixes:

  • Fix regression in 4.13.0 on Python 3.10.2 causing a TypeError when using Concatenate. Patch by Daraan.
  • Fix TypeError when using evaluate_forward_ref on Python 3.10.1-2 and 3.9.8-10. Patch by Daraan.

Release 4.13.0 (March 25, 2025)

No user-facing changes since 4.13.0rc1.

Release 4.13.0rc1 (March 18, 2025)

New features:

  • Add typing_extensions.TypeForm from PEP 747. Patch by Jelle Zijlstra.
  • Add typing_extensions.get_annotations, a backport of inspect.get_annotations that adds features specified by PEP 649. Patches by Jelle Zijlstra and Alex Waygood.
  • Backport evaluate_forward_ref from CPython PR #119891 to evaluate ForwardRefs. Patch by Daraan, backporting a CPython PR by Jelle Zijlstra.

Bugfixes and changed features:

  • Update PEP 728 implementation to a newer version of the PEP. Patch by Jelle Zijlstra.
  • Copy the coroutine status of functions and methods wrapped with @typing_extensions.deprecated. Patch by Sebastian Rittau.
  • Fix bug where TypeAliasType instances could be subscripted even where they were not generic. Patch by Daraan.
  • Fix bug where a subscripted TypeAliasType instance did not have all attributes of the original TypeAliasType instance on older Python versions. Patch by Daraan and Alex Waygood.
  • Fix bug where subscripted TypeAliasType instances (and some other subscripted objects) had wrong parameters if they were directly subscripted with an Unpack object. Patch by Daraan.
  • Backport to Python 3.10 the ability to substitute ... in generic Callable aliases that have a Concatenate special form as their argument. Patch by Daraan.
  • Extended the Concatenate backport for Python 3.8-3.10 to now accept Ellipsis as an argument. Patch by Daraan.
  • Fix backport of get_type_hints to reflect Python 3.11+ behavior which does not add Union[..., NoneType] to annotations that have a None default value anymore. This fixes wrapping of Annotated in an unwanted Optional in such cases. Patch by Daraan.
  • Fix error in subscription of Unpack aliases causing nested Unpacks to not be resolved correctly. Patch by Daraan.

... (truncated)

Commits
  • 45a8847 Prepare release 4.13.1 (#573)
  • f264e58 Move CI to "ubuntu-latest" (round 2) (#570)
  • 5ce0e69 Fix TypeError with evaluate_forward_ref on some 3.10 and 3.9 versions (#558)
  • 304f5cb Add SQLAlchemy to third-party daily tests (#561)
  • ebe2b94 Fix duplicated keywords for typing._ConcatenateGenericAlias in 3.10.2 (#557)
  • 9f93d6f Add intersphinx links for 3.13 typing features (#550)
  • c893401 Prepare release 4.13.0 (#555)
  • 6239d86 Use latest Python docs as intersphinx base rather than 3.12 docs (#549)
  • 671a337 Fix 'Test and lint' workflow running on forks (#551)
  • e77e8e2 Disable pyanalyze tests for now (#554)
  • Additional commits viewable in compare view

Updates virtualenv from 20.29.3 to 20.30.0

Release notes

Sourced from virtualenv's releases.

20.30.0

What's Changed

New Contributors

Full Changelog: pypa/virtualenv@20.29.3...20.30.0

Changelog

Sourced from virtualenv's changelog.

v20.30.0 (2025-03-31)

Features - 20.30.0

- Add support for `GraalPy <https://github.com/oracle/graalpython>`_. (:issue:`2832`)

Bugfixes - 20.30.0

  • Upgrade embedded wheels:

    • setuptools to 78.1.0 from 75.3.2 (:issue:2863)
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 minor-and-patch group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [authlib](https://github.com/lepture/authlib) | `1.5.1` | `1.5.2` |
| [pyflakes](https://github.com/PyCQA/pyflakes) | `3.3.1` | `3.3.2` |
| [rapidfuzz](https://github.com/rapidfuzz/RapidFuzz) | `3.12.2` | `3.13.0` |
| [typing-extensions](https://github.com/python/typing_extensions) | `4.12.2` | `4.13.1` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.29.3` | `20.30.0` |


Updates `authlib` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/lepture/authlib/releases)
- [Changelog](https://github.com/lepture/authlib/blob/main/docs/changelog.rst)
- [Commits](authlib/authlib@v1.5.1...v1.5.2)

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

Updates `rapidfuzz` from 3.12.2 to 3.13.0
- [Release notes](https://github.com/rapidfuzz/RapidFuzz/releases)
- [Changelog](https://github.com/rapidfuzz/RapidFuzz/blob/main/CHANGELOG.rst)
- [Commits](rapidfuzz/RapidFuzz@v3.12.2...v3.13.0)

Updates `typing-extensions` from 4.12.2 to 4.13.1
- [Release notes](https://github.com/python/typing_extensions/releases)
- [Changelog](https://github.com/python/typing_extensions/blob/main/CHANGELOG.md)
- [Commits](python/typing_extensions@4.12.2...4.13.1)

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

---
updated-dependencies:
- dependency-name: authlib
  dependency-version: 1.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: pyflakes
  dependency-version: 3.3.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: rapidfuzz
  dependency-version: 3.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: typing-extensions
  dependency-version: 4.13.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: virtualenv
  dependency-version: 20.30.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

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 Apr 7, 2025
@gadomski gadomski merged commit 1eb3b2b into main Apr 7, 2025
8 checks passed
@gadomski gadomski deleted the dependabot/pip/minor-and-patch-a769eb9772 branch April 7, 2025 13:12
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