Skip to content

Commit

Permalink
Release v3.9.5 (#8340)
Browse files Browse the repository at this point in the history
Co-authored-by: Sviatoslav Sydorenko (Святослав Сидоренко) <sviat@redhat.com>
  • Loading branch information
Dreamsorcerer and webknjaz committed Apr 16, 2024
1 parent 0415a4c commit b844d42
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 5 deletions.
36 changes: 36 additions & 0 deletions CHANGES.rst
Expand Up @@ -10,6 +10,42 @@

.. towncrier release notes start
3.9.5 (2024-04-16)
==================

Bug fixes
---------

- Fixed "Unclosed client session" when initialization of
:py:class:`~aiohttp.ClientSession` fails -- by :user:`NewGlad`.


*Related issues and pull requests on GitHub:*
:issue:`8253`.



- Fixed regression (from :pr:`8280`) with adding ``Content-Disposition`` to the ``form-data``
part after appending to writer -- by :user:`Dreamsorcerer`/:user:`Olegt0rr`.


*Related issues and pull requests on GitHub:*
:issue:`8332`.



- Added default ``Content-Disposition`` in ``multipart/form-data`` responses to avoid broken
form-data responses -- by :user:`Dreamsorcerer`.


*Related issues and pull requests on GitHub:*
:issue:`8335`.




----


3.9.4 (2024-04-11)
==================
Expand Down
1 change: 0 additions & 1 deletion CHANGES/8253.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/8332.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/8335.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion aiohttp/__init__.py
@@ -1,4 +1,4 @@
__version__ = "3.9.4.dev0"
__version__ = "3.9.5"

from typing import TYPE_CHECKING, Tuple

Expand Down
2 changes: 1 addition & 1 deletion docs/contributing-admins.rst
Expand Up @@ -47,7 +47,7 @@ first merge into the newer release branch (e.g. 3.8 into 3.9) and then to master
the target branch (as tests have passed on the merge commit now).
#. This should automatically consider the PR merged and delete the temporary branch.

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

If doing a minor release:

Expand Down

0 comments on commit b844d42

Please sign in to comment.