Skip to content

Commit fe0a6e6

Browse files
authored
Release 3.11.0rc2 (#9849)
1 parent 354489d commit fe0a6e6

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

CHANGES.rst

Lines changed: 25 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.0rc1 (2024-11-10)
13+
3.11.0rc2 (2024-11-12)
1414
======================
1515

1616
Bug fixes
@@ -180,6 +180,14 @@ Features
180180

181181

182182

183+
- Added an :attr:`~aiohttp.abc.AbstractAccessLogger.enabled` property to :class:`aiohttp.abc.AbstractAccessLogger` to dynamically check if logging is enabled -- by :user:`bdraco`.
184+
185+
186+
*Related issues and pull requests on GitHub:*
187+
:issue:`9822`.
188+
189+
190+
183191

184192
Deprecations (removal in next major release)
185193
--------------------------------------------
@@ -417,6 +425,22 @@ Miscellaneous internal changes
417425

418426

419427

428+
- Improved performance of the ``WebsocketWriter`` when the protocol is not paused -- by :user:`bdraco`.
429+
430+
431+
*Related issues and pull requests on GitHub:*
432+
:issue:`9796`.
433+
434+
435+
436+
- Implemented zero copy writes for ``StreamWriter`` -- by :user:`bdraco`.
437+
438+
439+
*Related issues and pull requests on GitHub:*
440+
:issue:`9839`.
441+
442+
443+
420444

421445
----
422446

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

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)