Skip to content

Commit 90b6cf6

Browse files
Release 3.12.14 (#11298)
1 parent 13b20a1 commit 90b6cf6

File tree

7 files changed

+60
-7
lines changed

7 files changed

+60
-7
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.12.14 (2025-07-10)
14+
====================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed file uploads failing with HTTP 422 errors when encountering 307/308 redirects, and 301/302 redirects for non-POST methods, by preserving the request body when appropriate per :rfc:`9110#section-15.4.3-3.1` -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`11270`.
24+
25+
26+
27+
- Fixed :py:meth:`ClientSession.close() <aiohttp.ClientSession.close>` hanging indefinitely when using HTTPS requests through HTTP proxies -- by :user:`bdraco`.
28+
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`11273`.
32+
33+
34+
35+
- Bumped minimum version of aiosignal to 1.4+ to resolve typing issues -- by :user:`Dreamsorcerer`.
36+
37+
38+
*Related issues and pull requests on GitHub:*
39+
:issue:`11280`.
40+
41+
42+
43+
44+
Features
45+
--------
46+
47+
- Added initial trailer parsing logic to Python HTTP parser -- by :user:`Dreamsorcerer`.
48+
49+
50+
*Related issues and pull requests on GitHub:*
51+
:issue:`11269`.
52+
53+
54+
55+
56+
Improved documentation
57+
----------------------
58+
59+
- Clarified exceptions raised by ``WebSocketResponse.send_frame`` et al.
60+
-- by :user:`DoctorJohn`.
61+
62+
63+
*Related issues and pull requests on GitHub:*
64+
:issue:`11234`.
65+
66+
67+
68+
69+
----
70+
71+
1372
3.12.13 (2025-06-14)
1473
====================
1574

CHANGES/11234.doc.rst

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

CHANGES/11269.feature.rst

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

CHANGES/11270.bugfix.rst

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

CHANGES/11273.bugfix.rst

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

CHANGES/11280.misc.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.14.dev0"
1+
__version__ = "3.12.14"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)