Skip to content

Commit a15febd

Browse files
authored
Release 3.12.12 (#11183)
1 parent e2b24d7 commit a15febd

File tree

4 files changed

+27
-3
lines changed

4 files changed

+27
-3
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.12.12 (2025-06-09)
14+
====================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed cookie unquoting to properly handle octal escape sequences in cookie values (e.g., ``\012`` for newline) by vendoring the correct ``_unquote`` implementation from Python's ``http.cookies`` module -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`11173`.
24+
25+
26+
27+
- Fixed ``Cookie`` header parsing to treat attribute names as regular cookies per :rfc:`6265#section-5.4` -- by :user:`bdraco`.
28+
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`11178`.
32+
33+
34+
35+
36+
----
37+
38+
1339
3.12.11 (2025-06-07)
1440
====================
1541

CHANGES/11173.bugfix.rst

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

CHANGES/11178.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.12.12.dev0"
1+
__version__ = "3.12.12"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)