From 5bd2bf45177b6733a181a2e1437f0c6607b13a3b Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Sat, 25 Sep 2021 14:01:10 +0100 Subject: [PATCH 1/3] Bump required aiohttp version to 3.7.4 This release includes an important security fix (https://github.com/aio-libs/aiohttp/security/advisories/GHSA-v6wp-4m6f-gcjg) and many other improvements. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 19df9beb24e..015f321eaa9 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def get_long_description() -> str: "mypy_extensions>=0.4.3", ], extras_require={ - "d": ["aiohttp>=3.6.0"], + "d": ["aiohttp>=3.7.4"], "colorama": ["colorama>=0.4.3"], "python2": ["typed-ast>=1.4.2"], "uvloop": ["uvloop>=0.15.2"], From b6b958e73f74c195bd8750aca478a567a74da088 Mon Sep 17 00:00:00 2001 From: Zsolt Dollenstein Date: Sat, 25 Sep 2021 14:10:32 +0100 Subject: [PATCH 2/3] add changelog entry --- CHANGES.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES.md b/CHANGES.md index 2a9b649d25c..1ff2cea84ca 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ ### _Blackd_ - Remove dependency on aiohttp-cors (#2500) +- Bump required aiohttp version to 3.7.4 (#2509) ## 21.9b0 From 61399ae42f3267921061cc5bbf9efe302eed1966 Mon Sep 17 00:00:00 2001 From: Richard Si <63936253+ichard26@users.noreply.github.com> Date: Sat, 25 Sep 2021 13:20:56 -0400 Subject: [PATCH 3/3] Let's not forget about Pipfile --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 66ded8b8570..6c635a63c66 100644 --- a/Pipfile +++ b/Pipfile @@ -40,7 +40,7 @@ readme_renderer = "*" black = {editable = true, extras = ["d", "jupyter"], path = "."} [packages] -aiohttp = ">=3.6.0" +aiohttp = ">=3.7.4" platformdirs= ">=2" click = ">=8.0.0" mypy_extensions = ">=0.4.3"