Skip to content

Commit 6d4ec02

Browse files
committed
Merge branch 'release/v3.8.3' into 3.8
2 parents 50203c4 + e4bce66 commit 6d4ec02

File tree

3 files changed

+32
-14
lines changed

3 files changed

+32
-14
lines changed

CHANGES.rst

Lines changed: 31 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,45 @@
1010

1111
.. towncrier release notes start
1212
13-
14-
3.8.2 (2022-09-20)
13+
3.8.3 (2022-09-21)
1514
==================
1615

16+
.. attention::
17+
18+
This is the last :doc:`aiohttp <index>` release tested under
19+
Python 3.6. The 3.9 stream is dropping it from the CI and the
20+
distribution package metadata.
21+
22+
Bugfixes
23+
--------
24+
25+
- Increased the upper boundary of the :doc:`multidict:index` dependency
26+
to allow for the version 6 -- by :user:`hugovk`.
27+
28+
It used to be limited below version 7 in :doc:`aiohttp <index>` v3.8.1 but
29+
was lowered in v3.8.2 via :pr:`6550` and never brought back, causing
30+
problems with dependency pins when upgrading. :doc:`aiohttp <index>` v3.8.3
31+
fixes that by recovering the original boundary of ``< 7``.
32+
`#6950 <https://github.com/aio-libs/aiohttp/issues/6950>`_
33+
34+
35+
----
36+
37+
38+
3.8.2 (2022-09-20, subsequently yanked on 2022-09-21)
39+
=====================================================
40+
1741
.. note::
1842

1943
This release has some compatibility fixes for Python 3.11 but it may
2044
still have some quirks. Some tests are still flaky in the CI.
2145

22-
.. attention::
46+
.. caution::
2347

24-
This is the last :doc:`aiohttp <index>` release tested under
25-
Python 3.6. The 3.9 stream is dropping it from the CI and the
26-
distribution package metadata.
48+
This release has been yanked from PyPI. Modern pip will not pick it
49+
up automatically. The reason is that is has ``multidict < 6`` set in
50+
the distribution package metadata (see :pr:`6950`). Please, use
51+
``aiohttp ~= 3.8.3, != 3.8.1`` instead, if you can.
2752

2853
Bugfixes
2954
--------

CHANGES/6950.bugfix

Lines changed: 0 additions & 7 deletions
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.8.2.post0.dev0"
1+
__version__ = "3.8.3.post0.dev0"
22

33
from typing import Tuple
44

0 commit comments

Comments
 (0)