Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v3.9.5 #8340

Merged
merged 7 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,40 @@

.. towncrier release notes start

Dreamsorcerer marked this conversation as resolved.
Show resolved Hide resolved
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 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 -- by :user:`Dreamsorcerer`.
Dreamsorcerer marked this conversation as resolved.
Show resolved Hide resolved


*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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.9.4.dev0"
__version__ = "3.9.5"

from typing import TYPE_CHECKING, Tuple

Expand Down
Loading