Bump the pip group with 5 updates
Type: Pull Request
State: Merged
Association: Contributor
Comments: 1
(12 months ago)
(11 months ago)
(11 months ago)
by hugovk
dependencies python
ezio-melotti
Bumps the pip group with 5 updates:
| Package | From | To |
|---|---|---|
| aiohttp | 3.12.6 |
3.12.13 |
| sigstore | 3.6.2 |
3.6.4 |
| mypy | 1.16.0 |
1.16.1 |
| pytest | 8.3.5 |
8.4.1 |
| pytest-cov | 6.1.1 |
6.2.1 |
Updates aiohttp from 3.12.6 to 3.12.13
Release notes
Sourced from aiohttp's releases.
3.12.13
Bug fixes
Fixed auto-created :py:class:
~aiohttp.TCPConnectornot using the session's event loop when :py:class:~aiohttp.ClientSessionis created without an explicit connector -- by :user:bdraco.Related issues and pull requests on GitHub: #11147.
3.12.12
Bug fixes
Fixed cookie unquoting to properly handle octal escape sequences in cookie values (e.g.,
\012for newline) by vendoring the correct_unquoteimplementation from Python'shttp.cookiesmodule -- by :user:bdraco.Related issues and pull requests on GitHub: #11173.
Fixed
Cookieheader parsing to treat attribute names as regular cookies per :rfc:6265#section-5.4-- by :user:bdraco.Related issues and pull requests on GitHub: #11178.
3.12.11
Features
- Improved SSL connection handling by changing the default
ssl_shutdown_timeoutfrom0.1to0seconds. SSL connections now use Python's default graceful shutdown during normal operation but are aborted immediately when the connector is closed, providing optimal behavior for both cases. Also added support forssl_shutdown_timeout=0on all Python versions. Previously, this value was rejected on Python 3.11+ and ignored on earlier versions. Non-zero values on Python < 3.11 now trigger aRuntimeWarning-- by :user:bdraco.
... (truncated)
Changelog
Sourced from aiohttp's changelog.
3.12.13 (2025-06-14)
Bug fixes
Fixed auto-created :py:class:
~aiohttp.TCPConnectornot using the session's event loop when :py:class:~aiohttp.ClientSessionis created without an explicit connector -- by :user:bdraco.Related issues and pull requests on GitHub: :issue:
11147.
3.12.12 (2025-06-09)
Bug fixes
Fixed cookie unquoting to properly handle octal escape sequences in cookie values (e.g.,
\012for newline) by vendoring the correct_unquoteimplementation from Python'shttp.cookiesmodule -- by :user:bdraco.Related issues and pull requests on GitHub: :issue:
11173.Fixed
Cookieheader parsing to treat attribute names as regular cookies per :rfc:6265#section-5.4-- by :user:bdraco.Related issues and pull requests on GitHub: :issue:
11178.
3.12.11 (2025-06-07)
Features
... (truncated)
Commits
2ff9b61Release 3.12.13 (#11214)fc9b720[PR #11198/b151d3fc backport][3.12] Fix auto-created TCPConnector not using s...2d4a28b[PR #11192/b888dc5c backport][3.12] Add warning to release notes about the qu...bd374b1[PR #11193/43ea3b1d backport][3.12] Pin CI Python version to 3.13.3 (#11194)9404808Increment version to 3.12.13.dev0 (#11184)a15febdRelease 3.12.12 (#11183)e2b24d7[PR #11178/915338c7 backport][3.12] Fix cookie header parser ignoring reserve...608d8ff[PR #11173/85b0df43 backport][3.12] Fix cookie unquoting regression (#11179)2a7ed29Increment version to 3.12.12.dev0 (#11159)f9621dcRelease 3.12.11 (#11157)- Additional commits viewable in compare view
Updates sigstore from 3.6.2 to 3.6.4
Release notes
Sourced from sigstore's releases.
v3.6.4
Fixed
- Bumped the
rfc3161-clientdependency to>=1.0.3to fix a security vulnerability (#1451)v3.6.3
A small bug fix release.
Fixed
- Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification may succeed without that key). #1425
Changelog
Sourced from sigstore's changelog.
[3.6.4]
Fixed
- Bumped the
rfc3161-clientdependency to>=1.0.3to fix a security vulnerability (#1451)[3.6.3]
Fixed
- Verify: Avoid hard failure if trusted root contains unsupported keytypes (as verification may succeed without that key). #1425
Commits
Updates mypy from 1.16.0 to 1.16.1
Commits
68b8fa0Bump version to 1.16.1e253edeSingle underscore is not a sunder (#19273)9fb5ff6Fix properties with setters after deleters (#19248)c20fd78Handle assignment of bound methods in class bodies (#19233)c86480cTighten metaclass call handling in protocols (#19191)cb3c6ecFix crash on partial type used as context (#19216)c39f5e7[mypyc] Fixing condition for handling user-defined del (#19188)0a4f284Fix crash on invalid property inside its own body (#19208)9b079f6Bump version to 1.16.1+dev- See full diff in compare view
Updates pytest from 8.3.5 to 8.4.1
Release notes
Sourced from pytest's releases.
8.4.1
pytest 8.4.1 (2025-06-17)
Bug fixes
#13461: Corrected
_pytest.terminal.TerminalReporter.isattyto support being called as a method. Before it was just a boolean which could break correct code when using-o log_cli=true).#13477: Reintroduced
pytest.PytestReturnNotNoneWarning{.interpreted-text role="class"} which was removed by accident in pytest [8.4]{.title-ref}.This warning is raised when a test functions returns a value other than
None, which is often a mistake made by beginners.See
return-not-none{.interpreted-text role="ref"} for more information.#13497: Fixed compatibility with
Twisted 25+.Improved documentation
- #13492: Fixed outdated warning about
faulthandlernot working on Windows.8.4.0
pytest 8.4.0 (2025-06-02)
Removals and backward incompatible breaking changes
#11372: Async tests will now fail, instead of warning+skipping, if you don't have any suitable plugin installed.
#12346: Tests will now fail, instead of raising a warning, if they return any value other than None.
#12874: We dropped support for Python 3.8 following its end of life (2024-10-07).
#12960: Test functions containing a yield now cause an explicit error. They have not been run since pytest 4.0, and were previously marked as an expected failure and deprecation warning.
See
the docs <yield tests deprecated>{.interpreted-text role="ref"} for more information.Deprecations (removal in next major release)
- #10839: Requesting an asynchronous fixture without a [pytest_fixture_setup]{.title-ref} hook that resolves it will now give a DeprecationWarning. This most commonly happens if a sync test requests an async fixture. This should have no effect on a majority of users with async tests or fixtures using async pytest plugins, but may affect non-standard hook setups or
autouse=True. For guidance on how to work around this warning seesync-test-async-fixture{.interpreted-text role="ref"}.New features
#11538: Added
pytest.RaisesGroup{.interpreted-text role="class"} as an equivalent topytest.raises{.interpreted-text role="func"} for expectingExceptionGroup{.interpreted-text role="exc"}. Also addspytest.RaisesExc{.interpreted-text role="class"} which is now the logic behindpytest.raises{.interpreted-text role="func"} and used as parameter topytest.RaisesGroup{.interpreted-text role="class"}.RaisesGroupincludes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulatingexcept* <except_star>{.interpreted-text role="ref"}. Seeassert-matching-exception-groups{.interpreted-text role="ref"} and docstrings for more information.#12081: Added
capteesys{.interpreted-text role="fixture"} to capture AND pass output to next handler set by--capture=.#12504:
pytest.mark.xfail{.interpreted-text role="func"} now acceptspytest.RaisesGroup{.interpreted-text role="class"} for theraisesparameter when you expect an exception group. You can also pass apytest.RaisesExc{.interpreted-text role="class"} if you e.g. want to make use of thecheckparameter.#12713: New [--force-short-summary]{.title-ref} option to force condensed summary output regardless of verbosity level.
... (truncated)
Commits
8d99211Prepare release version 8.4.15dc5880docs: update pytest.ini addopts example to use separate -p entries (#13529) (...d0c7ed0Reintroduce PytestReturnNotNoneWarning (#13495) (#13527)a1b3a78Fix compatibility with Twisted 25 (#13502) (#13531)4c161abpytester: avoid unraisableexception gc collects in inline runs to speed up te...a86ee09Fix typo in parametrize.rst (#13514) (#13516)1a0581bRemove outdated warning about faulthandler_timeout on Windows (#13492) (#13493)4e631a7Merge pull request #13486 from hosmir/fixtypo (#13487)b49745efix: support TerminalReporter.isatty being called (#13462) (#13483)cc5ceedRELEASING: remove pytest mailing list (#13472) (#13473)- Additional commits viewable in compare view
Updates pytest-cov from 6.1.1 to 6.2.1
Changelog
Sourced from pytest-cov's changelog.
6.2.1 (2025-06-12)
Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023-06-21) that has the required new-style hookwrapper API.
Removed deprecated license classifier (packaging).
Disabled coverage warnings in two more situations where they have no value:
- "module-not-measured" in workers
- "already-imported" in subprocesses
6.2.0 (2025-06-11)
The plugin now adds 3 rules in the filter warnings configuration to prevent common coverage warnings being raised as obscure errors::
default:unclosed database in <sqlite3.Connection object at:ResourceWarning once::PytestCovWarning once::CoverageWarning
This fixes most of the bad interactions that are occurring on pytest 8.4 with
filterwarnings=error.The plugin will check if there already matching rules for the 3 categories (
ResourceWarning,PytestCovWarning,CoverageWarning) and message (unclosed database in <sqlite3.Connection object at) before adding the filters.This means you can have this in your pytest configuration for complete oblivion (not recommended, if that is not clear)::
filterwarnings = [ "error", "ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning", "ignore::PytestCovWarning", "ignore::CoverageWarning", ]
Commits
55dbe43Bump version: 6.2.0 → 6.2.1d17e9b7Update changelog.8964ab7Add a note for this warning disable.e932e41Prevent unimported warnings @ pytest-xdist workers573379bBring pytest-cov's suprocess management in line with coverage's process_start...f1884e8Fix xdist pin.512c669Added minium version requirements for pluggin (for new-style hookwrappers). P...629ba64Remove deprecated license classifier.dca5723Bump version: 6.1.1 → 6.2.0f69166aAlso trigger the sqlite warning.- Additional commits viewable in compare 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
2
3
+18
-12
Package Dependencies
Technical Details
| ID: | 2634626 |
| UUID: | 2631608109 |
| Node ID: | PR_kwDOBAUWrs6c2yct |
| Host: | GitHub |
| Repository: | python/release-tools |
| Merge State: | Unknown |