Skip to content

Commit

Permalink
Bump aiohttp from 3.8.3 to 3.8.6 (#1222)
Browse files Browse the repository at this point in the history
* 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](aio-libs/aiohttp@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] <[email protected]>

* Fixed problematic test after aiohttp upgrade

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Soxoj <[email protected]>
  • Loading branch information
dependabot[bot] and soxoj authored Oct 15, 2023
1 parent aee1773 commit 7c5995f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
aiodns==3.0.0
aiohttp==3.8.3
aiohttp==3.8.6
aiohttp-socks==0.7.1
arabic-reshaper~=3.0.0
async-timeout==4.0.2
Expand Down
3 changes: 2 additions & 1 deletion tests/test_activation.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ async def test_import_aiohttp_cookies():
f.write(COOKIES_TXT)

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'
connector = aiohttp.TCPConnector(ssl=False)
Expand Down

0 comments on commit 7c5995f

Please sign in to comment.