Skip to content

Commit 5ddf720

Browse files
authored
Release 3.11.8 (#10066)
1 parent 13152c3 commit 5ddf720

File tree

8 files changed

+61
-9
lines changed

8 files changed

+61
-9
lines changed

CHANGES.rst

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,66 @@
1010

1111
.. towncrier release notes start
1212
13+
3.11.8 (2024-11-27)
14+
===================
15+
16+
Miscellaneous internal changes
17+
------------------------------
18+
19+
- Improved performance of creating :class:`aiohttp.ClientResponse` objects when there are no cookies -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`10029`.
24+
25+
26+
27+
- Improved performance of creating :class:`aiohttp.ClientResponse` objects -- by :user:`bdraco`.
28+
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`10030`.
32+
33+
34+
35+
- Improved performances of creating objects during the HTTP request lifecycle -- by :user:`bdraco`.
36+
37+
38+
*Related issues and pull requests on GitHub:*
39+
:issue:`10037`.
40+
41+
42+
43+
- Improved performance of constructing :class:`aiohttp.web.Response` with headers -- by :user:`bdraco`.
44+
45+
46+
*Related issues and pull requests on GitHub:*
47+
:issue:`10043`.
48+
49+
50+
51+
- Improved performance of making requests when there are no auto headers to skip -- by :user:`bdraco`.
52+
53+
54+
*Related issues and pull requests on GitHub:*
55+
:issue:`10049`.
56+
57+
58+
59+
- Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:`bdraco`.
60+
61+
HTTP requests starting with an invalid method are relatively common, especially when connected to the public internet, because browsers or other clients may try to speak SSL to a plain-text server or vice-versa. These exceptions can quickly fill the log with noise when nothing is wrong.
62+
63+
64+
*Related issues and pull requests on GitHub:*
65+
:issue:`10055`.
66+
67+
68+
69+
70+
----
71+
72+
1373
3.11.7 (2024-11-21)
1474
===================
1575

CHANGES/10029.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/10030.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/10037.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/10043.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/10049.misc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/10055.misc.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

aiohttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.11.8.dev0"
1+
__version__ = "3.11.8"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)