Bumpstyping-extensions from 4.12.2 to 4.13.2.
Release notes
Sourced fromtyping-extensions's releases.
4.13.2
- Fix
TypeError
when taking the union oftyping_extensions.TypeAliasType
and atyping.TypeAliasType
on Python 3.12 and 3.13.Patch byJoren Hammudoglu. - Backport from CPython PR#132160to avoid having user arguments shadowed in generated
__new__
by@typing_extensions.deprecated
.Patch byVictorien Plot.
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 usingConcatenate
.Patch byDaraan. - Fix
TypeError
when usingevaluate_forward_ref
on Python 3.10.1-2 and 3.9.8-10.Patch byDaraan.
4.13.0
New features:
- Add
typing_extensions.TypeForm
from PEP 747. Patch byJelle Zijlstra. - Add
typing_extensions.get_annotations
, a backport ofinspect.get_annotations
that adds features specifiedby PEP 649. Patches by Jelle Zijlstra and Alex Waygood. - Backport
evaluate_forward_ref
from CPython PR#119891 to evaluateForwardRef
s.Patch byDaraan, 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 wrappedwith
@typing_extensions.deprecated
. Patch by Sebastian Rittau. - Fix bug where
TypeAliasType
instances could be subscripted evenwhere they were not generic. Patch byDaraan. - Fix bug where a subscripted
TypeAliasType
instance did not have allattributes of the originalTypeAliasType
instance on older Python versions.Patch byDaraan and Alex Waygood. - Fix bug where subscripted
TypeAliasType
instances (and some othersubscripted objects) had wrong parameters if they were directlysubscripted with anUnpack
object.Patch byDaraan. - Backport to Python 3.10 the ability to substitute
...
in genericCallable
aliases that have aConcatenate
special form as their argument.Patch byDaraan. - Extended the
Concatenate
backport for Python 3.8-3.10 to now acceptEllipsis
as an argument. Patch byDaraan. - Fix backport of
get_type_hints
to reflect Python 3.11+ behavior which does not add
... (truncated)
Changelog
Sourced fromtyping-extensions's changelog.
Release 4.13.2 (April 10, 2025)
- Fix
TypeError
when taking the union oftyping_extensions.TypeAliasType
and atyping.TypeAliasType
on Python 3.12 and 3.13.Patch byJoren Hammudoglu. - Backport from CPython PR#132160to avoid having user arguments shadowed in generated
__new__
by@typing_extensions.deprecated
.Patch byVictorien Plot.
Release 4.13.1 (April 3, 2025)
Bugfixes:
- Fix regression in 4.13.0 on Python 3.10.2 causing a
TypeError
when usingConcatenate
.Patch byDaraan. - Fix
TypeError
when usingevaluate_forward_ref
on Python 3.10.1-2 and 3.9.8-10.Patch byDaraan.
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 byJelle Zijlstra. - Add
typing_extensions.get_annotations
, a backport ofinspect.get_annotations
that adds features specifiedby PEP 649. Patches by Jelle Zijlstra and Alex Waygood. - Backport
evaluate_forward_ref
from CPython PR#119891 to evaluateForwardRef
s.Patch byDaraan, 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 wrappedwith
@typing_extensions.deprecated
. Patch by Sebastian Rittau. - Fix bug where
TypeAliasType
instances could be subscripted evenwhere they were not generic. Patch byDaraan. - Fix bug where a subscripted
TypeAliasType
instance did not have allattributes of the originalTypeAliasType
instance on older Python versions.Patch byDaraan and Alex Waygood. - Fix bug where subscripted
TypeAliasType
instances (and some othersubscripted objects) had wrong parameters if they were directlysubscripted with anUnpack
object.Patch byDaraan. - Backport to Python 3.10 the ability to substitute
...
in genericCallable
... (truncated)
Commits
4525e9d
Prepare release 4.13.2 (#583)88a0c20
Do not shadow user arguments in generated__new__
by@deprecated
(#581)281d7b0
Add 3rd party tests for litestar (#578)8092c39
fixTypeAliasType
union withtyping.TypeAliasType
(#575)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)- Additional commits viewable incompare 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 this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumpstyping-extensions from 4.12.2 to 4.13.2.
Release notes
Sourced fromtyping-extensions's releases.
... (truncated)
Changelog
Sourced fromtyping-extensions's changelog.
... (truncated)
Commits
4525e9d
Prepare release 4.13.2 (#583)88a0c20
Do not shadow user arguments in generated__new__
by@deprecated
(#581)281d7b0
Add 3rd party tests for litestar (#578)8092c39
fixTypeAliasType
union withtyping.TypeAliasType
(#575)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)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 this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)