Skip to content

Commit 91547df

Browse files
authored
Release 3.13.2 (aio-libs#11733)
1 parent 5c75e63 commit 91547df

File tree

6 files changed

+35
-5
lines changed

6 files changed

+35
-5
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.13.2 (2025-10-28)
14+
===================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed cookie parser to continue parsing subsequent cookies when encountering a malformed cookie that fails regex validation, such as Google's ``g_state`` cookie with unescaped quotes -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`11632`.
24+
25+
26+
27+
- Fixed loading netrc credentials from the default :file:`~/.netrc` (:file:`~/_netrc` on Windows) location when the :envvar:`NETRC` environment variable is not set -- by :user:`bdraco`.
28+
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`11713`, :issue:`11714`.
32+
33+
34+
35+
- Fixed WebSocket compressed sends to be cancellation safe. Tasks are now shielded during compression to prevent compressor state corruption. This ensures that the stateful compressor remains consistent even when send operations are cancelled -- by :user:`bdraco`.
36+
37+
38+
*Related issues and pull requests on GitHub:*
39+
:issue:`11725`.
40+
41+
42+
43+
44+
----
45+
46+
1347
3.13.1 (2025-10-17)
1448
===================
1549

CHANGES/11632.bugfix.rst

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

CHANGES/11713.bugfix.rst

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

CHANGES/11714.bugfix.rst

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

CHANGES/11725.bugfix.rst

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

aiohttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.13.1.dev0"
1+
__version__ = "3.13.2"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)