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

chore(deps): bump the poetry group with 13 updates #70

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 18, 2024

Bumps the poetry group with 13 updates:

Package From To
aiogram 3.13.1 3.15.0
aiohttp 3.10.10 3.10.11
alembic 1.13.3 1.14.0
asyncpg 0.29.0 0.30.0
colorlog 6.8.2 6.9.0
fastapi 0.115.2 0.115.5
fastapi-swagger 0.2.3 0.2.5
icalendar 5.0.13 6.0.1
pillow 10.4.0 11.0.0
pre-commit 3.8.0 4.0.1
redis 5.1.1 5.2.0
ruff 0.6.9 0.7.4
uvicorn 0.31.1 0.32.0

Updates aiogram from 3.13.1 to 3.15.0

Release notes

Sourced from aiogram's releases.

v3.15.0

What's Changed

Full Changelog: aiogram/aiogram@v3.14.0...v3.15.0

Bot API 7.11 and changed supported Python versions range

What's Changed

New Contributors

Full Changelog: aiogram/aiogram@v3.13.1...v3.14.0

Changelog

Sourced from aiogram's changelog.

3.15.0 (2024-11-17)

Features

  • Added full support for Bot API 8.0 <https://core.telegram.org/bots/api-changelog#november-17-2024>_

    • Added the parameter :code:subscription_period to the method :class:aiogram.methods.create_invoice_link.CreateInvoiceLink to support the creation of links that are billed periodically.
    • Added the parameter :code:business_connection_id to the method :class:aiogram.methods.create_invoice_link.CreateInvoiceLink to support the creation of invoice links on behalf of business accounts.
    • Added the fields :code:subscription_expiration_date, :code:is_recurring and :code:is_first_recurring to the class :class:aiogram.types.successful_payment.SuccessfulPayment.
    • Added the method :class:aiogram.methods.edit_user_star_subscription.EditUserStarSubscription.
    • Added the field :code:subscription_period to the class :class:aiogram.types.transaction_partner_user.TransactionPartnerUser.
    • Added the method :class:aiogram.methods.set_user_emoji_status.SetUserEmojiStatus. The user must allow the bot to manage their emoji status.
    • Added the class :class:aiogram.types.prepared_inline_message.PreparedInlineMessage and the method :class:aiogram.methods.save_prepared_inline_message.SavePreparedInlineMessage, allowing bots to suggest users send a specific message from a Mini App via the method :class:aiogram.methods.share_message.ShareMessage.
    • Added the classes :class:aiogram.types.gift.Gift and :class:aiogram.types.gifts.Gifts and the method :class:aiogram.methods.get_available_gifts.GetAvailableGifts, allowing bots to get all gifts available for sending.
    • Added the field :code:gift to the class :class:aiogram.types.transaction_partner_user.TransactionPartnerUser. [#1606](https://github.com/aiogram/aiogram/issues/1606) <https://github.com/aiogram/aiogram/issues/1606>_

3.14.0 (2024-11-02)

Misc

  • Checked compatibility with Python 3.13 (added to the CI/CD processes), so now aiogram is totally compatible with it.

    Dropped compatibility with Python 3.8 due to this version being EOL <https://devguide.python.org/versions/>_.

    .. warning::

    In some cases you will need to have the installed compiler (Rust or C++) to install some of the dependencies to compile packages from source on pip install command.

... (truncated)

Commits

Updates aiohttp from 3.10.10 to 3.10.11

Release notes

Sourced from aiohttp's releases.

3.10.11

Bug fixes

  • Authentication provided by a redirect now takes precedence over provided auth when making requests with the client -- by :user:PLPeeters.

    Related issues and pull requests on GitHub: #9436.

  • Fixed :py:meth:WebSocketResponse.close() <aiohttp.web.WebSocketResponse.close> to discard non-close messages within its timeout window after sending close -- by :user:lenard-mosys.

    Related issues and pull requests on GitHub: #9506.

  • Fixed a deadlock that could occur while attempting to get a new connection slot after a timeout -- by :user:bdraco.

    The connector was not cancellation-safe.

    Related issues and pull requests on GitHub: #9670, #9671.

  • Fixed the WebSocket flow control calculation undercounting with multi-byte data -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9686.

  • Fixed incorrect parsing of chunk extensions with the pure Python parser -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9851.

  • Fixed system routes polluting the middleware cache -- by :user:bdraco.

    Related issues and pull requests on GitHub:

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.11 (2024-11-13)

Bug fixes

  • Authentication provided by a redirect now takes precedence over provided auth when making requests with the client -- by :user:PLPeeters.

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

  • Fixed :py:meth:WebSocketResponse.close() <aiohttp.web.WebSocketResponse.close> to discard non-close messages within its timeout window after sending close -- by :user:lenard-mosys.

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

  • Fixed a deadlock that could occur while attempting to get a new connection slot after a timeout -- by :user:bdraco.

    The connector was not cancellation-safe.

    Related issues and pull requests on GitHub: :issue:9670, :issue:9671.

  • Fixed the WebSocket flow control calculation undercounting with multi-byte data -- by :user:bdraco.

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

  • Fixed incorrect parsing of chunk extensions with the pure Python parser -- by :user:bdraco.

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

  • Fixed system routes polluting the middleware cache -- by :user:bdraco.

... (truncated)

Commits
  • 3e09325 Remove 3.10.11rc0 from 3.10 changelog (#9858)
  • beb7b74 Release 3.10.11 (#9857)
  • 259edc3 [PR #9851/541d86d backport][3.10] Fix incorrect parsing of chunk extensions w...
  • bc15db6 [PR #9852/249855a backport][3.10] Fix system routes polluting the middleware ...
  • 158bf30 Release 3.10.11rc0 (#9848)
  • e5917cd [PR #9844/fabf3884 backport][3.10] Fix compressed get request benchmark paylo...
  • 68a1f42 [PR #9840/cc5fa316 backport][3.10] Add benchmark for sending compressed paylo...
  • 4f4b90f [PR #9835/32ccfc9a backport][3.10] Adjust client payload benchmarks to better...
  • f3dd0f9 [PR #9832/006f4070 backport][3.10] Increase allowed import time for Python 3....
  • f2aab2e [PR #9827/14fcfd4c backport][3.10] Adjust client GET read benchmarks to inclu...
  • Additional commits viewable in compare view

Updates alembic from 1.13.3 to 1.14.0

Release notes

Sourced from alembic's releases.

1.14.0

Released: November 4, 2024

usecase

  • [usecase] [runtime] Added a new hook to the DefaultImpl DefaultImpl.version_table_impl(). This allows third party dialects to define the exact structure of the alembic_version table, to include use cases where the table requires special directives and/or additional columns so that it may function correctly on a particular backend. This is not intended as a user-expansion hook, only a dialect implementation hook to produce a working alembic_version table. Pull request courtesy Maciek Bryński.

    References: #1560

Commits

Updates asyncpg from 0.29.0 to 0.30.0

Release notes

Sourced from asyncpg's releases.

v0.30.0

Support Python 3.13 and PostgreSQL 17.

Improvements

Fixes

  • s/quote/quote_plus/ in the note about DSN part quoting (by @​elprans in 1194a8a6 for #1151)

  • Use asyncio.run() instead of run_until_complete() (by @​eltoder in 9fcddfc1 for #1140)

  • Require async_timeout for python < 3.11 (#1177)

... (truncated)

Commits

Updates colorlog from 6.8.2 to 6.9.0

Commits

Updates fastapi from 0.115.2 to 0.115.5

Release notes

Sourced from fastapi's releases.

0.115.5

Refactors

Docs

... (truncated)

Commits
  • f057f4a 🔖 Release version 0.115.5
  • c6f021e 📝 Update release notes
  • 91a9293 ♻️ Update internal checks to support Pydantic 2.10 (#12914)
  • f716490 📝 Update release notes
  • c178106 📝 Update includes for docs/en/docs/tutorial/body.md (#12757)
  • 88cc900 📝 Update release notes
  • 20809a1 ⬆ [pre-commit.ci] pre-commit autoupdate (#12907)
  • 5a48c37 📝 Update release notes
  • 13892a3 📝 Update includes in docs/en/docs/advanced/testing-dependencies.md (#12647)
  • 9467000 📝 Update release notes
  • Additional commits viewable in compare view

Updates fastapi-swagger from 0.2.3 to 0.2.5

Release notes

Sourced from fastapi-swagger's releases.

v0.2.5

Package version: v0.2.5 🚀 Swagger UI version: v5.18.2

v0.2.4

Package version: v0.2.4 🚀 Swagger UI version: v5.18.1

Commits

Updates icalendar from 5.0.13 to 6.0.1

Release notes

Sourced from icalendar's releases.

v6.0.1

To view the changes, please see the Changelog. This release can be installed from PyPI.

v6.0.0

To view the changes, please see the Changelog. This release can be installed from PyPI.

v6.0.0a0

To view the changes, please see the Changelog. This release can be installed from PyPI.

Changelog

Sourced from icalendar's changelog.

6.0.1 (2024-10-13)

New features:

  • Added end, start, duration, DTSTART, DUE, and DURATION attributes to Event components. See Issue 662_.
  • Added end, start, duration, and DTSTART attributes to Journal components. See Issue 662_.

Bug fixes:

  • Fix a few __all__ variables.
  • Added missing docs folder to distribution packages. See Issue 712 <https://github.com/collective/icalendar/issues/712>_.

.. _Issue 662: collective/icalendar#662

6.0.0 (2024-09-28)

Minor changes:

  • Add __all__ variable to each modules in icalendar package
  • Improve test coverage.
  • Adapt test_with_doctest.py to correctly run on Windows.
  • Measure branch coverage when running tests.
  • Export Component base class for typing

New features:

  • Use pyproject.toml file instead of setup.py

Bug fixes:

  • Fix link to stable release of tox in documentation.
  • Fix a bad bytes replace in unescape_char.
  • Handle ValueError in vBinary.from_ical.
  • Ignore the BOM character in incorrectly encoded ics files.

6.0.0a0 (2024-07-03)

Minor changes:

  • Test that all code works with both pytz and zoneinfo.
  • Add message to GitHub release, pointing to the changelog
  • Make coverage report submission optional for pull requests
  • Parallelize coverage
  • Rename master branch to main, see Issue <https://github.com/collective/icalendar/issues/627>_
  • Update docs/usage.rst to use zoneinfo instead of pytz.
  • Added missing public classes and functions to API documentation.

... (truncated)

Commits
  • 4148315 Merge pull request #727 from niccokunzmann/release
  • 6c4fe1e version 6.0.1
  • f2c017d Merge pull request #720 from niccokunzmann/issue-712
  • 1907deb Merge pull request #721 from niccokunzmann/issue-662-event-properties
  • f031742 Update src/icalendar/tests/test_create_release.sh
  • 9b28ddb Update CHANGES.rst
  • 88d675b Update src/icalendar/cal.py
  • 012981d Update src/icalendar/cal.py
  • 95b7023 Add attributes for Journal
  • 35b15be py38 compatibility, ruff adjustment, better error messages tested
  • Additional commits viewable in compare view

Updates pillow from 10.4.0 to 11.0.0

Release notes

Sourced from pillow's releases.

11.0.0

https://pillow.readthedocs.io/en/stable/releasenotes/11.0.0.html

Changes

... (truncated)

Changelog

Sourced from pillow's changelog.

11.0.0 (2024-10-15)

  • Update licence to MIT-CMU #8460 [hugovk]

  • Conditionally define ImageCms type hint to avoid requiring core #8197 [radarhere]

  • Support writing LONG8 offsets in AppendingTiffWriter #8417 [radarhere]

  • Use ImageFile.MAXBLOCK when saving TIFF images #8461 [radarhere]

  • Do not close provided file handles with libtiff when saving #8458 [radarhere]

  • Support ImageFilter.BuiltinFilter for I;16* images #8438 [radarhere]

  • Use ImagingCore.ptr instead of ImagingCore.id #8341 [homm, radarhere, hugovk]

  • Updated EPS mode when opening images without transparency #8281 [Yay295, radarhere]

  • Use transparency when combining P frames from APNGs #8443 [radarhere]

  • Support all resampling filters when resizing I;16* images #8422 [radarhere]

  • Free memory on early return #8413 [radarhere]

  • Cast int before potentially exceeding INT_MAX #8402 [radarhere]

  • Check image value before use #8400 [radarhere]

  • Improved copying imagequant libraries #8420 [radarhere]

  • Use Capsule for WebP saving #8386 [homm, radarhere]

  • Fixed writing multiple StripOffsets to TIFF #8317 [Yay295, radarhere]

... (truncated)

Commits

Updates pre-commit from 3.8.0 to 4.0.1

Release notes

Sourced from pre-commit's releases.

pre-commit v4.0.1

Fixes

pre-commit v4.0.0

Features

Migrating

Changelog

Sourced from pre-commit's changelog.

4.0.1 - 2024-10-08

Fixes

4.0.0 - 2024-10-05

Features

Bumps the poetry group with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [aiogram](https://github.com/aiogram/aiogram) | `3.13.1` | `3.15.0` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.10` | `3.10.11` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.13.3` | `1.14.0` |
| [asyncpg](https://github.com/MagicStack/asyncpg) | `0.29.0` | `0.30.0` |
| [colorlog](https://github.com/borntyping/python-colorlog) | `6.8.2` | `6.9.0` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.115.2` | `0.115.5` |
| [fastapi-swagger](https://github.com/dantetemplar/fastapi-swagger) | `0.2.3` | `0.2.5` |
| [icalendar](https://github.com/collective/icalendar) | `5.0.13` | `6.0.1` |
| [pillow](https://github.com/python-pillow/Pillow) | `10.4.0` | `11.0.0` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.8.0` | `4.0.1` |
| [redis](https://github.com/redis/redis-py) | `5.1.1` | `5.2.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.9` | `0.7.4` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.31.1` | `0.32.0` |


Updates `aiogram` from 3.13.1 to 3.15.0
- [Release notes](https://github.com/aiogram/aiogram/releases)
- [Changelog](https://github.com/aiogram/aiogram/blob/dev-3.x/CHANGES.rst)
- [Commits](aiogram/aiogram@v3.13.1...v3.15.0)

Updates `aiohttp` from 3.10.10 to 3.10.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.10.10...v3.10.11)

Updates `alembic` from 1.13.3 to 1.14.0
- [Release notes](https://github.com/sqlalchemy/alembic/releases)
- [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/alembic/commits)

Updates `asyncpg` from 0.29.0 to 0.30.0
- [Release notes](https://github.com/MagicStack/asyncpg/releases)
- [Commits](MagicStack/asyncpg@v0.29.0...v0.30.0)

Updates `colorlog` from 6.8.2 to 6.9.0
- [Release notes](https://github.com/borntyping/python-colorlog/releases)
- [Commits](borntyping/python-colorlog@v6.8.2...v6.9.0)

Updates `fastapi` from 0.115.2 to 0.115.5
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.115.2...0.115.5)

Updates `fastapi-swagger` from 0.2.3 to 0.2.5
- [Release notes](https://github.com/dantetemplar/fastapi-swagger/releases)
- [Commits](dantetemplar/fastapi-swagger@v0.2.3...v0.2.5)

Updates `icalendar` from 5.0.13 to 6.0.1
- [Release notes](https://github.com/collective/icalendar/releases)
- [Changelog](https://github.com/collective/icalendar/blob/main/CHANGES.rst)
- [Commits](collective/icalendar@v5.0.13...v6.0.1)

Updates `pillow` from 10.4.0 to 11.0.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@10.4.0...11.0.0)

Updates `pre-commit` from 3.8.0 to 4.0.1
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.8.0...v4.0.1)

Updates `redis` from 5.1.1 to 5.2.0
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v5.1.1...v5.2.0)

Updates `ruff` from 0.6.9 to 0.7.4
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.9...0.7.4)

Updates `uvicorn` from 0.31.1 to 0.32.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.31.1...0.32.0)

---
updated-dependencies:
- dependency-name: aiogram
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: aiohttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: alembic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: asyncpg
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: colorlog
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: fastapi
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: fastapi-swagger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry
- dependency-name: icalendar
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: poetry
- dependency-name: redis
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: ruff
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 20, 2024

Superseded by #71.

@dependabot dependabot bot closed this Nov 20, 2024
@dependabot dependabot bot deleted the dependabot/pip/poetry-4d1300b4f9 branch November 20, 2024 22:13
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.

0 participants