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 across 1 directory with 5 updates #40

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the poetry group with 5 updates in the / directory:

Package From To
aiogram 3.13.1 3.16.0
aiogram-dialog 2.2.0 2.3.0
aiohttp 3.10.10 3.11.11
pydantic-settings 2.5.2 2.7.0
ruff 0.6.9 0.8.4

Updates aiogram from 3.13.1 to 3.16.0

Release notes

Sourced from aiogram's releases.

v3.16.0

What's Changed

New Contributors

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

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.16.0 (2024-12-21)

Features

  • Added full support of Bot API 8.1<https://core.telegram.org/bots/api-changelog#december-4-2024>_:

    • Added the field :code:nanostar_amount to the class :class:aiogram.types.star_transaction.StarTransaction.
    • Added the class :class:aiogram.types.transaction_partner_affiliate_program.TransactionPartnerAffiliateProgram for transactions pertaining to incoming affiliate commissions.
    • Added the class :class:aiogram.types.affiliate_info.AffiliateInfo and the field :code:affiliate to the class :class:aiogram.types.transaction_partner_user.TransactionPartnerUser, allowing bots to identify the relevant affiliate in transactions with an affiliate commission. [#1617](https://github.com/aiogram/aiogram/issues/1617) <https://github.com/aiogram/aiogram/issues/1617>_

Bugfixes

  • Corrected the exception text of aiogram.methods.base.TelegramMethod.__await__ method. [#1616](https://github.com/aiogram/aiogram/issues/1616) <https://github.com/aiogram/aiogram/issues/1616>_

Misc

  • Increased max :code:pydantic version support from “<2.10” to “<2.11” [#1607](https://github.com/aiogram/aiogram/issues/1607) <https://github.com/aiogram/aiogram/issues/1607>_
  • Fixed closing tag for :code:tg-emoji in the :class:aiogram.utils.text_decoration.HtmlDecoration: use the same constant as for tag opening [#1608](https://github.com/aiogram/aiogram/issues/1608) <https://github.com/aiogram/aiogram/issues/1608>_
  • Increased max :code:aiohttp version support from “<3.11” to “<3.12” [#1615](https://github.com/aiogram/aiogram/issues/1615) <https://github.com/aiogram/aiogram/issues/1615>_

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.

... (truncated)

Commits

Updates aiogram-dialog from 2.2.0 to 2.3.0

Release notes

Sourced from aiogram-dialog's releases.

2.3.0

What's Changed

Full Changelog: Tishka17/aiogram_dialog@2.2.0...2.3.0

Commits
  • 3066b5f v2.3.0
  • 94b7f6e Merge pull request #449 from Tishka17/develop
  • 8a30174 Merge pull request #447 from Tishka17/feature/link_preview
  • eacc7bc Fix linter
  • 74d0d6e remove disable_web_page_preview usage, move example to mega bot
  • 71b3088 Merge pull request #448 from chirizxc/feature/link_preview
  • 22dd47b add docs to LinkPreview widget
  • bd56910 make url optional and add example for LinkPreview widget
  • d1b2e5c link preview prototype
  • a572eba Merge pull request #443 from chirizxc/develop
  • Additional commits viewable in compare view

Updates aiohttp from 3.10.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 pydantic-settings from 2.5.2 to 2.7.0

Release notes

Sourced from pydantic-settings's releases.

v2.7.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.6.1...v2.7.0

v2.6.1

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.6.0...v2.6.1

v2.6.0

What's Changed

... (truncated)

Commits
  • 95fae54 Prepare release 2.7.0 (#499)
  • b8968a7 Fix attribute error on Python 3.9 with typing.Sequence (#497)
  • 3667aed Improve field value parsing by adding NoDecode and ForceDecode annotation...
  • 2f498fe Change reference of default values validation in documentation (#496)
  • 7bcb6ed Add support for CLI kebab case flag. (#489)
  • 0b3e73d Relax default protected_namespaces (#483)
  • 3f831e9 Removing return type from the function in test (#491)
  • a903697 Strip annotated when getting submodels during CLI parsing. (#490)
  • a0924bc Fix alias resolution to use preferred key. (#481)
  • 6fe3bd1 Fix Secret field parsing (#478)
  • Additional commits viewable in compare view

Updates ruff from 0.6.9 to 0.8.4

Release notes

Sourced from ruff's releases.

0.8.4

Release Notes

Preview features

  • [airflow] Extend AIR302 with additional functions and classes (#15015)
  • [airflow] Implement moved-to-provider-in-3 for modules that has been moved to Airflow providers (AIR303) (#14764)
  • [flake8-use-pathlib] Extend check for invalid path suffix to include the case "." (PTH210) (#14902)
  • [perflint] Fix panic in PERF401 when list variable is after the for loop (#14971)
  • [perflint] Simplify finding the loop target in PERF401 (#15025)
  • [pylint] Preserve original value format (PLR6104) (#14978)
  • [ruff] Avoid false positives for RUF027 for typing context bindings (#15037)
  • [ruff] Check for ambiguous pattern passed to pytest.raises() (RUF043) (#14966)

Rule changes

  • [flake8-bandit] Check S105 for annotated assignment (#15059)
  • [flake8-pyi] More autofixes for redundant-none-literal (PYI061) (#14872)
  • [pydocstyle] Skip leading whitespace for D403 (#14963)
  • [ruff] Skip SQLModel base classes for mutable-class-default (RUF012) (#14949)

Bug

  • [perflint] Parenthesize walrus expressions in autofix for manual-list-comprehension (PERF401) (#15050)

Server

  • Check diagnostic refresh support from client capability which enables dynamic configuration for various editors (#15014)

Contributors

... (truncated)

Changelog

Sourced from ruff's changelog.

0.8.4

Preview features

  • [airflow] Extend AIR302 with additional functions and classes (#15015)
  • [airflow] Implement moved-to-provider-in-3 for modules that has been moved to Airflow providers (AIR303) (#14764)
  • [flake8-use-pathlib] Extend check for invalid path suffix to include the case "." (PTH210) (#14902)
  • [perflint] Fix panic in PERF401 when list variable is after the for loop (#14971)
  • [perflint] Simplify finding the loop target in PERF401 (#15025)
  • [pylint] Preserve original value format (PLR6104) (#14978)
  • [ruff] Avoid false positives for RUF027 for typing context bindings (#15037)
  • [ruff] Check for ambiguous pattern passed to pytest.raises() (RUF043) (#14966)

Rule changes

  • [flake8-bandit] Check S105 for annotated assignment (#15059)
  • [flake8-pyi] More autofixes for redundant-none-literal (PYI061) (#14872)
  • [pydocstyle] Skip leading whitespace for D403 (#14963)
  • [ruff] Skip SQLModel base classes for mutable-class-default (RUF012) (#14949)

Bug

  • [perflint] Parenthesize walrus expressions in autofix for manual-list-comprehension (PERF401) (#15050)

Server

  • Check diagnostic refresh support from client capability which enables dynamic configuration for various editors (#15014)

0.8.3

Preview features

  • Fix fstring formatting removing overlong implicit concatenated string in expression part (#14811)
  • [airflow] Add fix to remove deprecated keyword arguments (AIR302) (#14887)
  • [airflow]: Extend rule to include deprecated names for Airflow 3.0 (AIR302) (#14765 and #14804)
  • [flake8-bugbear] Improve error messages for except* (B025, B029, B030, B904) (#14815)
  • [flake8-bugbear] itertools.batched() without explicit strict (B911) (#14408)
  • [flake8-use-pathlib] Dotless suffix passed to Path.with_suffix() (PTH210) (#14779)
  • [pylint] Include parentheses and multiple comparators in check for boolean-chained-comparison (PLR1716) (#14781)
  • [ruff] Do not simplify round() calls (RUF046) (#14832)
  • [ruff] Don't emit used-dummy-variable on function parameters (RUF052) (#14818)
  • [ruff] Implement if-key-in-dict-del (RUF051) (#14553)
  • [ruff] Mark autofix for RUF052 as always unsafe (#14824)
  • [ruff] Teach autofix for used-dummy-variable about TypeVars etc. (RUF052) (#14819)

Rule changes

  • [flake8-bugbear] Offer unsafe autofix for no-explicit-stacklevel (B028) (#14829)
  • [flake8-pyi] Skip all type definitions in string-or-bytes-too-long (PYI053) (#14797)
  • [pyupgrade] Do not report when a UTF-8 comment is followed by a non-UTF-8 one (UP009) (#14728)

... (truncated)

Commits
  • 3bb0dac Bump version to 0.8.4 (#15064)
  • 40cba5d [red-knot] Cleanup various todo_type!() messages (#15063)
  • 596d80c [perflint] Parenthesize walrus expressions in autofix for `manual-list-comp...
  • d8b9a36 Disable actionlint hook by default when running pre-commit locally (#15061)
  • 85e71ba [flake8-bandit] Check S105 for annotated assignment (#15059)
  • 2802cbd Don't special-case class instances in unary expression inference (#15045)
  • ed2bce6 [red-knot] Report invalid exceptions (#15042)
  • f0012df Fix typos in RUF043.py (#15044)
  • 0fc4e8f Introduce InferContext (#14956)
  • ac81c72 [ruff] Ambiguous pattern passed to pytest.raises() (RUF043) (#14966)
  • 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 poetry group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [aiogram](https://github.com/aiogram/aiogram) | `3.13.1` | `3.16.0` |
| [aiogram-dialog](https://github.com/tishka17/aiogram_dialog) | `2.2.0` | `2.3.0` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.10` | `3.11.11` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.5.2` | `2.7.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.9` | `0.8.4` |



Updates `aiogram` from 3.13.1 to 3.16.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.16.0)

Updates `aiogram-dialog` from 2.2.0 to 2.3.0
- [Release notes](https://github.com/tishka17/aiogram_dialog/releases)
- [Commits](Tishka17/aiogram_dialog@2.2.0...2.3.0)

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

Updates `pydantic-settings` from 2.5.2 to 2.7.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.5.2...v2.7.0)

Updates `ruff` from 0.6.9 to 0.8.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.8.4)

---
updated-dependencies:
- dependency-name: aiogram
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: poetry
- dependency-name: aiogram-dialog
  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-minor
  dependency-group: poetry
- dependency-name: pydantic-settings
  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
...

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
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