Bug fixes
-
Updated :py:meth:
~aiohttp.ClientSession.request
to reuse thequote_cookie
setting fromClientSession._cookie_jar
when processing cookies parameter.
-- by :user:Cycloctane
.Related issues and pull requests on GitHub:
#10093. -
Fixed type of
SSLContext
for some static type checkers (e.g. pyright).Related issues and pull requests on GitHub:
#10099. -
Updated :meth:
aiohttp.web.StreamResponse.write
annotation to also allow :class:bytearray
and :class:memoryview
as inputs -- by :user:cdce8p
.Related issues and pull requests on GitHub:
#10154. -
Fixed a hang where a connection previously used for a streaming
download could be returned to the pool in a paused state.
-- by :user:javitonino
.Related issues and pull requests on GitHub:
#10169.
Features
-
Enabled ALPN on default SSL contexts. This improves compatibility with some
proxies which don't work without this extension.
-- by :user:Cycloctane
.Related issues and pull requests on GitHub:
#10156.
Miscellaneous internal changes
-
Fixed an infinite loop that can occur when using aiohttp in combination
withasync-solipsism
_ -- by :user:bmerry
... _async-solipsism: https://github.com/bmerry/async-solipsism
Related issues and pull requests on GitHub:
#10149.