chore(deps): bump the pip-version-updates group across 1 directory with 10 updates
Type: Pull Request
State: Closed
Association: Unknown
Comments: 1
(7 months ago)
(6 months ago)
(6 months ago)
dependencies python
Bumps the pip-version-updates group with 10 updates in the / directory:
| Package | From | To |
|---|---|---|
| pytest | 8.4.1 |
8.4.2 |
| pytest-cov | 6.2.1 |
7.0.0 |
| tox | 4.28.0 |
4.30.3 |
| types-python-dateutil | 2.9.0.20250708 |
2.9.0.20251008 |
| mypy | 1.17.0 |
1.18.2 |
| python-dotenv | 1.1.1 |
1.2.1 |
| ruff | 0.12.4 |
0.14.3 |
| pydantic | 2.11.7 |
2.12.3 |
| typing-extensions | 4.14.1 |
4.15.0 |
| requests | 2.32.4 |
2.32.5 |
Updates pytest from 8.4.1 to 8.4.2
Release notes
Sourced from pytest's releases.
8.4.2
pytest 8.4.2 (2025-09-03)
Bug fixes
#13478: Fixed a crash when using
console_output_style{.interpreted-text role="confval"} withtimesand a module is skipped.#13530: Fixed a crash when using
pytest.approx{.interpreted-text role="func"} anddecimal.Decimal{.interpreted-text role="class"} instances with thedecimal.FloatOperation{.interpreted-text role="class"} trap set.#13549: No longer evaluate type annotations in Python
3.14when inspecting function signatures.This prevents crashes during module collection when modules do not explicitly use
from __future__ import annotationsand import types for annotations within aif TYPE_CHECKING:block.#13559: Added missing [int]{.title-ref} and [float]{.title-ref} variants to the [Literal]{.title-ref} type annotation of the [type]{.title-ref} parameter in
pytest.Parser.addini{.interpreted-text role="meth"}.#13563:
pytest.approx{.interpreted-text role="func"} now only importsnumpyif NumPy is already insys.modules. This fixes unconditional import behavior introduced in [8.4.0]{.title-ref}.Improved documentation
- #13577: Clarify that
pytest_generate_testsis discovered in test modules/classes; other hooks must be inconftest.pyor plugins.Contributor-facing changes
- #13480: Self-testing: fixed a few test failures when run with
-Wdefaultor a similar override.- #13547: Self-testing: corrected expected message for
test_doctest_unexpected_exceptionin Python3.14.- #13684: Make pytest's own testsuite insensitive to the presence of the
CIenvironment variable -- byogrisel{.interpreted-text role="user"}.
Commits
bfae422Prepare release version 8.4.28990538Fix passenv CI in tox ini and make tests insensitive to the presence of the C...ca676bfMerge pull request #13687 from pytest-dev/patchback/backports/8.4.x/e63f6e51c...975a60aMerge pull request #13686 from pytest-dev/patchback/backports/8.4.x/12bde8af6...7723ce8Merge pull request #13683 from even-even/fix_Exeption_to_Exception_in_errorMe...b7f0568Merge pull request #13685 from CoretexShadow/fix/docs-pytest-generate-tests2c94c4aadd missing colon (#13640) (#13641)c3d7684Merge pull request #13606 from pytest-dev/patchback/backports/8.4.x/5f9938563...dc6e3beMerge pull request #13605 from The-Compiler/training-update-2025-07f87289cFix crash withtimesoutput style and skipped module (#13573) (#13579)- Additional commits viewable in compare view
Updates pytest-cov from 6.2.1 to 7.0.0
Changelog
Sourced from pytest-cov's changelog.
7.0.0 (2025-09-09)
Dropped support for subprocesses measurement.
It was a feature added long time ago when coverage lacked a nice way to measure subprocesses created in tests. It relied on a
.pthfile, there was no way to opt-out and it created bad interations withcoverage's new patch system <https://coverage.readthedocs.io/en/latest/config.html#run-patch>_ added in7.10 <https://coverage.readthedocs.io/en/7.10.6/changes.html#version-7-10-0-2025-07-24>_.To migrate to this release you might need to enable the suprocess patch, example for
.coveragerc:.. code-block:: ini
[run] patch = subprocess
This release also requires at least coverage 7.10.6.
Switched packaging to have metadata completely in
pyproject.tomland usehatchling <https://pypi.org/project/hatchling/>_ for building. Contributed by Ofek Lev in[#551](https://github.com/pytest-dev/pytest-cov/issues/551) <https://github.com/pytest-dev/pytest-cov/pull/551>_ with some extras in[#716](https://github.com/pytest-dev/pytest-cov/issues/716) <https://github.com/pytest-dev/pytest-cov/pull/716>_.Removed some not really necessary testing deps like
six.6.3.0 (2025-09-06)
- Added support for markdown reports. Contributed by Marcos Boger in
[#712](https://github.com/pytest-dev/pytest-cov/issues/712) <https://github.com/pytest-dev/pytest-cov/pull/712>_ and[#714](https://github.com/pytest-dev/pytest-cov/issues/714) <https://github.com/pytest-dev/pytest-cov/pull/714>_.- Fixed some formatting issues in docs. Anonymous contribution in
[#706](https://github.com/pytest-dev/pytest-cov/issues/706) <https://github.com/pytest-dev/pytest-cov/pull/706>_.
Commits
224d896Bump version: 6.3.0 → 7.0.073424e3Cleanup the docs a bit.36f1cc2Bump pins in template.f299c59Bump the github-actions group with 2 updates25f0b2eUpdate docs/config.rstbb23eacImprove configuration docsa19531eSwitch from build/pre-commit to uv/prek - this should make this faster.82f9993Update changelog.211b5cdFix links.97aadd7Update some ci config, reformat and apply some lint fixes.- Additional commits viewable in compare view
Updates tox from 4.28.0 to 4.30.3
Release notes
Sourced from tox's releases.
4.30.3
What's Changed
- Isolate the test suite from any existing
DEFAULT_CONFIG_FILEfile by@kurtmckeein tox-dev/tox#3612- Fix none config file issue 3611 by
@kurtmckeein tox-dev/tox#3613- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in tox-dev/tox#3608- Fix incorrect type annotations in PythonPathPackageWithDeps (fixes #3607) by
@PreistlyPythonin tox-dev/tox#3616- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in tox-dev/tox#3615New Contributors
@PreistlyPythonmade their first contribution in tox-dev/tox#3616Full Changelog: https://github.com/tox-dev/tox/compare/4.30.2...4.30.3
4.30.2
What's Changed
- Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 by
@dependabot[bot] in tox-dev/tox#3603- Ensure automatically provisioned environment is torn down by
@vytas7in tox-dev/tox#3601- Bump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 in /.github/workflows by
@dependabot[bot] in tox-dev/tox#3604Full Changelog: https://github.com/tox-dev/tox/compare/4.30.1...4.30.2
4.30.1
What's Changed
- Prevent Tox from hanging with
--installpkgsdist due to orphaned build backend by@vytas7in tox-dev/tox#3530New Contributors
@vytas7made their first contribution in tox-dev/tox#3530Full Changelog: https://github.com/tox-dev/tox/compare/4.30.0...4.30.1
4.30.0
What's Changed
- Pass through
CIas__TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CIby@Liam-DeVoein tox-dev/tox#3592- [pre-commit.ci] pre-commit autoupdate by
@pre-commit-ci[bot] in tox-dev/tox#3596- Fix the built docs HTML path hint in
tox.tomlby@webknjazin tox-dev/tox#3594- Add a "version added" note for
tox_extend_envsby@webknjazin tox-dev/tox#3595- fix: provide clear messaging about config file loading by
@ssbarneain tox-dev/tox#3578- Ensure
tox_extend_envslist can be read twice by@webknjazin tox-dev/tox#3598New Contributors
@Liam-DeVoemade their first contribution in tox-dev/tox#3592
... (truncated)
Changelog
Sourced from tox's changelog.
v4.30.3 (2025-10-02)
Bugfixes - 4.30.3
- Fix incorrect type annotation in ``PythonPathPackageWithDeps.__init__()`` where ``deps`` was annotated as ``Sequence[Package]`` but should be ``Sequence[Requirement]`` to match actual runtime usage - by :user:`PreistlyPython` (:issue:`3607`) - Fix ``None`` appearing as the config filename in error output when the user's default config file is corrupt. - by :user:`kurtmckee` (:issue:`3611`)v4.30.2 (2025-09-04)
Bugfixes - 4.30.2
- Previously, when tox ran in an automatically provisioned environment, it could hang waiting for a PEP 517 build backend if used in conjunction with the
--installpkgoption. This has been fixed by properly tearing down the automatically provisioned environment after the tests.
- by :user:
vytas7(:issue:3600)v4.30.1 (2025-09-03)
Bugfixes - 4.30.1
- Prevent tox from hanging upon exit due to orphaned build threads and subprocesses when the ``--installpkg`` option is used with *sdist*. - by :user:`vytas7` (:issue:`3530`)v4.30.0 (2025-09-03)
Features - 4.30.0
- Add
__TOX_ENVIRONMENT_VARIABLE_ORIGINAL_CI, which passes through theCIvariable if present. This is intended for use by other libraries to detect if tox is running under CI. (:issue:3442)Bugfixes - 4.30.0
- Makes the error message more clear when pyproject.toml file cannot be loaded or is missing expected keys. (:issue:`3578`) - The :func:`tox_extend_envs() hook <tox.plugin.spec.tox_extend_envs>` recently added in :pull:`3591` turned out to not work well with ``tox run``. It was fixed internally, not to exhaust the underlying iterator on the first use.-- by :user:
webknjaz(:issue:3598)v4.29.0 (2025-08-29)
</tr></table>
... (truncated)
Commits
01442darelease 4.30.3984dc78[pre-commit.ci] pre-commit autoupdate (#3615)660adb5Fix incorrect type annotations in PythonPathPackageWithDeps (fixes #3607) (#3...393de39[pre-commit.ci] pre-commit autoupdate (#3608)6e32426Fix none config file issue 3611 (#3613)0805c83Isolate the test suite from any existingDEFAULT_CONFIG_FILEfile (#3612)5e0784arelease 4.30.264e8a34Bump pypa/gh-action-pypi-publish in /.github/workflows (#3604)7230088Ensure automatically provisioned environment is torn down (#3601)2c31dbcBump pypa/gh-action-pypi-publish from 1.12.4 to 1.13.0 (#3603)- Additional commits viewable in compare view
Updates types-python-dateutil from 2.9.0.20250708 to 2.9.0.20251008
Commits
- See full diff in compare view
Updates mypy from 1.17.0 to 1.18.2
Changelog
Sourced from mypy's changelog.
Mypy 1.18.2
- Fix crash on recursive alias (Ivan Levkivskyi, PR 19845)
- Add additional guidance for stubtest errors when runtime is
object.__init__(Stephen Morton, PR 19733)- Fix handling of None values in f-string expressions in mypyc (BobTheBuidler, PR 19846)
Acknowledgements
Thanks to all mypy contributors who contributed to this release:
- Ali Hamdan
- Anthony Sottile
- BobTheBuidler
- Brian Schubert
- Chainfire
- Charlie Denton
- Christoph Tyralla
- CoolCat467
- Daniel Hnyk
- Emily
- Emma Smith
- Ethan Sarp
- Ivan Levkivskyi
- Jahongir Qurbonov
- Jelle Zijlstra
- Joren Hammudoglu
- Jukka Lehtosalo
- Marc Mueller
- Omer Hadari
- Piotr Sawicki
- PrinceNaroliya
- Randolf Scholz
- Robsdedude
- Saul Shanabrook
- Shantanu
- Stanislav Terliakov
- Stephen Morton
- wyattscarpenter
I’d also like to thank my employer, Dropbox, for supporting mypy development.
Mypy 1.17
We’ve just uploaded mypy 1.17 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:
python3 -m pip install -U mypyYou can read the full documentation for this release on Read the Docs.
... (truncated)
Commits
df05f05remove +dev from version01a7a12Update changelog for 1.18.2 (#19873)ca5abf0Typeshed cherry-pick: Make type ofunitest.mock.Anya subclass ofAny(#1...9d794b5[mypyc] fix: inappropriateNones in f-strings (#19846)2c0510cstubtest: additional guidance on errors when runtime is object.init (#19733)2f3f03cBump version to 1.18.2+dev for point release7669841Fix crash on recursive alias in indirection.py (#19845)03fbaa9bump version to 1.18.1 due to wheels failureb44a1fbremoved +dev from version7197a99Removed Unreleased in the Changelog for Release 1.18 (#19827)- Additional commits viewable in compare view
Updates python-dotenv from 1.1.1 to 1.2.1
Release notes
Sourced from python-dotenv's releases.
v1.2.1
What's Changed
- Support reading .env from FIFOs (Unix) by
@sidharth-sudhirin theskumar/python-dotenv#586- Update CI to use trusted publishing on PyPI
New Contributors
@sidharth-sudhirmade their first contribution in theskumar/python-dotenv#586Full Changelog: https://github.com/theskumar/python-dotenv/compare/v1.2.0...v1.2.1
v1.2.0
What's Changed
- style: upgrade to use ruff by
@theskumarin theskumar/python-dotenv#567- Use sys.exit() instead of exit() by
@theskumarin theskumar/python-dotenv#568- feat: add
PYTHON_DOTENV_DISABLEDflag to disable load_dotenv (fixes #510) by@matthewfranglenin theskumar/python-dotenv#569- Added Python@3.14: Github CI & tox.ini by
@23f3001135in theskumar/python-dotenv#579- ocs: clarify what load_dotenv() does in README by
@cybercodedin theskumar/python-dotenv#575- Bump the github-actions group across 1 directory with 2 updates by
@dependabot[bot] in theskumar/python-dotenv#577- Move project metadata and config to pyproject.toml by
@EpicWinkin theskumar/python-dotenv#583New Contributors
@matthewfranglenmade their first contribution in theskumar/python-dotenv#569@23f3001135made their first contribution in theskumar/python-dotenv#579@cybercodedmade their first contribution in theskumar/python-dotenv#575@EpicWinkmade their first contribution in theskumar/python-dotenv#583Full Changelog: https://github.com/theskumar/python-dotenv/compare/v1.1.1...v1.2.0
Changelog
Sourced from python-dotenv's changelog.
[1.2.1] - 2025-10-26
- Move more config to
pyproject.toml, removedsetup.cfg- Add support for reading
.envfrom FIFOs (Unix) by [@sidharth-sudhir] in #586[1.2.0] - 2025-10-26
- Upgrade build system to use PEP 517 & PEP 518 to use
buildandpyproject.tomlby [@EpicWink] in #583- Add support for Python 3.14 by [
@23f3001135] in #579- Add support for disabling of
load_dotenv()usingPYTHON_DOTENV_DISABLEDenv var. by [@matthewfranglen] in #569
Commits
eaf2a91Do not remove .coverage file8716196Bump version: 1.2.0 → 1.2.1b87807fUpdate changelog3af77d3Support reading .env from FIFOs (Unix) (#586)467ee22Fix test failures after moving config to pyproject.toml76999e7Move more config pyproject.toml222ce2cUpdate to use trusted publisher on pypi8ed4f79Update docs requirements5bf8822Bump version: 1.1.1 → 1.2.01fe11ccupadate changelog- Additional commits viewable in compare view
Updates ruff from 0.12.4 to 0.14.3
Release notes
Sourced from ruff's releases.
0.14.3
Release Notes
Released on 2025-10-30.
Preview features
- Respect
--output-formatwith--watch(#21097)- [
pydoclint] Fix false positive on explicit exception re-raising (DOC501,DOC502) (#21011)- [
pyflakes] Revert to stable behavior if imports for module lie in alternate branches forF401(#20878)- [
pylint] Implementstop-iteration-return(PLR1708) (#20733)- [
ruff] Add support for additional eager conversion patterns (RUF065) (#20657)Bug fixes
- Fix finding keyword range for clause header after statement ending with semicolon (#21067)
- Fix syntax error false positive on nested alternative patterns (#21104)
- [
ISC001] Fix panic when string literals are unclosed (#21034)- [
flake8-django] ApplyDJ001to annotated fields (#20907)- [
flake8-pyi] FixPYI034to not trigger on metaclasses (PYI034) (#20881)- [
flake8-type-checking] FixTC003false positive withfuture-annotations(#21125)- [
pyflakes] Fix false positive for__class__in lambda expressions within class definitions (F821) (#20564)- [
pyupgrade] Fix false positive forTypeVarwith default on Python <3.13 (UP046,UP047) (#21045)Rule changes
- Add missing docstring sections to the numpy list (#20931)
- [
airflow] Extendairflow.models..Paramcheck (AIR311) (#21043)- [
airflow] Warn thatairflow....DAG.create_dagrunhas been removed (AIR301) (#21093)- [
refurb] Preserve digit separators inDecimalconstructor (FURB157) (#20588)Server
- Avoid sending an unnecessary "clear diagnostics" message for clients supporting pull diagnostics (#21105)
Documentation
- [
flake8-bandit] Fix correct example forS308(#21128)Other changes
- Clearer error message when
line-lengthgoes beyond threshold (#21072)Contributors
... (truncated)
Changelog
Sourced from ruff's changelog.
0.14.3
Released on 2025-10-30.
Preview features
- Respect
--output-formatwith--watch(#21097)- [
pydoclint] Fix false positive on explicit exception re-raising (DOC501,DOC502) (#21011)- [
pyflakes] Revert to stable behavior if imports for module lie in alternate branches forF401(#20878)- [
pylint] Implementstop-iteration-return(PLR1708) (#20733)- [
ruff] Add support for additional eager conversion patterns (RUF065) (#20657)Bug fixes
- Fix finding keyword range for clause header after statement ending with semicolon (#21067)
- Fix syntax error false positive on nested alternative patterns (#21104)
- [
ISC001] Fix panic when string literals are unclosed (#21034)- [
flake8-django] ApplyDJ001to annotated fields (#20907)- [
flake8-pyi] FixPYI034to not trigger on metaclasses (PYI034) (#20881)- [
flake8-type-checking] FixTC003false positive withfuture-annotations(#21125)- [
pyflakes] Fix false positive for__class__in lambda expressions within class definitions (F821) (#20564)- [
pyupgrade] Fix false positive forTypeVarwith default on Python <3.13 (UP046,UP047) (#21045)Rule changes
- Add missing docstring sections to the numpy list (#20931)
- [
airflow] Extendairflow.models..Paramcheck (AIR311) (#21043)- [
airflow] Warn thatairflow....DAG.create_dagrunhas been removed (AIR301) (#21093)- [
refurb] Preserve digit separators inDecimalconstructor (FURB157) (#20588)Server
- Avoid sending an unnecessary "clear diagnostics" message for clients supporting pull diagnostics (#21105)
Documentation
- [
flake8-bandit] Fix correct example forS308(#21128)Other changes
- Clearer error message when
line-lengthgoes beyond threshold (#21072)Contributors
... (truncated)
Commits
8737a2dBump v0.14.3 (#21152)3be3a10[ty] Don't provide completions when in class or function definition (#21146)13375d0[ty] Use the top materialization of classes for narrowing in class-patterns f...c0b04d4[ty] Update "constraint implication" relation to work on constraints between ...1c7ea69[flake8-type-checking] FixTC003false positive withfuture-annotations...9bacd19[ty] Fix lookup of__new__on instances (#21147)f0fe6d6Fix syntax error false positive on nested alternative patterns (#21104)10bda3d[pyupgrade] Fix false positive forTypeVarwith default on Python <3.13 (...e55bc94[ty] Reachability and narrowing for enum methods (#21130)1b0ee46[ty] Userangeinstead of customIntIterable(#21138)- Additional commits viewable in compare view
Updates pydantic from 2.11.7 to 2.12.3
Release notes
Sourced from pydantic's releases.
v2.12.3 2025-10-17
v2.12.3 (2025-10-17)
What's Changed
This is the third 2.13 patch release, fixing issues related to the
FieldInfoclass, and reverting a change to the supported after model validator function signatures.
- Raise a warning when an invalid after model validator function signature is raised by
@Viicosin #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.- Add
FieldInfo.asdict()method, improve documentation aroundFieldInfoby@Viicosin #12411. This also adds back support for mutations onFieldInfoclasses, that are reused asAnnotatedmetadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.The blog post section on changes was also updated to document the changes related to
serialize_as_any.Full Changelog: https://github.com/pydantic/pydantic/compare/v2.12.2...v2.12.3
v2.12.2 2025-10-14
v2.12.2 (2025-10-14)
What's Changed
Fixes
- Release a new
pydantic-coreversion, as a corrupted CPython 3.10manylinux2014_aarch64wheel got uploaded (pydantic-core#1843).- Fix issue with recursive generic models with a parent model class by
@Viicosin #12398Full Changelog: https://github.com/pydantic/pydantic/compare/v2.12.1...v2.12.2
v2.12.1 2025-10-13
v2.12.1 (2025-10-13)
What's Changed
This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.
Fixes
- Do not evaluate annotations when inspecting validators and serializers by
@Viicosin #12355- Make sure
Noneis converted asNoneTypein Python 3.14 by@Viicosin #12370- Backport V1 runtime warning when using Python 3.14 by
@Viicosin #12367- Fix error message for invalid validator signatures by
@Viicosin #12366- Populate field name in
ValidationInfofor validation of default value by@Viicosin pydantic-core#1826- Encode credentials in
MultiHostUrlbuilder by@willswirein pydantic-core#1829- Respect field serializers when using
serialize_as_anyserialization flag by@davidhewittin pydantic-core#1829- Fix various
RootModelserialization issues by@davidhewittin pydantic-core#1836New Contributors
... (truncated)
Changelog
Sourced from pydantic's changelog.
v2.12.3 (2025-10-17)
What's Changed
This is the third 2.12 patch release, fixing issues related to the
FieldInfoclass, and reverting a change to the supported after model validator function signatures.
- Raise a warning when an invalid after model validator function signature is raised by
@Viicosin #12414. Starting in 2.12.0, using class methods for after model validators raised an error, but the error wasn't raised concistently. We decided to emit a deprecation warning instead.- Add
FieldInfo.asdict()method, improve documentation aroundFieldInfoby@Viicosin #12411. This also add back support for mutations onFieldInfoclasses, that are reused asAnnotatedmetadata. However, note that this is still not a supported pattern. Instead, please refer to the added example in the documentation.The blog post section on changes was also updated to document the changes related to
serialize_as_any.v2.12.2 (2025-10-14)
What's Changed
Fixes
- Release a new
pydantic-coreversion, as a corrupted CPython 3.10manylinux2014_aarch64wheel got uploaded (pydantic-core#1843).- Fix issue with recursive generic models with a parent model class by
@Viicosin #12398v2.12.1 (2025-10-13)
What's Changed
This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.
Fixes
- Do not evaluate annotations when inspecting validators and serializers by
@Viicosin #12355- Make sure
Noneis converted asNoneTypein Python 3.14 by@Viicosin #12370- Backport V1 runtime warning when using Python 3.14 by
@Viicosin #12367- Fix error message for invalid validator signatures by
@Viicosin #12366- Populate field name in
ValidationInfofor validation of default value by@Viicosin pydantic-core#1826- Encode credentials in
MultiHostUrlbuilder by@willswirein pydantic-core#1829- Respect field serializers when using
serialize_as_anyserialization flag by@davidhewittin pydantic-core#1829- Fix various
RootModelserialization issues by@davidhewittin pydantic-core#1836New Contributors
... (truncated)
Commits
1a8850dPrepare release 2.12.309dbcf2AddFieldInfo.asdict()method, improve documentation aroundFieldInfo5da4331Improve documentation about serialize as any behavior9c86324Raise a warning when an invalid after model validator function signature is r...36a73c6Updatepydantic-extra-typesdependency to version>=2.10.61e616a3Prepare release v2.12.2dc302e2Fix issue with recursive generic models with a parent model class6876485Bumppydantic-coreto v2.41.4b4076c6Prepare release 2.12.1b67f072Bumppydantic-coreto v2.41.3- Additional commits viewable in compare view
Updates typing-extensions from 4.14.1 to 4.15.0
Release notes
Sourced from typing-extensions's releases.
4.15.0
No user-facing changes since 4.15.0rc1.
New features since 4.14.1:
- Add the
@typing_extensions.disjoint_basedecorator, as specified in PEP 800. Patch by Jelle Zijlstra.- Add
typing_extensions.type_repr, a backport ofannotationlib.type_repr, introduced in Python 3.14 (CPython PR #124551, originally by Jelle Zijlstra). Patch by Semyon Moroz.- Fix behavior of type params in
typing_extensions.evaluate_forward_ref. Backport of CPython PR #137227 by Jelle Zijlstra.4.15.0rc1
- Add the
@typing_extensions.disjoint_basedecorator, as specified in PEP 800. Patch by Jelle Zijlstra.- Add
typing_extensions.type_repr, a backport ofannotationlib.type_repr, introduced in Python 3.14 (CPython PR #124551, originally by Jelle Zijlstra). Patch by Semyon Moroz.- Fix behavior of type params in
typing_extensions.evaluate_forward_ref. Backport of CPython PR #137227 by Jelle Zijlstra.
Changelog
Sourced from typing-extensions's changelog.
Release 4.15.0 (August 25, 2025)
No user-facing changes since 4.15.0rc1.
Release 4.15.0rc1 (August 18, 2025)
- Add the
@typing_extensions.disjoint_basedecorator, as specified in PEP 800. Patch by Jelle Zijlstra.- Add
typing_extensions.type_repr, a backport ofannotationlib.type_repr, introduced in Python 3.14 (CPython PR #124551, originally by Jelle Zijlstra). Patch by Semyon Moroz.- Fix behavior of type params in
typing_extensions.evaluate_forward_ref. Backport of CPython PR #137227 by Jelle Zijlstra.
Commits
9d1637ePrepare release 4.15.0 (#658)4bd67c5Coverage: exclude some noise (#656)e589a26Coverage: add detailed report to job summary (#655)67d37feCoverage: Implement fail_under (#654)e9ae26fDon't delete previous coverage comment (#653)ac80bb7Add Coverage workflow (#623)abaaafdPrepare release 4.15.0rc1 (#650)9810405Add@disjoint_base(PEP 800) (#634)7ee9e05Backport type_params fix from CPython (#646)1e8eb9cDo not refer to PEP 705 as being experimental (#648)- Additional commits viewable in compare view
Updates requests from 2.32.4 to 2.32.5
Release notes
Sourced from requests's releases.
v2.32.5
2.32.5 (2025-08-18)
Bugfixes
- The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.
Deprecations
- Added support for Python 3.14.
- Dropped support for Python 3.8 following its end of support.
Changelog
Sourced from requests's changelog.
2.32.5 (2025-08-18)
Bugfixes
- The SSLContext caching feature originally introduced in 2.32.0 has created a new class of issues in Requests that have had negative impact across a number of use cases. The Requests team has decided to revert this feature as long term maintenance of it is proving to be unsustainable in its current iteration.
Deprecations
- Added support for Python 3.14.
- Dropped support for Python 3.8 following its end of support.
Commits
b25c87dv2.32.5131e506Merge pull request #7010 from psf/dependabot/github_actions/actions/checkout-...b336cb2Bump actions/checkout from 4.2.0 to 5.0.046e939bUpdate publish workflow to useartifact-idinstead ofname4b9c546Merge pull request #6999 from psf/dependabot/github_actions/step-security/har...7618dbeBump step-security/harden-runner from 2.12.0 to 2.13.02edca11Add support for Python 3.14 and drop support for Python 3.8 (#6993)fec96cdUpdate Makefile rules (...Description has been truncated
Package Dependencies
Technical Details
| ID: | 11845966 |
| UUID: | 3582384878 |
| Node ID: | PR_kwDOOOXXG86xNELF |
| Host: | GitHub |
| Repository: | zitadel/client-python |