Skip to content

Commit ff12dad

Browse files
Release v3.13.1 (#11684)
1 parent b2ddca1 commit ff12dad

File tree

9 files changed

+83
-14
lines changed

9 files changed

+83
-14
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.13.1 (2025-10-17)
14+
===================
15+
16+
Features
17+
--------
18+
19+
- Make configuration options in ``AppRunner`` also available in ``run_app()``
20+
-- by :user:`Cycloctane`.
21+
22+
23+
*Related issues and pull requests on GitHub:*
24+
:issue:`11633`.
25+
26+
27+
28+
Bug fixes
29+
---------
30+
31+
- Switched to `backports.zstd` for Python <3.14 and fixed zstd decompression for chunked zstd streams -- by :user:`ZhaoMJ`.
32+
33+
Note: Users who installed ``zstandard`` for support on Python <3.14 will now need to install
34+
``backports.zstd`` instead (installing ``aiohttp[speedups]`` will do this automatically).
35+
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`11623`.
39+
40+
41+
42+
- Updated ``Content-Type`` header parsing to return ``application/octet-stream`` when header contains invalid syntax.
43+
See :rfc:`9110#section-8.3-5`.
44+
45+
-- by :user:`sgaist`.
46+
47+
48+
*Related issues and pull requests on GitHub:*
49+
:issue:`10889`.
50+
51+
52+
53+
- Fixed Python 3.14 support when built without ``zstd`` support -- by :user:`JacobHenner`.
54+
55+
56+
*Related issues and pull requests on GitHub:*
57+
:issue:`11603`.
58+
59+
60+
61+
- Fixed blocking I/O in the event loop when using netrc authentication by moving netrc file lookup to an executor -- by :user:`bdraco`.
62+
63+
64+
*Related issues and pull requests on GitHub:*
65+
:issue:`11634`.
66+
67+
68+
69+
- Fixed routing to a sub-application added via ``.add_domain()`` not working
70+
if the same path exists on the parent app. -- by :user:`Dreamsorcerer`.
71+
72+
73+
*Related issues and pull requests on GitHub:*
74+
:issue:`11673`.
75+
76+
77+
78+
79+
Packaging updates and notes for downstreams
80+
-------------------------------------------
81+
82+
- Moved core packaging metadata from :file:`setup.cfg` to :file:`pyproject.toml` per :pep:`621`
83+
-- by :user:`cdce8p`.
84+
85+
86+
*Related issues and pull requests on GitHub:*
87+
:issue:`9951`.
88+
89+
90+
91+
92+
----
93+
94+
1395
3.13.0 (2025-10-06)
1496
===================
1597

CHANGES/10889.bugfix.rst

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

CHANGES/11603.bugfix.rst

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

CHANGES/11623.bugfix

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

CHANGES/11633.feature.rst

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

CHANGES/11634.bugfix.rst

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

CHANGES/11673.bugfix.rst

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

CHANGES/9951.packaging.rst

Lines changed: 0 additions & 2 deletions
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.1"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)