Skip to content

Commit f55822e

Browse files
authored
Release 3.11.0b5 (#9760)
1 parent afb225f commit f55822e

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed

CHANGES.rst

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
.. towncrier release notes start
1212
13-
3.11.0b4 (2024-11-07)
13+
3.11.0b5 (2024-11-10)
1414
=====================
1515

1616
Bug fixes
@@ -377,6 +377,38 @@ Miscellaneous internal changes
377377

378378

379379

380+
- Replace internal helper methods ``method_must_be_empty_body`` and ``status_code_must_be_empty_body`` with simple `set` lookups -- by :user:`bdraco`.
381+
382+
383+
*Related issues and pull requests on GitHub:*
384+
:issue:`9722`.
385+
386+
387+
388+
- Passing ``enable_cleanup_closed`` to :py:class:`aiohttp.TCPConnector` is now ignored on Python 3.12.7+ and 3.13.1+ since the underlying bug that caused asyncio to leak SSL connections has been fixed upstream -- by :user:`bdraco`.
389+
390+
391+
*Related issues and pull requests on GitHub:*
392+
:issue:`9726`, :issue:`9736`.
393+
394+
395+
396+
- Improved performance of :py:class:`aiohttp.BaseConnector` when there is no ``limit_per_host`` -- by :user:`bdraco`.
397+
398+
399+
*Related issues and pull requests on GitHub:*
400+
:issue:`9756`.
401+
402+
403+
404+
- Improved performance of sending HTTP requests when there is no body -- by :user:`bdraco`.
405+
406+
407+
*Related issues and pull requests on GitHub:*
408+
:issue:`9757`.
409+
410+
411+
380412

381413
----
382414

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.0b4"
1+
__version__ = "3.11.0b5"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)