From fe0a6e6ee42c8647d95e646b252ef326848b23a9 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Tue, 12 Nov 2024 19:52:15 -0600 Subject: [PATCH] Release 3.11.0rc2 (#9849) --- CHANGES.rst | 26 +++++++++++++++++++++++++- aiohttp/__init__.py | 2 +- 2 files changed, 26 insertions(+), 2 deletions(-) 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