Skip to content

Commit fbe830f

Browse files
authored
Release 3.12.15 (#11356)
1 parent 0d5a54c commit fbe830f

File tree

6 files changed

+58
-8
lines changed

6 files changed

+58
-8
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.12.15 (2025-07-28)
14+
====================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed :class:`~aiohttp.DigestAuthMiddleware` to preserve the algorithm case from the server's challenge in the authorization response. This improves compatibility with servers that perform case-sensitive algorithm matching (e.g., servers expecting ``algorithm=MD5-sess`` instead of ``algorithm=MD5-SESS``)
20+
-- by :user:`bdraco`.
21+
22+
23+
*Related issues and pull requests on GitHub:*
24+
:issue:`11352`.
25+
26+
27+
28+
29+
Improved documentation
30+
----------------------
31+
32+
- Remove outdated contents of ``aiohttp-devtools`` and ``aiohttp-swagger``
33+
from Web_advanced docs.
34+
-- by :user:`Cycloctane`
35+
36+
37+
*Related issues and pull requests on GitHub:*
38+
:issue:`11347`.
39+
40+
41+
42+
43+
Packaging updates and notes for downstreams
44+
-------------------------------------------
45+
46+
- Started including the ``llhttp`` :file:`LICENSE` file in wheels by adding ``vendor/llhttp/LICENSE`` to ``license-files`` in :file:`setup.cfg` -- by :user:`threexc`.
47+
48+
49+
*Related issues and pull requests on GitHub:*
50+
:issue:`11226`.
51+
52+
53+
54+
55+
Contributor-facing changes
56+
--------------------------
57+
58+
- Updated a regex in `test_aiohttp_request_coroutine` for Python 3.14.
59+
60+
61+
*Related issues and pull requests on GitHub:*
62+
:issue:`11271`.
63+
64+
65+
66+
67+
----
68+
69+
1370
3.12.14 (2025-07-10)
1471
====================
1572

CHANGES/11226.packaging.rst

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

CHANGES/11271.contrib.rst

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

CHANGES/11347.doc.rst

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

CHANGES/11352.bugfix.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.12.15.dev0"
1+
__version__ = "3.12.15"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)