Skip to content

Commit b844d42

Browse files
Release v3.9.5 (#8340)
Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <[email protected]>
1 parent 0415a4c commit b844d42

File tree

6 files changed

+38
-5
lines changed

6 files changed

+38
-5
lines changed

CHANGES.rst

+36
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,42 @@
1010

1111
.. towncrier release notes start
1212
13+
3.9.5 (2024-04-16)
14+
==================
15+
16+
Bug fixes
17+
---------
18+
19+
- Fixed "Unclosed client session" when initialization of
20+
:py:class:`~aiohttp.ClientSession` fails -- by :user:`NewGlad`.
21+
22+
23+
*Related issues and pull requests on GitHub:*
24+
:issue:`8253`.
25+
26+
27+
28+
- Fixed regression (from :pr:`8280`) with adding ``Content-Disposition`` to the ``form-data``
29+
part after appending to writer -- by :user:`Dreamsorcerer`/:user:`Olegt0rr`.
30+
31+
32+
*Related issues and pull requests on GitHub:*
33+
:issue:`8332`.
34+
35+
36+
37+
- Added default ``Content-Disposition`` in ``multipart/form-data`` responses to avoid broken
38+
form-data responses -- by :user:`Dreamsorcerer`.
39+
40+
41+
*Related issues and pull requests on GitHub:*
42+
:issue:`8335`.
43+
44+
45+
46+
47+
----
48+
1349

1450
3.9.4 (2024-04-11)
1551
==================

CHANGES/8253.bugfix

-1
This file was deleted.

CHANGES/8332.bugfix.rst

-1
This file was deleted.

CHANGES/8335.bugfix.rst

-1
This file was deleted.

aiohttp/__init__.py

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

33
from typing import TYPE_CHECKING, Tuple
44

docs/contributing-admins.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ first merge into the newer release branch (e.g. 3.8 into 3.9) and then to master
4747
the target branch (as tests have passed on the merge commit now).
4848
#. This should automatically consider the PR merged and delete the temporary branch.
4949

50-
Back on the original release branch, append ``.dev0`` to the version number in ``__init__.py``.
50+
Back on the original release branch, bump the version number and append ``.dev0`` in ``__init__.py``.
5151

5252
If doing a minor release:
5353

0 commit comments

Comments
 (0)