You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGES.rst
+74Lines changed: 74 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,80 @@
10
10
11
11
.. towncrier release notes start
12
12
13
+
3.11.11 (2024-12-18)
14
+
====================
15
+
16
+
Bug fixes
17
+
---------
18
+
19
+
- Updated :py:meth:`~aiohttp.ClientSession.request` to reuse the ``quote_cookie`` setting from ``ClientSession._cookie_jar`` when processing cookies parameter.
20
+
-- by :user:`Cycloctane`.
21
+
22
+
23
+
*Related issues and pull requests on GitHub:*
24
+
:issue:`10093`.
25
+
26
+
27
+
28
+
- Fixed type of ``SSLContext`` for some static type checkers (e.g. pyright).
29
+
30
+
31
+
*Related issues and pull requests on GitHub:*
32
+
:issue:`10099`.
33
+
34
+
35
+
36
+
- Updated :meth:`aiohttp.web.StreamResponse.write` annotation to also allow :class:`bytearray` and :class:`memoryview` as inputs -- by :user:`cdce8p`.
37
+
38
+
39
+
*Related issues and pull requests on GitHub:*
40
+
:issue:`10154`.
41
+
42
+
43
+
44
+
- Fixed a hang where a connection previously used for a streaming
45
+
download could be returned to the pool in a paused state.
46
+
-- by :user:`javitonino`.
47
+
48
+
49
+
*Related issues and pull requests on GitHub:*
50
+
:issue:`10169`.
51
+
52
+
53
+
54
+
55
+
Features
56
+
--------
57
+
58
+
- Enabled ALPN on default SSL contexts. This improves compatibility with some
59
+
proxies which don't work without this extension.
60
+
-- by :user:`Cycloctane`.
61
+
62
+
63
+
*Related issues and pull requests on GitHub:*
64
+
:issue:`10156`.
65
+
66
+
67
+
68
+
69
+
Miscellaneous internal changes
70
+
------------------------------
71
+
72
+
- Fixed an infinite loop that can occur when using aiohttp in combination
0 commit comments