-
Notifications
You must be signed in to change notification settings - Fork 72
chore(deps): update all dependencies #2371
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
+760
−695
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
711a448
to
69d5cfb
Compare
69d5cfb
to
5fd97b8
Compare
5fd97b8
to
fca169a
Compare
fca169a
to
5f2c891
Compare
5f2c891
to
34360de
Compare
34360de
to
beb5077
Compare
beb5077
to
028fcee
Compare
028fcee
to
4f4b1bf
Compare
parthea
approved these changes
May 6, 2025
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
kokoro:force-run
Add this label to force Kokoro to re-run the tests.
size: xl
Pull request size is extra large.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==2.4.6
->==2.6.1
==3.11.12
->==3.11.18
==25.1.0
->==25.3.0
==5.5.1
->==5.5.2
==2025.1.31
->==2025.4.26
==3.4.1
->==3.4.2
v29.3
->v30.2
==1.5.0
->==1.6.0
==2.24.1
->==2.24.2
==2.38.0
->==2.40.0
==1.67.0
->==1.70.0
==0.14.0
->==0.14.2
==1.70.0
->==1.71.0
==2.0.0
->==2.1.0
==1.6.0
->==1.7.0
==6.1.0
->==6.4.3
==24.2
->==25.0
==0.2.1
->==0.3.1
==1.26.0
->==1.26.1
==5.29.3
->==6.30.2
==0.4.1
->==0.4.2
==8.3.4
->==8.3.5
==0.25.3
->==0.26.0
3.10
->3.13
==4.9
->==4.9.1
0.0.16
->0.1.1
==4.12.2
->==4.13.2
22.04
->24.04
==2.3.0
->==2.4.0
==1.18.3
->==1.20.0
Release Notes
aio-libs/aiohappyeyeballs (aiohappyeyeballs)
v2.6.1
Compare Source
Bug fixes
2042c82
)v2.6.0
Compare Source
Features
4235273
)v2.5.0
Compare Source
Features
8e1bc6a
)v2.4.8
Compare Source
Bug fixes
476a05b
)v2.4.7
Compare Source
Bug fixes
e96264a
)aio-libs/aiohttp (aiohttp)
v3.11.18
Compare Source
====================
Bug fixes
Disabled TLS in TLS warning (when using HTTPS proxies) for uvloop and newer Python versions -- by :user:
lezgomatt
.Related issues and pull requests on GitHub:
:issue:
7686
.Fixed reading fragmented WebSocket messages when the payload was masked -- by :user:
bdraco
.The problem first appeared in 3.11.17
Related issues and pull requests on GitHub:
:issue:
10764
.v3.11.17
Compare Source
====================
Miscellaneous internal changes
Optimized web server performance when access logging is disabled by reducing time syscalls -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10713
.Improved web server performance when connection can be reused -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10714
.Improved performance of the WebSocket reader -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10740
.Improved performance of the WebSocket reader with large messages -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10744
.v3.11.16
Compare Source
====================
Bug fixes
Replaced deprecated
asyncio.iscoroutinefunction
with its counterpart frominspect
-- by :user:
layday
.Related issues and pull requests on GitHub:
:issue:
10634
.Fixed :class:
multidict.CIMultiDict
being mutated when passed to :class:aiohttp.web.Response
-- by :user:bdraco
.Related issues and pull requests on GitHub:
:issue:
10672
.v3.11.15
Compare Source
====================
Bug fixes
Reverted explicitly closing sockets if an exception is raised during
create_connection
-- by :user:bdraco
.This change originally appeared in aiohttp 3.11.13
Related issues and pull requests on GitHub:
:issue:
10464
, :issue:10617
, :issue:10656
.Miscellaneous internal changes
Improved performance of WebSocket buffer handling -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10601
.Improved performance of serializing headers -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10625
.v3.11.14
Compare Source
====================
Bug fixes
Fixed an issue where dns queries were delayed indefinitely when an exception occurred in a
trace.send_dns_cache_miss
-- by :user:
logioniz
.Related issues and pull requests on GitHub:
:issue:
10529
.Fixed DNS resolution on platforms that don't support
socket.AI_ADDRCONFIG
-- by :user:maxbachmann
.Related issues and pull requests on GitHub:
:issue:
10542
.The connector now raises :exc:
aiohttp.ClientConnectionError
instead of :exc:OSError
when failing to explicitly close the socket after :py:meth:asyncio.loop.create_connection
fails -- by :user:bdraco
.Related issues and pull requests on GitHub:
:issue:
10551
.Break cyclic references at connection close when there was a traceback -- by :user:
bdraco
.Special thanks to :user:
availov
for reporting the issue.Related issues and pull requests on GitHub:
:issue:
10556
.Break cyclic references when there is an exception handling a request -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10569
.Features
Improved logging on non-overlapping WebSocket client protocols to include the remote address -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10564
.Miscellaneous internal changes
Improved performance of parsing content types by adding a cache in the same manner currently done with mime types -- by :user:
bdraco
.Related issues and pull requests on GitHub:
:issue:
10552
.v3.11.13
Compare Source
====================
Bug fixes
Removed a break statement inside the finally block in :py:class:
~aiohttp.web.RequestHandler
-- by :user:
Cycloctane
.Related issues and pull requests on GitHub:
:issue:
10434
.Changed connection creation to explicitly close sockets if an exception is raised in the event loop's
create_connection
method -- by :user:top-oai
.Related issues and pull requests on GitHub:
:issue:
10464
.Packaging updates and notes for downstreams
Fixed test
test_write_large_payload_deflate_compression_data_in_eof_writelines
failing with Python 3.12.9+ or 3.13.2+ -- by :user:bdraco
.Related issues and pull requests on GitHub:
:issue:
10423
.Miscellaneous internal changes
Added human-readable error messages to the exceptions for WebSocket disconnects due to PONG not being received -- by :user:
bdraco
.Previously, the error messages were empty strings, which made it hard to determine what went wrong.
Related issues and pull requests on GitHub:
:issue:
10422
.python-attrs/attrs (attrs)
v25.3.0
Compare Source
Changes
field_transformer
s.#1417
v25.2.0
Compare Source
Changes
#1147
attrs.make_class()
now allows for Unicode class names.#1406
#1407
#1410
tkem/cachetools (cachetools)
v5.5.2
Compare Source
===================
Reduce number of
@cached
lock/unlock operations.Improve documentation.
Update CI environment.
certifi/python-certifi (certifi)
v2025.4.26
Compare Source
jawah/charset_normalizer (charset-normalizer)
v3.4.2
Compare Source
Fixed
argparse.FileType
by backporting the target class into the package. (#591)Changed
protocolbuffers/protobuf (com_google_protobuf)
v30.2
: Protocol Buffers v30.2Compare Source
Announcements
Compiler
C++
Java
Kotlin
Csharp
Objective-C
Python
Ruby
Other
v30.1
: Protocol Buffers v30.1Compare Source
Announcements
Bazel
Compiler
C++
Java
Kotlin
Python
Other
system_python
repo alias to MODULE.bazel (#20662) (protocolbuffers/protobuf@ebb5224)v30.0
: Protocol Buffers v30.0Compare Source
Announcements
type_name()
andcpp_type_name()
fromconst char*
toabsl::string_view
. (protocolbuffers/protobuf@a9ad51f)absl::string_view
. (protocolbuffers/protobuf@d1990d9)MutableRepeatedFieldRef::Reserve()
in reflection (protocolbuffers/protobuf@913f7b0)Bazel
Compiler
C++
2025012
and use @com_google_absl -> @abseil-cpp and com_google_googletest -> @googletest canonical BCR names. (#20295) (protocolbuffers/protobuf@df849cc)std::any
with a custom solution. (#20251) (protocolbuffers/protobuf@6250d09)absl::string_view
. (protocolbuffers/protobuf@d1990d9)MutableRepeatedFieldRef::Reserve()
in reflection (protocolbuffers/protobuf@913f7b0)type_name()
andcpp_type_name()
fromconst char*
toabsl::string_view
. (protocolbuffers/protobuf@a9ad51f)const std::string&
toabsl::string_view
. (protocolbuffers/protobuf@0361a59)std::bad_cast
exception when exceptions (protocolbuffers/protobuf@33bbbeb)2023080
.1 to2024072
.0. (protocolbuffers/protobuf@c75095b)-Dprotobuf_FETCH_DEPENDENCIES=ON
(protocolbuffers/protobuf@d3735bc)Java
absl::string_view
. (protocolbuffers/protobuf@d1990d9)Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.