Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the pip group with 2 updates #408

Merged
merged 1 commit into from
Dec 23, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 23, 2024

Bumps the pip group with 2 updates: aiohttp and python-socketio[asyncio_client].

Updates aiohttp from 3.11.10 to 3.11.11

Release notes

Sourced from aiohttp's releases.

3.11.11

Bug fixes

  • Updated :py:meth:~aiohttp.ClientSession.request to reuse the quote_cookie setting from ClientSession._cookie_jar when processing cookies parameter. -- by :user:Cycloctane.

    Related issues and pull requests on GitHub: #10093.

  • Fixed type of SSLContext for some static type checkers (e.g. pyright).

    Related issues and pull requests on GitHub: #10099.

  • Updated :meth:aiohttp.web.StreamResponse.write annotation to also allow :class:bytearray and :class:memoryview as inputs -- by :user:cdce8p.

    Related issues and pull requests on GitHub: #10154.

  • Fixed a hang where a connection previously used for a streaming download could be returned to the pool in a paused state. -- by :user:javitonino.

    Related issues and pull requests on GitHub: #10169.

Features

  • Enabled ALPN on default SSL contexts. This improves compatibility with some proxies which don't work without this extension. -- by :user:Cycloctane.

    Related issues and pull requests on GitHub: #10156.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.11.11 (2024-12-18)

Bug fixes

  • Updated :py:meth:~aiohttp.ClientSession.request to reuse the quote_cookie setting from ClientSession._cookie_jar when processing cookies parameter. -- by :user:Cycloctane.

    Related issues and pull requests on GitHub: :issue:10093.

  • Fixed type of SSLContext for some static type checkers (e.g. pyright).

    Related issues and pull requests on GitHub: :issue:10099.

  • Updated :meth:aiohttp.web.StreamResponse.write annotation to also allow :class:bytearray and :class:memoryview as inputs -- by :user:cdce8p.

    Related issues and pull requests on GitHub: :issue:10154.

  • Fixed a hang where a connection previously used for a streaming download could be returned to the pool in a paused state. -- by :user:javitonino.

    Related issues and pull requests on GitHub: :issue:10169.

Features

  • Enabled ALPN on default SSL contexts. This improves compatibility with some proxies which don't work without this extension. -- by :user:Cycloctane.

... (truncated)

