diff --git a/CHANGES.rst b/CHANGES.rst index 30996a47fba..1dd34019404 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -10,7 +10,7 @@ .. towncrier release notes start -3.11.0rc1 (2024-11-10) +3.11.0rc2 (2024-11-12) ====================== Bug fixes @@ -180,6 +180,14 @@ Features +- Added an :attr:`~aiohttp.abc.AbstractAccessLogger.enabled` property to :class:`aiohttp.abc.AbstractAccessLogger` to dynamically check if logging is enabled -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9822`. + + + Deprecations (removal in next major release) -------------------------------------------- @@ -417,6 +425,22 @@ Miscellaneous internal changes +- Improved performance of the ``WebsocketWriter`` when the protocol is not paused -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9796`. + + + +- Implemented zero copy writes for ``StreamWriter`` -- by :user:`bdraco`. + + + *Related issues and pull requests on GitHub:* + :issue:`9839`. + + + ---- diff --git a/aiohttp/__init__.py b/aiohttp/__init__.py index 3efa6ffe54b..62501256a2c 100644 --- a/aiohttp/__init__.py +++ b/aiohttp/__init__.py @@ -1,4 +1,4 @@ -__version__ = "3.11.0rc1" +__version__ = "3.11.0rc2" from typing import TYPE_CHECKING, Tuple