JamesIves / discord-wow-armory-bot

⚔️🗡️ World of Warcraft bot for Discord which checks a characters item level, notable achievements and pve/pvp progression and posts it in the chat.
https://jamesiv.es/python/2017/07/18/discord-wow-bot
MIT License
33 stars 25 forks source link

Bump aiohttp from 3.5.4 to 3.6.1 #68

Closed dependabot-preview[bot] closed 5 years ago

dependabot-preview[bot] commented 5 years ago

Bumps aiohttp from 3.5.4 to 3.6.1.

Release notes *Sourced from [aiohttp's releases](https://github.com/aio-libs/aiohttp/releases).* > ## aiohttp 3.6.0 release > 3.6.0 (2019-09-06) > ================== > > Features > -------- > > - Add support for Named Pipes (Site and Connector) under Windows. This feature requires Proactor event loop to work. > `[#3629](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3629) `_ > - Removed `Transfer-Encoding: chunked` header from websocket responses to be compatible with more http proxy servers. > `[#3798](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3798) `_ > - Accept non-GET request for starting websocket handshake on server side. > `[#3980](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3980) `_ > > > Bugfixes > -------- > > - Raise a ClientResponseError instead of an AssertionError for a blank > HTTP Reason Phrase. > `[#3532](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3532) `_ > - Fix an issue where cookies would sometimes not be set during a redirect. > `[#3576](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3576) `_ > - Change normalize_path_middleware to use 308 redirect instead of 301. > > This behavior should prevent clients from being unable to use PUT/POST > methods on endpoints that are redirected because of a trailing slash. > `[#3579](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3579) `_ > - Drop the processed task from ``all_tasks()`` list early. It prevents logging about a task with unhandled exception when the server is used in conjunction with ``asyncio.run()``. > `[#3587](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3587) `_ > - ``Signal`` type annotation changed from `Signal[Callable[['TraceConfig'], Awaitable[None]]]` to `Signal[Callable[ClientSession, SimpleNamespace, ...]`. > `[#3595](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3595) `_ > - Use sanitized URL as Location header in redirects > `[#3614](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3614) `_ > - Improve typing annotations for multipart.py along with changes required > by mypy in files that references multipart.py. > `[#3621](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3621) `_ > - Close session created inside ``aiohttp.request`` when unhandled exception occurs > `[#3628](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3628) `_ > - Cleanup per-chunk data in generic data read. Memory leak fixed. > `[#3631](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3631) `_ > - Use correct type for add_view and family > `[#3633](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3633) `_ > - Fix _keepalive field in __slots__ of ``RequestHandler``. > `[#3644](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3644) `_ > - Properly handle ConnectionResetError, to silence the "Cannot write to closing > transport" exception when clients disconnect uncleanly. > `[#3648](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3648) `_ > - Suppress pytest warnings due to ``test_utils`` classes > `[#3660](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3660) `_ > ... (truncated)
Changelog *Sourced from [aiohttp's changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst).* > 3.6.1 (2019-09-19) > ================== > > Features > -------- > > - Compatibility with Python 3.8. [\#4056](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4056) > > Bugfixes > -------- > > - correct some exception string format [\#4068](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4068) > - Emit a warning when `ssl.OP_NO_COMPRESSION` is unavailable because the runtime is built against an outdated OpenSSL. [\#4052](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4052) > - Update multidict requirement to >= 4.5 [\#4057](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4057) > > Improved Documentation > ---------------------- > > - Provide pytest-aiohttp namespace for pytest fixtures in docs. [\#3723](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3723) > > ------------------------------------------------------------------------ > > 3.6.0 (2019-09-06) > ================== > > Features > -------- > > - Add support for Named Pipes (Site and Connector) under Windows. This feature requires Proactor event loop to work. [\#3629](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3629) > - Removed Transfer-Encoding: chunked header from websocket responses to be compatible with more http proxy servers. [\#3798](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3798) > - Accept non-GET request for starting websocket handshake on server side. [\#3980](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3980) > > Bugfixes > -------- > > - Raise a ClientResponseError instead of an AssertionError for a blank HTTP Reason Phrase. [\#3532](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3532) > - Fix an issue where cookies would sometimes not be set during a redirect. [\#3576](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3576) > - Change normalize\_path\_middleware to use 308 redirect instead of 301. > > This behavior should prevent clients from being unable to use PUT/POST methods on endpoints that are redirected because of a trailing slash. [\#3579](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3579) > - Drop the processed task from `all_tasks()` list early. It prevents logging about a task with unhandled exception when the server is used in conjunction with `asyncio.run()`. [\#3587](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3587) > - `Signal` type annotation changed from Signal\[Callable\[\['TraceConfig'\], Awaitable\[None\]\]\] to Signal\[Callable\[ClientSession, SimpleNamespace, ...\]. [\#3595](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3595) > - Use sanitized URL as Location header in redirects [\#3614](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3614) > - Improve typing annotations for multipart.py along with changes required by mypy in files that references multipart.py. [\#3621](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3621) > - Close session created inside `aiohttp.request` when unhandled exception occurs [\#3628](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3628) > - Cleanup per-chunk data in generic data read. Memory leak fixed. [\#3631](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3631) > - Use correct type for add\_view and family [\#3633](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3633) > - Fix \_keepalive field in \_\_slots\_\_ of `RequestHandler`. [\#3644](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3644) > - Properly handle ConnectionResetError, to silence the "Cannot write to closing transport" exception when clients disconnect uncleanly. [\#3648](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3648) > - Suppress pytest warnings due to `test_utils` classes [\#3660](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/3660) > ... (truncated)
Commits - [`37e5d61`](https://github.com/aio-libs/aiohttp/commit/37e5d61298703234b968b28f01bafa3434d920dd) Bump to 3.6.1 - [`a876b4d`](https://github.com/aio-libs/aiohttp/commit/a876b4d4da20b653bc0c88158fdefb60b7874544) [3.6] Compat python 3.8 ([#4056](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4056)). ([#4073](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4073)) - [`bd60ed1`](https://github.com/aio-libs/aiohttp/commit/bd60ed115c658ae1328467c51d203e4d041b506e) [3.6] Bump twine from 1.14.0 to 1.15.0 ([#4070](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4070)) - [`aa281c6`](https://github.com/aio-libs/aiohttp/commit/aa281c66f0be78aa52cfe974fcca6d3472e91062) Bump to 3.6.1b4 - [`814885f`](https://github.com/aio-libs/aiohttp/commit/814885f76831e26d67ac32f724bb31725a6ed650) [3.6] fix: correct exceptions string format ([#4068](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4068)) ([#4069](https://github-redirect.dependabot.com/aio-libs/aiohttp/issues/4069)) - [`3e0691c`](https://github.com/aio-libs/aiohttp/commit/3e0691c81ca83377e1f2ce412c7c0579163d23ac) Bump to 3.6.1b3 - [`009c5b7`](https://github.com/aio-libs/aiohttp/commit/009c5b73764b89a28170c76a27a0533d16653996) Fix python 3.5 support - [`7a8b107`](https://github.com/aio-libs/aiohttp/commit/7a8b10731506f66466bbb66ff6d1cfd249e9e7f4) Bump to 3.6.1b2 - [`bdb6435`](https://github.com/aio-libs/aiohttp/commit/bdb6435c7d98ba5be5ee6f5d65e628a071b153ee) Bump to 3.6.1b1 - [`e746b5d`](https://github.com/aio-libs/aiohttp/commit/e746b5db8747237d97b0f6b842cfd8b1228cd092) Bump to 3.6.1 - Additional commits viewable in [compare view](https://github.com/aio-libs/aiohttp/compare/v3.5.4...v3.6.1)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.
dependabot-preview[bot] commented 5 years ago

Superseded by #69.