Commits
  • 8aaaba3 Release 3.11.11 (#10181)
  • db56d74 [PR #10171/5185f93 backport][3.11] Stream unpauses protocol before releasing ...
  • 8c96a62 [PR #10093/7b5d54a backport][3.11] Use quote_cookie setting from ClientSess...
  • c80be67 [PR #10151/7c12b1a9 backport][3.11] Fix infinite callback loop when time is n...
  • 3680479 [PR #10156/00700458 backport][3.11] Add ALPN extension to client SSL Context ...
  • 7f38913 [PR #10154/3f07b1a3 backport][3.11] Update StreamResponse.write annotation fo...
  • b770b1a Fix type of SSLContext for some static type checkers (#10099) (#10145)
  • 489b664 [PR #10138/dbd77ad6 backport][3.11] Bump sphinx to 8.1.3 along with required ...
  • 87f0f48 Bump actions/cache from 4.1.2 to 4.2.0 (#10136)
  • 7b86843 [PR #10131/7f92bebb backport][3.11] Bump Python version for benchmarks to 3.1...
  • Additional commits viewable in compare view

Updates python-socketio[asyncio_client] from 5.11.4 to 5.12.0

Release notes

Sourced from python-socketio[asyncio_client]'s releases.

Release 5.12.0

See CHANGES.md for release notes.

Changelog

Sourced from python-socketio[asyncio_client]'s changelog.

python-socketio change log

Release 5.12.0 - 2024-12-18

  • Added a reason argument to the disconnect handler #1422 (commit)
  • Prevented starting multiple tasks for reconnection #1369 (commit) (thanks humayunsr!)
  • Fixed AsyncClient::wait() unexpected return after success reconnect #1407 (commit) (thanks Arseny!)
  • Removed old constructs from old and unsupported Python versions (commit)
  • Removed dependency on unittest.TestCase base class in unit tests (commit)
  • Adopted pyenv-asyncio for async unit tests (commit)
  • Adopted unittest.mock.AsyncMock in async unit tests (commit)
  • Fix typo with AsyncClient.connect example #1403 (commit) (thanks Peter Bierma!)
  • Documentation typo #1421 (commit) (thanks Masen Furer!)
  • Renamed flask-socketio references to python-socketio in documentation #1377 (commit)
  • Added Python 3.13 CI builds (commit)

Release 5.11.4 - 2024-09-02

  • Prevent crash when client sends empty event (commit)
  • Add missing to argument in manager's emit() method #1374 (commit) (thanks Pavieł Michalkievič!)
  • Reorganization of server documentation #1350 (commit)
  • Update documentation note about Sanic issues #1365 (commit)

Release 5.11.3 - 2024-06-19

  • New shutdown() method added to the client #1333 (commit)
  • Ignore catch-all namespace in client connections #1351 (commit)
  • Accept 0 as a callback id #1329 (commit) (thanks Ruslan Bel'kov!)
  • Minor updates to the server and client documentation (commit)
  • Remove outdated information in intro section of documentation #1337 (commit)
  • Fixed typos in server documentation #1331 (commit) (thanks John Sigg!)

Release 5.11.2 - 2024-03-24

  • Improved routing to catch-all namespace handlers #1316 (commit) (thanks asuka!)
  • Option to disable routing in ASGIApp (commit)

Release 5.11.1 - 2024-02-05

  • Connection retry option in the client #1306 (commit)
  • use Socket.IO sid in transport#1299 (commit)
  • Add support for Python 3.12 and drop 3.7 #1297 (commit) (thanks Hugo van Kemenade!)

Release 5.11.0 - 2024-01-06

  • Support catch-all namespaces #1288 (commit) (thanks mooomooo!)
  • Prevent pubsub managers from ever crashing #1262 (commit)
  • Hold references to background tasks to avoid garbage collection #1191 (commit)
  • Clearer documentation for the max_http_buffer_size argument #1272 (commit)
  • Improved catch-all handler documentation (commit)

... (truncated)

Commits
  • 06f50f8 Release 5.12.0
  • bd8555d Pass a reason argument to the disconnect handler (#1422)
  • 0b5c463 Adopted pyenv-asyncio for async unit tests
  • b6ee33e Prevent multiple tasks for reconnection (#1369)
  • 78d1124 fix AsyncClient::wait unexpected return after success reconnect (#1407)
  • db642bb Upgrade the code to more recent Python versions
  • bf5a05a server.py: teeny docstring typo fix (#1421)
  • b75d730 Bump path-to-regexp and express in /examples/server/javascript (#1418) #nolog
  • f5b686c Bump django in /examples/server/wsgi/django_socketio (#1417) #nolog
  • 3e95bb5 Bump path-to-regexp and express in /examples/client/javascript (#1416) #nolog
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the pip group with 2 updates: [aiohttp](https://github.com/aio-libs/aiohttp) and [python-socketio[asyncio_client]](https://github.com/miguelgrinberg/python-socketio).


Updates `aiohttp` from 3.11.10 to 3.11.11
- [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.11.10...v3.11.11)

Updates `python-socketio[asyncio_client]` from 5.11.4 to 5.12.0
- [Release notes](https://github.com/miguelgrinberg/python-socketio/releases)
- [Changelog](https://github.com/miguelgrinberg/python-socketio/blob/main/CHANGES.md)
- [Commits](miguelgrinberg/python-socketio@v5.11.4...v5.12.0)

---
updated-dependencies:
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: python-socketio[asyncio_client]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Dec 23, 2024
@kjy5 kjy5 merged commit b0df1a8 into main Dec 23, 2024
2 checks passed
@kjy5 kjy5 deleted the dependabot/pip/pip-6f540ba212 branch December 23, 2024 19:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant