Skip to content

Commit

Permalink
Release 3.11.0b1 (#9632)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Nov 2, 2024
1 parent 594ceaf commit e503f7a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
37 changes: 36 additions & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

.. towncrier release notes start
3.11.0b0 (2024-10-28)
3.11.0b1 (2024-11-02)
=====================

Bug fixes
Expand Down Expand Up @@ -55,6 +55,14 @@ Features



- Added ``server_hostname`` parameter to ``ws_connect``.


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



- Exported :py:class:`~aiohttp.ClientWSTimeout` to top-level namespace -- by :user:`Dreamsorcerer`.


Expand Down Expand Up @@ -103,6 +111,15 @@ Features



- Updated :py:class:`~aiohttp.ClientSession` to support paths in ``base_url`` parameter.
``base_url`` paths must end with a ``/`` -- by :user:`Cycloctane`.


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



- Improved performance of reading WebSocket messages with a Cython implementation -- by :user:`bdraco`.


Expand Down Expand Up @@ -167,6 +184,16 @@ 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`.




Packaging updates and notes for downstreams
-------------------------------------------
Expand Down Expand Up @@ -274,6 +301,14 @@ Miscellaneous internal changes



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


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




----

Expand Down
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.11.0b0"
__version__ = "3.11.0b1"

from typing import TYPE_CHECKING, Tuple

Expand Down

0 comments on commit e503f7a

Please sign in to comment.