Skip to content

Commit

Permalink
Release 3.11.8 (#10066)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 27, 2024
1 parent 13152c3 commit 5ddf720
Show file tree
Hide file tree
Showing 8 changed files with 61 additions and 9 deletions.
60 changes: 60 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,66 @@

.. towncrier release notes start
3.11.8 (2024-11-27)
===================

Miscellaneous internal changes
------------------------------

- Improved performance of creating :class:`aiohttp.ClientResponse` objects when there are no cookies -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10029`.



- Improved performance of creating :class:`aiohttp.ClientResponse` objects -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10030`.



- Improved performances of creating objects during the HTTP request lifecycle -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10037`.



- Improved performance of constructing :class:`aiohttp.web.Response` with headers -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10043`.



- Improved performance of making requests when there are no auto headers to skip -- by :user:`bdraco`.


*Related issues and pull requests on GitHub:*
:issue:`10049`.



- Downgraded logging of invalid HTTP method exceptions on the first request to debug level -- by :user:`bdraco`.

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.


*Related issues and pull requests on GitHub:*
:issue:`10055`.




----


3.11.7 (2024-11-21)
===================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/10029.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10030.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10037.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10043.misc.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/10049.misc.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/10055.misc.rst

This file was deleted.

2 changes: 1 addition & 1 deletion aiohttp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.11.8.dev0"
__version__ = "3.11.8"

from typing import TYPE_CHECKING, Tuple

Expand Down

0 comments on commit 5ddf720

Please sign in to comment.