Skip to content

Commit 6333c02

Browse files
Release v3.9.1 (#7911)
1 parent 9dbd273 commit 6333c02

File tree

7 files changed

+32
-6
lines changed

7 files changed

+32
-6
lines changed

CHANGES.rst

+31
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,37 @@
1010

1111
.. towncrier release notes start
1212
13+
3.9.1 (2023-11-26)
14+
==================
15+
16+
Bugfixes
17+
--------
18+
19+
- Fixed importing aiohttp under PyPy on Windows.
20+
21+
`#7848 <https://github.com/aio-libs/aiohttp/issues/7848>`_
22+
23+
- Fixed async concurrency safety in websocket compressor.
24+
25+
`#7865 <https://github.com/aio-libs/aiohttp/issues/7865>`_
26+
27+
- Fixed ``ClientResponse.close()`` releasing the connection instead of closing.
28+
29+
`#7869 <https://github.com/aio-libs/aiohttp/issues/7869>`_
30+
31+
- Fixed a regression where connection may get closed during upgrade. -- by :user:`Dreamsorcerer`
32+
33+
`#7879 <https://github.com/aio-libs/aiohttp/issues/7879>`_
34+
35+
- Fixed messages being reported as upgraded without an Upgrade header in Python parser. -- by :user:`Dreamsorcerer`
36+
37+
`#7895 <https://github.com/aio-libs/aiohttp/issues/7895>`_
38+
39+
40+
41+
----
42+
43+
1344
3.9.0 (2023-11-18)
1445
==================
1546

CHANGES/7848.bugfix

-1
This file was deleted.

CHANGES/7865.bugfix

-1
This file was deleted.

CHANGES/7869.bugfix

-1
This file was deleted.

CHANGES/7879.bugfix

-1
This file was deleted.

CHANGES/7895.bugfix

-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.0.dev0"
1+
__version__ = "3.9.1"
22

33
from typing import TYPE_CHECKING, Tuple
44

0 commit comments

Comments
 (0)