Skip to content

Commit d2d3621

Browse files
authored
Release 3.11.15 (#10659)
We yanked 3.11.13 and 3.11.14 and reverted #10464 because of #10617 so we are doing another release to make sure nobody has to go without the other fixes in .13 and .14 <img width="643" alt="Screenshot 2025-03-31 at 5 42 58 PM" src="https://github.com/user-attachments/assets/08317aa3-27f8-4400-87c1-15eeec0c3682" />
1 parent 7f7d681 commit d2d3621

File tree

7 files changed

+41
-8
lines changed

7 files changed

+41
-8
lines changed

CHANGES.rst

+40
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,46 @@
1010

1111
.. towncrier release notes start
1212
13+
3.11.15 (2025-03-31)
14+
====================
15+
16+
Bug fixes
17+
---------
18+
19+
- Reverted explicitly closing sockets if an exception is raised during ``create_connection`` -- by :user:`bdraco`.
20+
21+
This change originally appeared in aiohttp 3.11.13
22+
23+
24+
*Related issues and pull requests on GitHub:*
25+
:issue:`10464`, :issue:`10617`, :issue:`10656`.
26+
27+
28+
29+
30+
Miscellaneous internal changes
31+
------------------------------
32+
33+
- Improved performance of WebSocket buffer handling -- by :user:`bdraco`.
34+
35+
36+
*Related issues and pull requests on GitHub:*
37+
:issue:`10601`.
38+
39+
40+
41+
- Improved performance of serializing headers -- by :user:`bdraco`.
42+
43+
44+
*Related issues and pull requests on GitHub:*
45+
:issue:`10625`.
46+
47+
48+
49+
50+
----
51+
52+
1353
3.11.14 (2025-03-16)
1454
====================
1555

CHANGES/10464.bugfix.rst

-1
This file was deleted.

CHANGES/10601.misc.rst

-1
This file was deleted.

CHANGES/10617.bugfix.rst

-1
This file was deleted.

CHANGES/10625.misc.rst

-1
This file was deleted.

CHANGES/10656.bugfix.rst

-3
This file was deleted.

aiohttp/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.11.15.dev0"
1+
__version__ = "3.11.15"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)