Skip to content

Commit

Permalink
Release 3.10.11 (#9857)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 13, 2024
1 parent 259edc3 commit beb7b74
Show file tree
Hide file tree
Showing 15 changed files with 221 additions and 18 deletions.
220 changes: 220 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,226 @@

.. towncrier release notes start
3.10.11 (2024-11-13)
====================

Bug fixes
---------

- Authentication provided by a redirect now takes precedence over provided ``auth`` when making requests with the client -- by :user:`PLPeeters`.


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



- Fixed :py:meth:`WebSocketResponse.close() <aiohttp.web.WebSocketResponse.close>` to discard non-close messages within its timeout window after sending close -- by :user:`lenard-mosys`.


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



- Fixed a deadlock that could occur while attempting to get a new connection slot after a timeout -- by :user:`bdraco`.

The connector was not cancellation-safe.


*Related issues and pull requests on GitHub:*
:issue:`9670`, :issue:`9671`.



- Fixed the WebSocket flow control calculation undercounting with multi-byte data -- by :user:`bdraco`.


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



- Fixed incorrect parsing of chunk extensions with the pure Python parser -- by :user:`bdraco`.


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



- Fixed system routes polluting the middleware cache -- by :user:`bdraco`.


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




Removals and backward incompatible breaking changes
---------------------------------------------------

- Improved performance of the connector when a connection can be reused -- by :user:`bdraco`.

If ``BaseConnector.connect`` has been subclassed and replaced with custom logic, the ``ceil_timeout`` must be added.


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




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

- Improved performance of the client request lifecycle when there are no cookies -- by :user:`bdraco`.


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



- Improved performance of sending client requests when the writer can finish synchronously -- by :user:`bdraco`.


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



- Improved performance of serializing HTTP headers -- by :user:`bdraco`.


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



- 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`.


*Related issues and pull requests on GitHub:*
:issue:`9726`, :issue:`9736`.




----


3.10.11rc0 (2024-11-13)
=======================

Bug fixes
---------

- Authentication provided by a redirect now takes precedence over provided ``auth`` when making requests with the client -- by :user:`PLPeeters`.


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



- Fixed :py:meth:`WebSocketResponse.close() <aiohttp.web.WebSocketResponse.close>` to discard non-close messages within its timeout window after sending close -- by :user:`lenard-mosys`.


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



- Fixed a deadlock that could occur while attempting to get a new connection slot after a timeout -- by :user:`bdraco`.

The connector was not cancellation-safe.


*Related issues and pull requests on GitHub:*
:issue:`9670`, :issue:`9671`.



- Fixed the WebSocket flow control calculation undercounting with multi-byte data -- by :user:`bdraco`.


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



- Fixed incorrect parsing of chunk extensions with the pure Python parser -- by :user:`bdraco`.


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



- Fixed system routes polluting the middleware cache -- by :user:`bdraco`.


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




Removals and backward incompatible breaking changes
---------------------------------------------------

- Improved performance of the connector when a connection can be reused -- by :user:`bdraco`.

If ``BaseConnector.connect`` has been subclassed and replaced with custom logic, the ``ceil_timeout`` must be added.


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




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

- Improved performance of the client request lifecycle when there are no cookies -- by :user:`bdraco`.


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



- Improved performance of sending client requests when the writer can finish synchronously -- by :user:`bdraco`.


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



- Improved performance of serializing HTTP headers -- by :user:`bdraco`.


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



- 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`.


*Related issues and pull requests on GitHub:*
:issue:`9726`, :issue:`9736`.




----


3.10.11rc0 (2024-11-12)
=======================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/9436.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9506.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/9600.breaking.rst

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9670.bugfix.rst

This file was deleted.

3 changes: 0 additions & 3 deletions CHANGES/9671.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9686.bugfix.rst

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9851.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/9852.bugfix.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.10.11rc0"
__version__ = "3.10.11"

from typing import TYPE_CHECKING, Tuple

Expand Down

0 comments on commit beb7b74

Please sign in to comment.