Bump aiohttp from 3.8.3 to 3.8.6 (#1222)

* Bump aiohttp from 3.8.3 to 3.8.6

Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.3 to 3.8.6.
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](https://github.com/aio-libs/aiohttp/compare/v3.8.3...v3.8.6)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fixed problematic test after aiohttp upgrade

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Soxoj <soxoj@protonmail.com>
This commit is contained in:
dependabot[bot]
2023-10-15 21:34:21 +02:00
committed by GitHub
parent aee1773e0c
commit 7c5995f165
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
aiodns==3.0.0 aiodns==3.0.0
aiohttp==3.8.3 aiohttp==3.8.6
aiohttp-socks==0.7.1 aiohttp-socks==0.7.1
arabic-reshaper~=3.0.0 arabic-reshaper~=3.0.0
async-timeout==4.0.2 async-timeout==4.0.2
+2 -1
View File
@@ -41,7 +41,8 @@ async def test_import_aiohttp_cookies():
f.write(COOKIES_TXT) f.write(COOKIES_TXT)
cookie_jar = import_aiohttp_cookies(cookies_filename) cookie_jar = import_aiohttp_cookies(cookies_filename)
assert list(cookie_jar._cookies.keys()) == ['xss.is', 'httpbin.org'] # new aiohttp support
assert list(cookie_jar._cookies.keys()) in (['xss.is', 'httpbin.org'], [('xss.is', '/'), ('httpbin.org', '/')])
url = 'https://httpbin.org/cookies' url = 'https://httpbin.org/cookies'
connector = aiohttp.TCPConnector(ssl=False) connector = aiohttp.TCPConnector(ssl=False)