Skip to content

Commit 0d7352a

Browse files
authored
Release 3.11.10 (#10128)
1 parent 5ddff95 commit 0d7352a

File tree

6 files changed

+35
-5
lines changed

6 files changed

+35
-5
lines changed

CHANGES.rst

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

1111
.. towncrier release notes start
1212
13+
3.11.10 (2024-12-05)
14+
====================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed race condition in :class:`aiohttp.web.FileResponse` that could have resulted in an incorrect response if the file was replaced on the file system during ``prepare`` -- by :user:`bdraco`.
20+
21+
22+
*Related issues and pull requests on GitHub:*
23+
:issue:`10101`, :issue:`10113`.
24+
25+
26+
27+
- Replaced deprecated call to :func:`mimetypes.guess_type` with :func:`mimetypes.guess_file_type` when using Python 3.13+ -- by :user:`bdraco`.
28+
29+
30+
*Related issues and pull requests on GitHub:*
31+
:issue:`10102`.
32+
33+
34+
35+
- Disabled zero copy writes in the ``StreamWriter`` -- by :user:`bdraco`.
36+
37+
38+
*Related issues and pull requests on GitHub:*
39+
:issue:`10125`.
40+
41+
42+
43+
44+
----
45+
46+
1347
3.11.9 (2024-12-01)
1448
===================
1549

CHANGES/10101.bugfix.rst

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

CHANGES/10102.bugfix.rst

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

CHANGES/10113.bugfix.rst

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

CHANGES/10125.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.11.10.dev0"
1+
__version__ = "3.11.10"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)