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 aiogram from 3.0.0b4 to 3.0.0b7 #8

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Feb 20, 2023

Bumps aiogram from 3.0.0b4 to 3.0.0b7.

Release notes

Sourced from aiogram's releases.

v3.0.0b7

Changes: https://docs.aiogram.dev/en/dev-3.x/changelog.html#b7-2023-02-18

Telegram Bot API 6.5

  • Added full support of Telegram API 6.5 (#1111)
  • Added is_persistent argument to ReplyKeyboardMarkup constructor

Bot API 6.4

  • Added full support of Bot API 6.4
  • Updated Chat.promote shortcut arguments (#1082)
  • Finally migrated from aioredis to redis.asyncio (#1074)
  • Added possibility to filter ChatJoinRequest by ChatTypeFilter (#1027)
  • Fixed warning about asyncio marker tests (#1078)

Bot API 6.3

  • Added full support of Bot API 6.3
  • Added missing params to chat shortcut functions create_invite_link, edit_invite_link (#1026)
  • Added native support of MagicFilter, you can read more about this type of filters in 3.x version documentation

Telegram Bot API 6.1

  • Added full support of Telegram Bot API 6.1
  • Ported web-app utils from 3.0 beta (docs)
  • Deprecated emoji module until 2.22 version
  • Added from_id property to Message (#899)
  • Now ChatTypeFilter works with inline queries (#915)
  • Fixed unregistering handlers from dispatcher (#932)
  • Rework warning for not defined fields in TelegramType (#931)
  • Add protect_content to webhook responses (#804)
  • Fixed Dispatcher.release_key (#908)
  • Fixed datetime serialization error on Windows (#880) (crutches with platform-specific code)

Bot API 5.7

  • 🚀 Support Bot API 5.7 (#824)
  • Small changes in doc-strings and annotations (#820, #818, #809)

Bot API 5.6

Bot API 5.5

  • 🚀 Added full support of Bot API 5.5 (#768)
  • Fixed webhook response header Retry-After (#765)
  • Fixed FSMContextProxy.update method (#755)
  • Fixed some of typos in documentation (#691)
  • Added new example for filters factory (#688)

... (truncated)

Changelog

Sourced from aiogram's changelog.

3.0.0b7 (2023-02-18)

.. warning::

Note that this version has incompatibility with Python 3.8-3.9 in case when you create an instance of Dispatcher outside of the any coroutine.

Sorry for the inconvenience, it will be fixed in the next version.

This code will not work:

.. code-block:: python

dp = Dispatcher()

def main():
...
dp.run_polling(...)

main()

But if you change it like this it should works as well:

.. code-block:: python

router = Router()

async def main():
dp = Dispatcher()
dp.include_router(router)
...
dp.start_polling(...)

asyncio.run(main())

Features

  • Added missing shortcuts, new enums, reworked old stuff

    Breaking All previously added enums is re-generated in new place - aiogram.enums instead of aiogram.types

    Added enums: :class:aiogram.enums.bot_command_scope_type.BotCommandScopeType, :class:aiogram.enums.chat_action.ChatAction, :class:aiogram.enums.chat_member_status.ChatMemberStatus, :class:aiogram.enums.chat_type.ChatType, :class:aiogram.enums.content_type.ContentType, :class:aiogram.enums.dice_emoji.DiceEmoji,

... (truncated)

Commits

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)

Bumps [aiogram](https://github.com/aiogram/aiogram) from 3.0.0b4 to 3.0.0b7.
- [Release notes](https://github.com/aiogram/aiogram/releases)
- [Changelog](https://github.com/aiogram/aiogram/blob/dev-3.x/CHANGES.rst)
- [Commits](aiogram/aiogram@v3.0.0-beta.4...v3.0.0b7)

---
updated-dependencies:
- dependency-name: aiogram
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Feb 20, 2023
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants