Skip to content

Commit 740112b

Browse files
authored
Release 3.11.0b4 (#9718)
1 parent e56a4fd commit 740112b

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.0b3 (2024-11-05)
13+
3.11.0b4 (2024-11-07)
1414
=====================
1515

1616
Bug fixes
@@ -48,6 +48,14 @@ Bug fixes
4848

4949

5050

51+
- 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`.
52+
53+
54+
*Related issues and pull requests on GitHub:*
55+
:issue:`9506`.
56+
57+
58+
5159
- Fixed a deadlock that could occur while attempting to get a new connection slot after a timeout -- by :user:`bdraco`.
5260

5361
The connector was not cancellation-safe.
@@ -68,6 +76,14 @@ Bug fixes
6876

6977

7078

79+
- Fixed the WebSocket flow control calculation undercounting with multi-byte data -- by :user:`bdraco`.
80+
81+
82+
*Related issues and pull requests on GitHub:*
83+
:issue:`9686`.
84+
85+
86+
7187

7288
Features
7389
--------
@@ -222,6 +238,14 @@ Removals and backward incompatible breaking changes
222238

223239

224240

241+
- Changed ``ClientRequest.request_info`` to be a `NamedTuple` to improve client performance -- by :user:`bdraco`.
242+
243+
244+
*Related issues and pull requests on GitHub:*
245+
:issue:`9692`.
246+
247+
248+
225249

226250
Packaging updates and notes for downstreams
227251
-------------------------------------------

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

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)