Skip to content

Commit a5f9db6

Browse files
committed
Merge branch '3.10' into 3.11
2 parents 0547f80 + f1e4213 commit a5f9db6

File tree

5 files changed

+44
-22
lines changed

5 files changed

+44
-22
lines changed

CHANGES.rst

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,50 @@
1010

1111
.. towncrier release notes start
1212
13+
3.10.1 (2024-08-03)
14+
========================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed WebSocket server heartbeat timeout logic to terminate :py:meth:`~aiohttp.ClientWebSocketResponse.receive` and return :py:class:`~aiohttp.ServerTimeoutError` -- by :user:`arcivanov`.
20+
21+
When a WebSocket pong message was not received, the :py:meth:`~aiohttp.ClientWebSocketResponse.receive` operation did not terminate. This change causes ``_pong_not_received`` to feed the ``reader`` an error message, causing pending :py:meth:`~aiohttp.ClientWebSocketResponse.receive` to terminate and return the error message. The error message contains the exception :py:class:`~aiohttp.ServerTimeoutError`.
22+
23+
24+
*Related issues and pull requests on GitHub:*
25+
:issue:`8540`.
26+
27+
28+
29+
- Fixed url dispatcher index not matching when a variable is preceded by a fixed string after a slash -- by :user:`bdraco`.
30+
31+
32+
*Related issues and pull requests on GitHub:*
33+
:issue:`8566`.
34+
35+
36+
37+
38+
Removals and backward incompatible breaking changes
39+
---------------------------------------------------
40+
41+
- Creating :py:class:`aiohttp.TCPConnector`, :py:class:`aiohttp.ClientSession`, :py:class:`~aiohttp.resolver.ThreadedResolver` :py:class:`aiohttp.web.Server`, or :py:class:`aiohttp.CookieJar` instances without a running event loop now raises a :exc:`RuntimeError` -- by :user:`asvetlov`.
42+
43+
Creating these objects without a running event loop was deprecated in :issue:`3372` which was released in version 3.5.0.
44+
45+
This change first appeared in version 3.10.0 as :issue:`6378`.
46+
47+
48+
*Related issues and pull requests on GitHub:*
49+
:issue:`8555`, :issue:`8583`.
50+
51+
52+
53+
54+
----
55+
56+
1357
3.10.0 (2024-07-30)
1458
========================
1559

CHANGES/8540.bugfix.rst

Lines changed: 0 additions & 7 deletions
This file was deleted.

CHANGES/8555.breaking.rst

Lines changed: 0 additions & 13 deletions
This file was deleted.

CHANGES/8566.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGES/8583.breaking.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)