.. towncrier-draft-entries:: [UPCOMING UPDATE]
This PR updates the codebase to support Python 3.14.
- Updated project dep aiohttp
- Updated development deps
- Fixed tests to support Py3.14
- Refactored uvloop using due to deprecation of asyncio.set_event_loop_police
This PR updates the codebase following the end of life for Python 3.9.
Reference: https://devguide.python.org/versions/
- Updated type annotations to Python 3.10+ style, replacing deprecated
List,Set, etc., with built-inlist,set, and related types. - Refactored code by simplifying nested
ifexpressions. - Updated several dependencies, including security-related upgrades.
- Updated type annotations to Python 3.10+ style, replacing deprecated
- Updated pydantic to 2.12, which supports Python 3.14 #1729
- Temporary silents warn when uvloop uses deprecated asyncio.iscoroutinefunction function in py3.14+ in tests #1739
Support validating init data using only bot id. #1715
Added full support for the Bot API 9.2:
Direct Messages in Channels
- Added the field
is_direct_messagesto the classes :class:`aiogram.types.chat.Chat` and :class:`aiogram.types.chat_full_info.ChatFullInfo`, indicating whether the chat is a direct messages chat. - Added the field
parent_chatto the class :class:`aiogram.types.chat_full_info.ChatFullInfo`, describing the parent channel for direct messages chats. - Added the class :class:`aiogram.types.direct_messages_topic.DirectMessagesTopic` representing a direct messages topic.
- Added the field
direct_messages_topicto the class :class:`aiogram.types.message.Message`, describing the direct messages topic associated with a message. - Added the parameter
direct_messages_topic_idto multiple sending methods for directing messages to specific direct message topics.
Suggested Posts
- Added the class :class:`aiogram.types.suggested_post_parameters.SuggestedPostParameters` representing parameters for suggested posts.
- Added the parameter
suggested_post_parametersto various sending methods, allowing bots to create suggested posts for channel approval. - Added the method :class:`aiogram.methods.approve_suggested_post.ApproveSuggestedPost`, allowing bots to approve suggested posts in direct messages chats.
- Added the method :class:`aiogram.methods.decline_suggested_post.DeclineSuggestedPost`, allowing bots to decline suggested posts in direct messages chats.
- Added the field
can_manage_direct_messagesto administrator-related classes :class:`aiogram.types.chat_administrator_rights.ChatAdministratorRights` and :class:`aiogram.types.chat_member_administrator.ChatMemberAdministrator`. - Added the class :class:`aiogram.types.suggested_post_info.SuggestedPostInfo` representing information about a suggested post.
- Added the class :class:`aiogram.types.suggested_post_price.SuggestedPostPrice` representing the price for a suggested post.
- Added service message classes for suggested post events:
- :class:`aiogram.types.suggested_post_approved.SuggestedPostApproved` and the field
suggested_post_approvedto :class:`aiogram.types.message.Message` - :class:`aiogram.types.suggested_post_approval_failed.SuggestedPostApprovalFailed` and the field
suggested_post_approval_failedto :class:`aiogram.types.message.Message` - :class:`aiogram.types.suggested_post_declined.SuggestedPostDeclined` and the field
suggested_post_declinedto :class:`aiogram.types.message.Message` - :class:`aiogram.types.suggested_post_paid.SuggestedPostPaid` and the field
suggested_post_paidto :class:`aiogram.types.message.Message` - :class:`aiogram.types.suggested_post_refunded.SuggestedPostRefunded` and the field
suggested_post_refundedto :class:`aiogram.types.message.Message`
- :class:`aiogram.types.suggested_post_approved.SuggestedPostApproved` and the field
Enhanced Checklists
- Added the field
checklist_task_idto the class :class:`aiogram.types.reply_parameters.ReplyParameters`, allowing replies to specific checklist tasks. - Added the field
reply_to_checklist_task_idto the class :class:`aiogram.types.message.Message`, indicating which checklist task a message is replying to.
Gifts Improvements
- Added the field
publisher_chatto the classes :class:`aiogram.types.gift.Gift` and :class:`aiogram.types.unique_gift.UniqueGift`, describing the chat that published the gift.
Additional Features
- Added the field
is_paid_postto the class :class:`aiogram.types.message.Message`, indicating whether a message is a paid post.
- Added the field
- Use hmac.compare_digest for validating WebApp data to prevent timing attacks. #1709
- Migrated MongoStorage from relying on deprecated motor package to using new async PyMongo. To use mongo storage with new async PyMongo, you need to install the PyMongo package instead of motor and just substitute deprecated MongoStorage with PyMongoStorage class, no other action needed. #1705
Refactor methods input types to calm down MyPy. #1682
Dict[str, Any] is replaced with Mapping[str, Any] in the following methods:
- FSMContext.set_data
- FSMContext.update_data
- BaseStorage.set_data
- BaseStorage.update_data
- BaseStorage's child methods
- SceneWizard.set_data
- SceneWizard.update_data
Add support for State type in scenes methods like goto, enter, get #1685
Added full support for the Bot API 9.1:
Checklists
- Added the class :class:`aiogram.types.checklist_task.ChecklistTask` representing a task in a checklist.
- Added the class :class:`aiogram.types.checklist.Checklist` representing a checklist.
- Added the class :class:`aiogram.types.input_checklist_task.InputChecklistTask` representing a task to add to a checklist.
- Added the class :class:`aiogram.types.input_checklist.InputChecklist` representing a checklist to create.
- Added the field
checklistto the classes :class:`aiogram.types.message.Message` and :class:`aiogram.types.external_reply_info.ExternalReplyInfo`, describing a checklist in a message. - Added the class :class:`aiogram.types.checklist_tasks_done.ChecklistTasksDone` and the field
checklist_tasks_doneto the class :class:`aiogram.types.message.Message`, describing a service message about status changes for tasks in a checklist (i.e., marked as done/not done). - Added the class :class:`aiogram.types.checklist_tasks_added.ChecklistTasksAdded` and the field
checklist_tasks_addedto the class :class:`aiogram.types.message.Message`, describing a service message about the addition of new tasks to a checklist. - Added the method :class:`aiogram.methods.send_checklist.SendChecklist`, allowing bots to send a checklist on behalf of a business account.
- Added the method :class:`aiogram.methods.edit_message_checklist.EditMessageChecklist`, allowing bots to edit a checklist on behalf of a business account.
Gifts
- Added the field
next_transfer_dateto the classes :class:`aiogram.types.owned_gift_unique.OwnedGiftUnique` and :class:`aiogram.types.unique_gift_info.UniqueGiftInfo`. - Added the field
last_resale_star_countto the class :class:`aiogram.types.unique_gift_info.UniqueGiftInfo`. - Added "resale" as the possible value of the field
originin the class :class:`aiogram.types.unique_gift_info.UniqueGiftInfo`.
General
- Increased the maximum number of options in a poll to 12.
- Added the method :class:`aiogram.methods.get_my_star_balance.GetMyStarBalance`, allowing bots to get their current balance of Telegram Stars.
- Added the class :class:`aiogram.types.direct_message_price_changed.DirectMessagePriceChanged` and the field
direct_message_price_changedto the class :class:`aiogram.types.message.Message`, describing a service message about a price change for direct messages sent to the channel chat.
Fixed an issue where the scene entry handler (
enter) was not receiving data passed to the context by middleware, which could result in aTypeError.Also updated the documentation to clarify how to enter the scene. #1672
Correctly pass error message in TelegramMigrateToChat. #1694
- Added documentation for changing state of another user in FSM #1633
- Fixed MyPy [return-value] error in InlineKeyboardBuilder().as_markup(). as_markup method now overloads parent class method and uses super(), to call parent's as_markup method. Also added correct type hint to as_markup's return in InlineKeyboardBuilder and ReplyKeyboardBuilder classes. #1677
- Changed Babel's pinned version from minor to major. #1681
- Increased max
aiohttpversion support from “<3.12” to “<3.13” #1700
Add different shortcut methods for
aiogram.utils.formatting.Text.as_kwargs()#1657Added full support for the Bot API 9.0:
Business Accounts
- Added the class :class:`aiogram.types.business_bot_rights.BusinessBotRights` and replaced
the field
can_replywith the fieldrightsof the type :class:`aiogram.types.business_bot_rights.BusinessBotRights` in the class :class:`aiogram.types.business_connection.BusinessConnection`. - Added the method :class:`aiogram.methods.read_business_message.ReadBusinessMessage`, allowing bots to mark incoming messages as read on behalf of a business account.
- Added the method :class:`aiogram.methods.delete_business_messages.DeleteBusinessMessages`, allowing bots to delete messages on behalf of a business account.
- Added the method :class:`aiogram.methods.set_business_account_name.SetBusinessAccountName`, allowing bots to change the first and last name of a managed business account.
- Added the method :class:`aiogram.methods.set_business_account_username.SetBusinessAccountUsername`, allowing bots to change the username of a managed business account.
- Added the method :class:`aiogram.methods.set_business_account_bio.SetBusinessAccountBio`, allowing bots to change the bio of a managed business account.
- Added the class :class:`aiogram.types.input_profile_photo.InputProfilePhoto`, describing a profile photo to be set.
- Added the methods :class:`aiogram.methods.set_business_account_profile_photo.SetBusinessAccountProfilePhoto` and :class:`aiogram.methods.remove_business_account_profile_photo.RemoveBusinessAccountProfilePhoto`, allowing bots to change the profile photo of a managed business account.
- Added the method :class:`aiogram.methods.set_business_account_gift_settings.SetBusinessAccountGiftSettings`, allowing bots to change the privacy settings pertaining to incoming gifts in a managed business account.
- Added the class :class:`aiogram.types.star_amount.StarAmount` and the method :class:`aiogram.methods.get_business_account_star_balance.GetBusinessAccountStarBalance`, allowing bots to check the current Telegram Star balance of a managed business account.
- Added the method :class:`aiogram.methods.transfer_business_account_stars.TransferBusinessAccountStars`, allowing bots to transfer Telegram Stars from the balance of a managed business account to their own balance for withdrawal.
- Added the classes :class:`aiogram.types.owned_gift_regular.OwnedGiftRegular`, :class:`aiogram.types.owned_gift_unique.OwnedGiftUnique`, :class:`aiogram.types.owned_gifts.OwnedGifts` and the method :class:`aiogram.methods.get_business_account_gifts.GetBusinessAccountGifts`, allowing bots to fetch the list of gifts owned by a managed business account.
- Added the method :class:`aiogram.methods.convert_gift_to_stars.ConvertGiftToStars`, allowing bots to convert gifts received by a managed business account to Telegram Stars.
- Added the method :class:`aiogram.methods.upgrade_gift.UpgradeGift`, allowing bots to upgrade regular gifts received by a managed business account to unique gifts.
- Added the method :class:`aiogram.methods.transfer_gift.TransferGift`, allowing bots to transfer unique gifts owned by a managed business account.
- Added the classes :class:`aiogram.types.input_story_content_photo.InputStoryContentPhoto` and :class:`aiogram.types.input_story_content_video.InputStoryContentVideo` representing the content of a story to post.
- Added the classes :class:`aiogram.types.story_area.StoryArea`, :class:`aiogram.types.story_area_position.StoryAreaPosition`, :class:`aiogram.types.location_address.LocationAddress`, :class:`aiogram.types.story_area_type_location.StoryAreaTypeLocation`, :class:`aiogram.types.story_area_type_suggested_reaction.StoryAreaTypeSuggestedReaction`, :class:`aiogram.types.story_area_type_link.StoryAreaTypeLink`, :class:`aiogram.types.story_area_type_weather.StoryAreaTypeWeather` and :class:`aiogram.types.story_area_type_unique_gift.StoryAreaTypeUniqueGift`, describing clickable active areas on stories.
- Added the methods :class:`aiogram.methods.post_story.PostStory`, :class:`aiogram.methods.edit_story.EditStory` and :class:`aiogram.methods.delete_story.DeleteStory`, allowing bots to post, edit and delete stories on behalf of a managed business account.
Mini Apps
- Added the field
DeviceStorage, allowing Mini Apps to use persistent local storage on the user's device. - Added the field
SecureStorage, allowing Mini Apps to use a secure local storage on the user's device for sensitive data.
Gifts
- Added the classes :class:`aiogram.types.unique_gift_model.UniqueGiftModel`, :class:`aiogram.types.unique_gift_symbol.UniqueGiftSymbol`, :class:`aiogram.types.unique_gift_backdrop_colors.UniqueGiftBackdropColors`, and :class:`aiogram.types.unique_gift_backdrop.UniqueGiftBackdrop` to describe the properties of a unique gift.
- Added the class :class:`aiogram.types.unique_gift.UniqueGift` describing a gift that was upgraded to a unique one.
- Added the class :class:`aiogram.types.accepted_gift_types.AcceptedGiftTypes` describing the types of gifts that are accepted by a user or a chat.
- Replaced the field
can_send_giftwith the fieldaccepted_gift_typesof the type :class:`aiogram.types.accepted_gift_types.AcceptedGiftTypes` in the class :class:`aiogram.types.chat_full_info.ChatFullInfo`. - Added the class :class:`aiogram.types.gift_info.GiftInfo` and the field
giftto the class :class:`aiogram.types.message.Message`, describing a service message about a regular gift that was sent or received. - Added the class :class:`aiogram.types.unique_gift_info.UniqueGiftInfo`
and the field
unique_giftto the class :class:`aiogram.types.message.Message`, describing a service message about a unique gift that was sent or received.
Telegram Premium
- Added the method :class:`aiogram.methods.gift_premium_subscription.GiftPremiumSubscription`, allowing bots to gift a user a Telegram Premium subscription paid in Telegram Stars.
- Added the field
premium_subscription_durationto the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`
for transactions involving a Telegram Premium subscription purchased by the bot. - Added the field
transaction_typeto the class:class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`, simplifying the differentiation and processing of all transaction types.
General
- Increased the maximum price for paid media to 10000 Telegram Stars.
- Increased the maximum price for a subscription period to 10000 Telegram Stars.
- Added the class :class:`aiogram.types.paid_message_price_changed.PaidMessagePriceChanged`
and the field
paid_message_price_changedto the class :class:`aiogram.types.message.Message`, describing a service message about a price change for paid messages sent to the chat. - Added the field
paid_star_countto the class :class:`aiogram.types.message.Message`, containing the number of Telegram Stars that were paid to send the message.
- Added the class :class:`aiogram.types.business_bot_rights.BusinessBotRights` and replaced
the field
Fix memory exhaustion in polling mode with concurrent updates.
Added a semaphore-based solution to limit the number of concurrent tasks when using
handle_as_tasks=Truein polling mode. This prevents Out of Memory (OOM) errors in memory-limited containers when there's a large queue of updates to process. You can now control the maximum number of concurrent updates with the newtasks_concurrency_limitparameter instart_polling()andrun_polling()methods. #1658Fix empty response into webhook.
We need to return something “empty”, and “empty” form doesn’t work since it’s sending only “end” boundary w/o “start”.
An empty formdata should look smth like this for Telegram to understand:
--webhookBoundaryvsF_aMHhspPjfOq7O0JNRg --webhookBoundaryvsF_aMHhspPjfOq7O0JNRg--
But aiohttp sends only the ending boundary:
--webhookBoundaryvsF_aMHhspPjfOq7O0JNRg--
Such response doesn't suit Telegram servers.
The fix replaces empty response with empty JSON response:
{}
- Fixed broken code block formatting in
router.rstcaused by incorrect indentation of directive options. #1666
- Bump pydantic upper bound from <2.11 to <2.12. Upgrading pydantic to version 2.11 significantly reduces resource consumption, more details on the pydantic blog post #1659
- Replaced
`loop.run_in_executor`with`asyncio.to_thread`for improved readability and consistency. #1661
Added TypedDict definitions for middleware context data to the dispatcher dependency injection docs.
So, now you can use :class:`aiogram.dispatcher.middleware.data.MiddlewareData` directly or extend it with your own data in the middlewares. #1637
Added new method :func:`aiogram.utils.deep_linking.create_startapp_link` to deep-linking module for creating "startapp" deep links. See also https://core.telegram.org/api/links#main-mini-app-links and https://core.telegram.org/api/links#direct-mini-app-links #1648, #1651
Fixed handling of default empty string ("") in CallbackData filter #1493
Resolved incorrect ordering of registered handlers in the :class:`aiogram.fsm.scene.Scene` object caused by
inspect.getmembersreturning sorted members. Handlers are now registered in the order of their definition within the class, ensuring proper execution sequence, especially when handling filters with different levels of specificity.For backward compatibility, the old behavior can be restored by setting the
attrs_resolver=inspect_members_resolverparameter in the :class:`aiogram.fsm.scene.Scene`:from aiogram.utils.class_attrs_resolver import inspect_members_resolver class MyScene(Scene, attrs_resolver=inspect_members_resolver):
In this case, the handlers will be registered in the order returned by
inspect.getmembers.By default, the
attrs_resolverparameter is set toget_sorted_mro_attrs_resolvernow, so you don't need to specify it explicitly. #1641
- Updated 🇺🇦Ukrainian docs translation #1650
Introduce Union types for streamlined type handling.
Implemented Union types across various modules to consolidate and simplify type annotations. This change replaces repetitive union declarations with reusable Union aliases, improving code readability and maintainability. #1592
Added full support for the Bot API 8.3:
- Added the parameter
chat_idto the method :class:`aiogram.methods.send_gift.SendGift`, allowing bots to send gifts to channel chats. - Added the field
can_send_giftto the class :class:`aiogram.types.chat_full_info.ChatFullInfo`. - Added the class :class:`aiogram.types.transaction_partner_chat.TransactionPartnerChat` describing transactions with chats.
- Added the fields
coverandstart_timestampto the class :class:`aiogram.types.video.Video`, containing a message-specific cover and a start timestamp for the video. - Added the parameters
coverandstart_timestampto the method :class:`aiogram.methods.send_video.SendVideo`, allowing bots to specify a cover and a start timestamp for the videos they send. - Added the fields
coverandstart_timestampto the classes :class:`aiogram.types.input_media_video.InputMediaVideo` and :class:`aiogram.types.input_paid_media_video.InputPaidMediaVideo`, allowing bots to edit video covers and start timestamps, and specify them for videos in albums and paid media. - Added the parameter
video_start_timestampto the methods :class:`aiogram.methods.forward_message.ForwardMessage` and :class:`aiogram.methods.copy_message.CopyMessage`, allowing bots to change the start timestamp for forwarded and copied videos. - Allowed adding reactions to most types of service messages.
- Added the parameter
- Fixed endless loop while adding buttons to the
KeyboardBuilder. #1595 - Change the
Downloadableprotocol to be non-writable to shut up type checking that checks code that uses thebot.download(...)method #1628 - Fix the regex pattern that finds the "bad characters" for deeplink payload. #1630
- Update
data: Dict[Any, str]todata: Dict[str, Any]#1634 - Fix small typo in the Scenes documentation #1640
- Removed redundant
Pathtostrconvertion on file download. #1612 - Increased max
redisversion support from “<5.1.0” to “<5.3.0” #1631
Added full support of the Bot API 8.2
- Added the methods :class:`aiogram.methods.verify_user.VerifyUser`, :class:`aiogram.methods.verify_chat.VerifyChat`, :class:`aiogram.methods.remove_user_verification.RemoveUserVerification` and :class:`aiogram.methods.remove_chat_verification.RemoveChatVerification`, allowing bots to manage verifications on behalf of an organization.
- Added the field
upgrade_star_countto the class :class:`aiogram.types.gift.Gift`. - Added the parameter
pay_for_upgradeto the method :class:`aiogram.methods.send_gift.SendGift`. - Removed the field
hide_urlfrom the class :class:`aiogram.types.inline_query_result_article.InlineQueryResultArticle`. Pass an empty string asurlinstead.
Added full support of Bot API 8.1:
- Added the field
nanostar_amountto 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
affiliateto the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`, allowing bots to identify the relevant affiliate in transactions with an affiliate commission.
- Added the field
- Corrected the exception text of aiogram.methods.base.TelegramMethod.__await__ method. #1616
- Increased max
pydanticversion support from “<2.10” to “<2.11” #1607 - Fixed closing tag for
tg-emojiin the :class:`aiogram.utils.text_decoration.HtmlDecoration`: use the same constant as for tag opening #1608 - Increased max
aiohttpversion support from “<3.11” to “<3.12” #1615
Added full support for Bot API 8.0
- Added the parameter
subscription_periodto the method :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` to support the creation of links that are billed periodically. - Added the parameter
business_connection_idto the method :class:`aiogram.methods.create_invoice_link.CreateInvoiceLink` to support the creation of invoice links on behalf of business accounts. - Added the fields
subscription_expiration_date,is_recurringandis_first_recurringto the class :class:`aiogram.types.successful_payment.SuccessfulPayment`. - Added the method :class:`aiogram.methods.edit_user_star_subscription.EditUserStarSubscription`.
- Added the field
subscription_periodto 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
giftto the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`.
- Added the parameter
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.
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.
- If you are using Windows, you will need to have the Visual Studio installed.
- If you are using Linux, you will need to have the build-essential package installed.
- If you are using macOS, you will need to have the Xcode installed.
When developers of this dependencies will release new versions with precompiled wheels for Windows, Linux and macOS, this action will not be necessary anymore until the next version of the Python interpreter.
Added business_connection_id to the :class:`aiogram.types.message.Message` API methods shortcuts.
Integrated the
business_connection_idattribute into various message manipulation methods, ensuring consistent data handling. This update eliminates the need to pass thebusiness_connection_idas a parameter, instead directly accessing it from the instance attributes. #1586
Add function
get_valueto all built-in storage implementations,FSMContextandSceneWizard#1431Enhanced the inheritance of handlers and actions in :ref:`Scenes <Scenes>`. Refactored to eliminate the copying of previously connected handlers and actions from parent scenes. Now, handlers are dynamically rebuilt based on the current class, properly utilizing class inheritance and enabling handler overrides.
That's mean that you can now override handlers and actions in the child scene, instead of copying and duplicating them. #1583
Added full support of Bot API 7.11
- Added the class :class:`aiogram.types.copy_text_button.CopyTextButton`
and the field
copy_textin the class :class:`aiogram.types.inline_keyboard_button.InlineKeyboardButton`, allowing bots to send and receive inline buttons that copy arbitrary text. - Added the parameter
allow_paid_broadcastto the methods :class:`aiogram.methods.send_message.SendMessage`, :class:`aiogram.methods.send_photo.SendPhoto`, :class:`aiogram.methods.send_video.SendVideo`, :class:`aiogram.methods.send_animation.SendAnimation`, :class:`aiogram.methods.send_audio.SendAudio`, :class:`aiogram.methods.send_document.SendDocument`, :class:`aiogram.methods.send_paid_media.SendPaidMedia`, :class:`aiogram.methods.send_sticker.SendSticker`, :class:`aiogram.methods.send_video_note.SendVideoNote`, :class:`aiogram.methods.send_voice.SendVoice`, :class:`aiogram.methods.send_location.SendLocation`, :class:`aiogram.methods.send_venue.SendVenue`, :class:`aiogram.methods.send_contact.SendContact`, :class:`aiogram.methods.send_poll.SendPoll`, :class:`aiogram.methods.send_dice.SendDice`, :class:`aiogram.methods.send_invoice.SendInvoice`, :class:`aiogram.methods.send_game.SendGame`, :class:`aiogram.methods.send_media_group.SendMediaGroup` and :class:`aiogram.methods.copy_message.CopyMessage`. - Added the class :class:`aiogram.types.transaction_partner_telegram_api.TransactionPartnerTelegramApi` for transactions related to paid broadcasted messages.
- Introduced the ability to add media to existing text messages using the method :class:`aiogram.methods.edit_message_media.EditMessageMedia`.
- Added support for hashtag and cashtag entities with a specified chat username that opens a search for the relevant tag within the specified chat.
- Added the class :class:`aiogram.types.copy_text_button.CopyTextButton`
and the field
Fix PytestDeprecationWarning thrown by pytest-asyncio when running the tests #1584
Fixed customized serialization in the :class:`aiogram.filters.callback_data.CallbackData` factory.
From now UUID will have 32 bytes length instead of 36 bytes (with no - separators) in the callback data representation. #1602
- Add missing closing tag for bold. #1599
Warning
Python 3.8 End of Life: Python 3.8 will reach its end of life (EOL) soon and will no longer be supported by aiogram in the next releases (1-2 months ETA).
Please upgrade to a newer version of Python to ensure compatibility and receive future updates.
- Increase max pydantic version support "<2.9" -> "<2.10" (only For Python >=3.9) #1576
- Bump aiofiles version upper bound to <24.2 #1577
- Fixed Default object annotation resolution using pydantic #1579
- Added updates about purchased paid media, represented by the class
:class:`aiogram.types.paid_media_purchased.PaidMediaPurchased`
and the field
purchased_paid_mediain the class :class:`aiogram.types.update.Update`. - Added the ability to specify a payload in
:class:`aiogram.methods.send_paid_media.SendPaidMedia` that is received back by the bot in
:class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`
and
purchased_paid_mediaupdates. - Added the field
prize_star_countto the classes :class:`aiogram.types.giveaway_created.GiveawayCreated`, :class:`aiogram.types.giveaway.Giveaway`, :class:`aiogram.types.giveaway_winners.GiveawayWinners` and :class:`aiogram.types.chat_boost_source_giveaway.ChatBoostSourceGiveaway`. - Added the field
is_star_giveawayto the class :class:`aiogram.types.giveaway_completed.GiveawayCompleted`.
- Added updates about purchased paid media, represented by the class
:class:`aiogram.types.paid_media_purchased.PaidMediaPurchased`
and the field
Added missing method aliases such as .answer(), .reply(), and others to InaccessibleMessage. This change ensures consistency and improves usability by aligning the functionality of InaccessibleMessage with the Message type. #1574
- Fixed link preview options to use global defaults in various types and methods to use global defaults for link_preview_options. This change ensures consistency and enhances flexibility in handling link preview options across different components. #1543
Added message_thread_id parameter to message.get_url(). #1451
Added getting user from chat_boost with source ChatBoostSourcePremium in UserContextMiddleware for EventContext #1474
Added full support of Bot API 7.8
- Added the ability to send paid media to any chat.
- Added the parameter
business_connection_idto the method :class:`aiogram.methods.send_paid_media.SendPaidMedia`, allowing bots to send paid media on behalf of a business account. - Added the field
paid_mediato the class :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser` for transactions involving paid media. - Added the method :class:`aiogram.methods.create_chat_subscription_invite_link.CreateChatSubscriptionInviteLink`, allowing bots to create subscription invite links.
- Added the method :class:`aiogram.methods.edit_chat_subscription_invite_link.EditChatSubscriptionInviteLink`, allowing bots to edit the name of subscription invite links.
- Added the field
until_dateto the class :class:`aiogram.types.chat_member_member.ChatMemberMember` for members with an active subscription. - Added support for paid reactions and the class :class:`aiogram.types.reaction_type_paid.ReactionTypePaid`.
- Improved performance of StatesGroup #1507
Added full support of Bot API 7.8
- Added the field
has_main_web_appto the class :class:`aiogram.types.user.User`, which is returned in the response to :class:`aiogram.methods.get_me.GetMe`. - Added the parameter
business_connection_idto the methods :class:`aiogram.methods.pin_chat_message.PinChatMessage` and :class:`aiogram.methods.unpin_chat_message.UnpinChatMessage`, allowing bots to manage pinned messages on behalf of a business account.
- Added the field
- Fixed URL path in the "Open" button at the "demo/sendMessage" endpoint in the web_app example. #1546
- Added method :func:`aiogram.types.message.Message.as_reply_parameters`.
Replaced usage of the argument
reply_to_message_idwithreply_parametersin all Message reply methods. #1538 - Added aiohttp v3.10 ` support. #1548
Added full support of Bot API 7.7
- Added the class :class:`aiogram.types.refunded_payment.RefundedPayment`, containing information about a refunded payment.
- Added the field
refunded_paymentto the class :class:`aiogram.types.message.Message`, describing a service message about a refunded payment.
Added ChatMember resolution tool and updated 2.x migration guide. #1525
Added full support of Bot API 7.6
- Added the classes :class:`aiogram.types.paid_media.PaidMedia`,
- :class:`aiogram.types.paid_media_info.PaidMediaInfo`, :class:`aiogram.types.paid_media_preview.PaidMediaPreview`, :class:`aiogram.types.paid_media_photo.PaidMediaPhoto` and :class:`aiogram.types.paid_media_video.PaidMediaVideo`, containing information about paid media.
- Added the method :class:`aiogram.methods.send_paid_media.SendPaidMedia`
- and the classes :class:`aiogram.types.input_paid_media.InputPaidMedia`, :class:`aiogram.types.input_paid_media_photo.InputPaidMediaPhoto` and :class:`aiogram.types.input_paid_media_video.InputPaidMediaVideo`, to support sending paid media.
- Documented that the methods :class:`aiogram.methods.copy_message.CopyMessage`
- and :class:`aiogram.methods.copy_messages.CopyMessages` cannot be used to copy paid media.
- Added the field
can_send_paid_mediato the class - :class:`aiogram.types.chat_full_info.ChatFullInfo`.
- Added the field
- Added the field
paid_mediato the classes - :class:`aiogram.types.message.Message` and :class:`aiogram.types.external_reply_info.ExternalReplyInfo`.
- Added the field
- Added the class
- :class:`aiogram.types.transaction_partner_telegram_ads.TransactionPartnerTelegramAds`, containing information about Telegram Star transactions involving the Telegram Ads Platform.
- Added the field
invoice_payloadto the class - :class:`aiogram.types.transaction_partner_user.TransactionPartnerUser`, containing the bot-specified invoice payload.
- Added the field
- Changed the default opening mode for Direct Link Mini Apps.
- Added support for launching Web Apps via t.me link in the class
- :class:`aiogram.types.menu_button_web_app.MenuButtonWebApp`.
- Added the field
section_separator_colorto the classThemeParams.
- Fixed event context resolving for the callback query that is coming from the business account #1520
Added utility to safely deserialize any Telegram object or method to a JSON-compatible object (dict). (:ref:`>> Read more <serialization-tool>`) #1450
Added full support of Bot API 7.5
- Added the classes :class:`aiogram.types.star_transactions.StarTransactions`,
- :class:`aiogram.types.star_transaction.StarTransaction`, :class:`aiogram.types.transaction_partner.TransactionPartner` and :class:`aiogram.types.revenue_withdrawal_state.RevenueWithdrawalState`, containing information about Telegram Star transactions involving the bot.
- Added the method :class:`aiogram.methods.get_star_transactions.GetStarTransactions`
- that can be used to get the list of all Telegram Star transactions for the bot.
- Added support for callback buttons in
- :class:`aiogram.types.inline_keyboard_markup.InlineKeyboardMarkup` for messages sent on behalf of a business account.
- Added support for callback queries originating from a message sent
- on behalf of a business account.
- Added the parameter
business_connection_idto the methods - :class:`aiogram.methods.edit_message_text.EditMessageText`, :class:`aiogram.methods.edit_message_media.EditMessageMedia`, :class:`aiogram.methods.edit_message_caption.EditMessageCaption`, :class:`aiogram.methods.edit_message_live_location.EditMessageLiveLocation`, :class:`aiogram.methods.stop_message_live_location.StopMessageLiveLocation` and :class:`aiogram.methods.edit_message_reply_markup.EditMessageReplyMarkup`, allowing the bot to edit business messages.
- Added the parameter
- Added the parameter
business_connection_idto the method - :class:`aiogram.methods.stop_poll.StopPoll`, allowing the bot to stop polls it sent on behalf of a business account.
- Added the parameter
- Increased DNS cache ttl setting to aiohttp session as a workaround for DNS resolution issues in aiohttp. #1500
- Fixed MongoStorage section in the documentation by adding extra dependency to ReadTheDocs configuration. #1501
- Added information about dependency changes to the
2.x --> 3.xmigration guide. #1504
[Only for contributors] Fail redis and mongo tests if incorrect URI provided + some storages tests refactoring
If incorrect URIs provided to "--redis" and/or "--mongo" options tests should fail with errors instead of skipping. Otherwise the next scenario is possible:
- developer breaks RedisStorage and/or MongoStorage code
- tests are run with incorrect redis and/or mongo URIsprovided by "--redis" and "--mongo" options (for example, wrong port specified)
- tests pass because skipping doesn't fail tests run
- developer or reviewer doesn't notice that redis and/or mongo tests were skipped
- broken code gets in codebase
Also some refactorings done (related with storages and storages tests). #1510
- Added new storage
aiogram.fsm.storage.MongoStoragefor Finite State Machine based on Mongo DB (usingmotorlibrary) #1434 - Added full support of Bot API 7.4 #1498
- Fixed wrong
MarkdownV2custom emoji parsing inaiogram.utils.text_decorations#1496
- Removed deprecated arguments from Bot class
parse_mode,disable_web_page_preview,protect_contentas previously announced in v3.4.0. #1494
- Improved code consistency and readability in code examples by refactoring imports, adjusting the base webhook URL, modifying bot instance initialization to utilize DefaultBotProperties, and updating router message handlers. #1482
- Added full support of Bot API 7.3 #1480
- Added telegram objects transformation block in 2.x -> 3.x migration guide #1412
Added message_thread_id parameter to ChatActionSender class methods. #1437
Added context manager interface to Bot instance, from now you can use:
async with Bot(...) as bot: ...
instead of
async with Bot(...).context() as bot: ...
- WebAppUser Class Fields: Added missing is_premium, added_to_attachment_menu, and allows_write_to_pm fields to WebAppUser class to align with the Telegram API.
- WebAppChat Class Implementation: Introduced the WebAppChat class with all its fields (id, type, title, username, and photo_url) as specified in the Telegram API, which was previously missing from the library.
- WebAppInitData Class Fields: Included previously omitted fields in the WebAppInitData class: chat, chat_type, chat_instance, to match the official documentation for a complete Telegram Web Apps support.
Fixed poll answer FSM context by handling
voter_chatforpoll_answerevent #1436Added missing error handling to
_background_feed_update(when inhandle_in_background=Truewebhook mode) #1458
- Added WebAppChat class to WebApp docs, updated uk_UA localisation of WebApp docs. #1433
- Added full support of Bot API 7.2 #1444
- Loosened pydantic version upper restriction from
<2.7to<2.8#1460
- Fixed JSON serialization of the
LinkPreviewOptionsclass while it is passed as bot-wide default options. #1418
Reworked bot-wide globals like
parse_mode,disable_web_page_preview, and others to be more flexible.Warning
Note that the old way of setting these global bot properties is now deprecated and will be removed in the next major release.
A new enum
KeyboardButtonPollTypeTypeforKeyboardButtonPollTypeType.typefield has bed added. #1398Added full support of Bot API 7.1
- Added support for the administrator rights
can_post_stories,can_edit_stories,can_delete_storiesin supergroups. - Added the class
ChatBoostAddedand the fieldboost_addedto the classMessagefor service messages about a user boosting a chat. - Added the field
sender_boost_countto the classMessage. - Added the field
reply_to_storyto the classMessage. - Added the fields
chatandidto the classStory. - Added the field
unrestrict_boost_countto the classChat. - Added the field
custom_emoji_sticker_set_nameto the classChat.
- Added support for the administrator rights
- Update KeyboardBuilder utility, fixed type-hints for button method, adjusted limits of the different markup types to real world values. #1399
- Added new
reply_parametersparam tomessage.send_copybecause it hasn't been added there #1403
- Add notion "Working with plural forms" in documentation Utils -> Translation #1395
Added full support of Bot API 7.0
- Reactions
- Replies 2.0
- Link Preview Customization
- Block Quotation
- Multiple Message Actions
- Requests for multiple users
- Chat Boosts
- Giveaway
- Other changes
- Introduced Scenes feature that helps you to simplify user interactions using Finite State Machine. Read more about 👉 :ref:`Scenes <Scenes>`. #1280
- Added the new FSM strategy
CHAT_TOPIC, which sets the state for the entire topic in the chat, also works in private messages and regular groups without topics. #1343
- Fixed
parse_modeargument in the inMessage.send_copyshortcut. Disable by default. #1332 - Added ability to get handler flags from filters. #1360
- Fixed a situation where a
CallbackDatacould not be parsed without a default value. #1368
- Corrected grammatical errors, improved sentence structures, translation for migration 2.x-3.x #1302
- Minor typo correction, specifically in module naming + some grammar. #1340
- Added CITATION.cff file for automatic academic citation generation. Now you can copy citation from the GitHub page and paste it into your paper. #1351
- Minor typo correction in middleware docs. #1353
Fixed ResourceWarning in the tests, reworked
RedisEventsIsolationfixture to use Redis connection fromRedisStorage#1320Updated dependencies, bumped minimum required version:
magic-filter- fixed .resolve operationpydantic- fixed compatibility (broken in 2.4)aiodns- added new dependency to thefastextras (pip install aiogram[fast])- others...
Prevent update handling task pointers from being garbage collected, backport from 2.x #1331
Updated
typing-extensionspackage version range in dependencies to fix compatibility withFastAPI#1347Introduce Python 3.12 support #1354
Speeded up CallableMixin processing by caching references to nested objects and simplifying kwargs assembly. #1357
Added
pydanticv2.5 support. #1361Updated
thumbnailfields type toInputFileonly #1372
- Fixed pydantic version <2.4, since 2.4 has breaking changes. #1322
- Added support for custom encoders/decoders for payload (and also for deep-linking). #1262
- Added :class:`aiogram.utils.input_media.MediaGroupBuilder` for media group construction. #1293
- Added full support of Bot API 6.9 #1319
- Added actual param hints for InlineKeyboardBuilder and ReplyKeyboardBuilder. #1303
- Fixed priority of events isolation, now user state will be loaded only after lock is acquired #1317
- Replaced
datetime.datetimewith DateTime type wrapper across types to make dumped JSONs object more compatible with data that is sent by Telegram. #1277 - Fixed magic
.as_(...)operation for values that can be interpreted as False (e.g. 0). #1281 - Italic markdown from utils now uses correct decorators #1282
- Fixed method
Message.send_copyfor stickers. #1284 - Fixed
Message.send_copymethod, which was not working properly with stories, so not you can copy stories too (forwards messages). #1286 - Fixed error overlapping when validation error is caused by remove_unset root validator in base types and methods. #1290
- Fixed missing message content types (
ContentType.USER_SHARED,ContentType.CHAT_SHARED) #1252 - Fixed nested hashtag, cashtag and email message entities not being parsed correctly when these entities are inside another entity. #1259
- Moved global filters check placement into router to add chance to pass context from global filters into handlers in the same way as it possible in other places #1266
- Added error handling example examples/error_handling.py #1099
- Added a few words about skipping pending updates #1251
- Added a section on Dependency Injection technology #1253
- This update includes the addition of a multi-file bot example to the repository. #1254
- Refactored examples code to use aiogram enumerations and enhanced chat messages with markdown beautification's for a more user-friendly display. #1256
- Supplemented "Finite State Machine" section in Migration FAQ #1264
- Removed extra param in docstring of TelegramEventObserver's filter method and fixed typo in I18n documentation. #1268
- Enhanced the warning message in dispatcher to include a JSON dump of the update when update type is not known. #1269
- Added support for Bot API 6.8 #1275
Added Currency enum. You can use it like this:
from aiogram.enums import Currency await bot.send_invoice( ..., currency=Currency.USD, ... )
Updated keyboard builders with new methods for integrating buttons and keyboard creation more seamlessly. Added functionality to create buttons from existing markup and attach another builder. This improvement aims to make the keyboard building process more user-friendly and flexible. #1236
Added support for message_thread_id in ChatActionSender #1249
Fixed polling startup when "bot" key is passed manually into dispatcher workflow data #1242
Added codegen configuration for lost shortcuts:
- ShippingQuery.answer
- PreCheckoutQuery.answer
- Message.delete_reply_markup
- Added documentation for webhook and polling modes. #1241
- Reworked InputFile reading, removed
__aiter__method, added bot: Bot argument to the.read(...)method, so, from now URLInputFile can be used without specifying bot instance. #1238 - Code-generated
__init__typehints in types and methods to make IDE happy without additional pydantic plugin #1245
- Added new shortcuts for :class:`aiogram.types.chat_member_updated.ChatMemberUpdated` to send message to chat that member joined/left. #1234
- Added new shortcuts for :class:`aiogram.types.chat_join_request.ChatJoinRequest` to make easier access to sending messages to users who wants to join to chat. #1235
- Fixed bot assignment in the
Message.send_copyshortcut #1232 - Added model validation to remove UNSET before field validation. This change was necessary to correctly handle parse_mode where 'UNSET' is used as a sentinel value. Without the removal of 'UNSET', it would create issues when passed to model initialization from Bot.method_name. 'UNSET' was also added to typing. #1233
- Updated pydantic to 2.1 with few bugfixes
- Improved docs, added basic migration guide (will be expanded later) #1143
- Removed the use of the context instance (Bot.get_current) from all placements that were used previously. This is to avoid the use of the context instance in the wrong place. #1230
Added possibility to use custom events in routers (If router does not support custom event it does not break and passes it to included routers). #1147
Added support for FSM in Forum topics.
The strategy can be changed in dispatcher:
from aiogram.fsm.strategy import FSMStrategy ... dispatcher = Dispatcher( fsm_strategy=FSMStrategy.USER_IN_TOPIC, storage=..., # Any persistent storage )
Note
If you have implemented you own storages you should extend record key generation with new one attribute -
thread_idImproved CallbackData serialization.
- Minimized UUID (hex without dashes)
- Replaced bool values with int (true=1, false=0)
Added a tool to make text formatting flexible and easy. More details on the :ref:`corresponding documentation page <formatting-tool>` #1172
Added
X-Telegram-Bot-Api-Secret-Tokenheader check #1173Made
allowed_updateslist to revolve automatically in start_polling method if not set explicitly. #1178Added possibility to pass custom headers to :class:`URLInputFile` object #1191
Change type of result in InlineQueryResult enum for
InlineQueryResultCachedMpeg4GifandInlineQueryResultMpeg4Gifto more correct according to documentation.Change regexp for entities parsing to more correct (
InlineQueryResultType.yml). #1146Fixed signature of startup/shutdown events to include the
**dispatcher.workflow_dataas the handler arguments. #1155Added missing
FORUM_TOPIC_EDITEDvalue to content_type property #1160Fixed compatibility with Python 3.8-3.9 (from previous release) #1162
Fixed the markdown spoiler parser. #1176
Fixed workflow data propagation #1196
Fixed the serialization error associated with nested subtypes like InputMedia, ChatMember, etc.
The previously generated code resulted in an invalid schema under pydantic v2, which has stricter type parsing. Hence, subtypes without the specification of all subtype unions were generating an empty object. This has been rectified now. #1213
- Changed small grammar typos for
upload_file#1133
Removed text filter in due to is planned to remove this filter few versions ago.
Use
F.textinstead #1170
Added full support of Bot API 6.6
!DANGER!
Note that this issue has breaking changes described in the Bot API changelog, this changes is not breaking in the API but breaking inside aiogram because Beta stage is not finished.
Added full support of Bot API 6.7
Warning
Note that arguments switch_pm_parameter and switch_pm_text was deprecated and should be changed to button argument as described in API docs.
Updated Pydantic to V2
Warning
Be careful, not all libraries is already updated to using V2
Added global defaults
disable_web_page_previewandprotect_contentin addition toparse_modeto the Bot instance, reworked internal request builder mechanism. #1142Removed bot parameters from storages #1144
Replaced ContextVar's with a new feature called Validation Context in Pydantic to improve the clarity, usability, and versatility of handling the Bot instance within method shortcuts.
!DANGER!
Breaking: The 'bot' argument now is required in URLInputFile
Updated magic-filter with new features
- Added hint for
len(F)error - Added not in operation
- Added hint for
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:
dp = Dispatcher()
def main():
...
dp.run_polling(...)
main()But if you change it like this it should works as well:
router = Router()
async def main():
dp = Dispatcher()
dp.include_router(router)
...
dp.start_polling(...)
asyncio.run(main())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`, :class:`aiogram.enums.inline_query_result_type.InlineQueryResultType`, :class:`aiogram.enums.input_media_type.InputMediaType`, :class:`aiogram.enums.mask_position_point.MaskPositionPoint`, :class:`aiogram.enums.menu_button_type.MenuButtonType`, :class:`aiogram.enums.message_entity_type.MessageEntityType`, :class:`aiogram.enums.parse_mode.ParseMode`, :class:`aiogram.enums.poll_type.PollType`, :class:`aiogram.enums.sticker_type.StickerType`, :class:`aiogram.enums.topic_icon_color.TopicIconColor`, :class:`aiogram.enums.update_type.UpdateType`,
Added shortcuts:
- Chat :meth:`aiogram.types.chat.Chat.get_administrators`,
- :meth:`aiogram.types.chat.Chat.delete_message`, :meth:`aiogram.types.chat.Chat.revoke_invite_link`, :meth:`aiogram.types.chat.Chat.edit_invite_link`, :meth:`aiogram.types.chat.Chat.create_invite_link`, :meth:`aiogram.types.chat.Chat.export_invite_link`, :meth:`aiogram.types.chat.Chat.do`, :meth:`aiogram.types.chat.Chat.delete_sticker_set`, :meth:`aiogram.types.chat.Chat.set_sticker_set`, :meth:`aiogram.types.chat.Chat.get_member`, :meth:`aiogram.types.chat.Chat.get_member_count`, :meth:`aiogram.types.chat.Chat.leave`, :meth:`aiogram.types.chat.Chat.unpin_all_messages`, :meth:`aiogram.types.chat.Chat.unpin_message`, :meth:`aiogram.types.chat.Chat.pin_message`, :meth:`aiogram.types.chat.Chat.set_administrator_custom_title`, :meth:`aiogram.types.chat.Chat.set_permissions`, :meth:`aiogram.types.chat.Chat.promote`, :meth:`aiogram.types.chat.Chat.restrict`, :meth:`aiogram.types.chat.Chat.unban`, :meth:`aiogram.types.chat.Chat.ban`, :meth:`aiogram.types.chat.Chat.set_description`, :meth:`aiogram.types.chat.Chat.set_title`, :meth:`aiogram.types.chat.Chat.delete_photo`, :meth:`aiogram.types.chat.Chat.set_photo`,
- User: :meth:`aiogram.types.user.User.get_profile_photos`
Added :ref:`callback answer <callback-answer-util>` feature #1091
Added a method that allows you to compactly register routers #1117
- Check status code when downloading file #816
- Fixed ignore_case parameter in :obj:`aiogram.filters.command.Command` filter #1106
Added integration with new code-generator named Butcher #1069
Added full support of Bot API 6.4 #1088
Updated package metadata, moved build internals from Poetry to Hatch, added contributing guides. #1095
Added full support of Bot API 6.5
!DANGER!
Note that :obj:`aiogram.types.chat_permissions.ChatPermissions` is updated without backward compatibility, so now this object has no
can_send_media_messagesattributeReplaced error
TypeError: TelegramEventObserver.__call__() got an unexpected keyword argument '<name>'with a more understandable one for developers and with a link to the documentation. #1114Added possibility to reply into webhook with files #1120
Reworked graceful shutdown. Added method to stop polling. Now polling started from dispatcher can be stopped by signals gracefully without errors (on Linux and Mac). #1124
(again) Added possibility to combine filters with an and/or operations.
Read more in ":ref:`Combining filters <combining-filters>`" documentation section #1018
Added following methods to
Messageclass:Message.forward(...)Message.edit_media(...)Message.edit_live_location(...)Message.stop_live_location(...)Message.pin(...)Message.unpin()
Added following methods to
Userclass:User.mention_markdown(...)User.mention_html(...)
Added full support of Bot API 6.3 #1057
Fixed
Message.send_invoiceandMessage.reply_invoice, added missing arguments #1047Fixed copy and forward in:
Message.answer(...)Message.copy_to(...)
- Fixed UA translations in index.po #1017
- Fix typehints for
Message,reply_media_groupandanswer_media_groupmethods #1029 - Removed an old now non-working feature #1060
- Enabled testing on Python 3.11 #1044
- Added a mandatory dependency
certifiin due to in some cases on systems that doesn't have updated ca-certificates the requests to Bot API fails with reason[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: self signed certificate in certificate chain#1066
- Add PyPy support and run tests under PyPy #985
- Added message text to aiogram exceptions representation #988
- Added warning about using magic filter from magic_filter instead of aiogram's ones. Is recommended to use from aiogram import F instead of from magic_filter import F #990
- Added more detailed error when server response can't be deserialized. This feature will help to debug unexpected responses from the Server #1014
- Reworked error event, introduced :class:`aiogram.types.error_event.ErrorEvent` object. #898
- Fixed escaping markdown in aiogram.utils.markdown module #903
- Fixed polling crash when Telegram Bot API raises HTTP 429 status-code. #995
- Fixed empty mention in command parsing, now it will be None instead of an empty string #1013
- Initialized Docs translation (added Ukrainian language) #925
- Removed filters factory as described in corresponding issue. #942
- Now Router/Dispatcher accepts only keyword arguments. #982
Add class helper ChatAction for constants that Telegram BotAPI uses in sendChatAction request. In my opinion, this will help users and will also improve compatibility with 2.x version where similar class was called "ChatActions". #803
Added possibility to combine filters or invert result
Example:
Text(text="demo") | Command(commands=["demo"]) MyFilter() & AnotherFilter() ~StateFilter(state='my-state')
Fixed type hints for redis TTL params. #922
Added full_name shortcut for Chat object #929
Fixed false-positive coercing of Union types in API methods #901
Added 3 missing content types:
- proximity_alert_triggered
- supergroup_chat_created
- channel_chat_created
Fixed the ability to compare the state, now comparison to copy of the state will return True. #927
Fixed default lock kwargs in RedisEventIsolation. #972
Restrict including routers with strings #896
Changed CommandPatterType to CommandPatternType in aiogram/dispatcher/filters/command.py #907
Added full support of Bot API 6.1 #936
Breaking! More flat project structure
These packages was moved, imports in your code should be fixed:
aiogram.dispatcher.filters->aiogram.filtersaiogram.dispatcher.fsm->aiogram.fsmaiogram.dispatcher.handler->aiogram.handleraiogram.dispatcher.webhook->aiogram.webhookaiogram.dispatcher.flags/*->aiogram.dispatcher.flags(single module instead of package)
Removed deprecated
router.<event>_handlerandrouter.register_<event>_handlermethods. #941Deprecated filters factory. It will be removed in next Beta (3.0b5) #942
MessageEntity method get_text was removed and extract was renamed to extract_from #944
Added full support of Bot API 6.2 #975
- Added possibility to get command magic result as handler argument #889
- Added full support of Telegram Bot API 6.0 #890
- Fixed I18n lazy-proxy. Disabled caching. #839
- Added parsing of spoiler message entity #865
- Fixed default parse_mode for Message.copy_to() method. #876
- Fixed CallbackData factory parsing IntEnum's #885
- Added automated check that pull-request adds a changes description to CHANGES directory #873
- Changed
Message.html_textandMessage.md_textattributes behaviour when message has no text. The empty string will be used instead of raising error. #874 - Used redis-py instead of aioredis package in due to this packages was merged into single one #882
- Solved common naming problem with middlewares that confusing too much developers - now you can't see the middleware and middlewares attributes at the same point because this functionality encapsulated to special interface. #883
Added possibility to pass additional arguments into the aiohttp webhook handler to use this arguments inside handlers as the same as it possible in polling mode. #785
Added possibility to add handler flags via decorator (like pytest.mark decorator but aiogram.flags) #836
Added
ChatActionSenderutility to automatically sends chat action while long process is running.It also can be used as message middleware and can be customized via
chat_actionflag. #837
- Logger name for processing events is changed to
aiogram.events. #830 - Added full support of Telegram Bot API 5.6 and 5.7 #835
- BREAKING Events isolation mechanism is moved from FSM storages to standalone managers #838
Added new custom operation for MagicFilter named
as_Now you can use it to get magic filter result as handler argument
from aiogram import F ... @router.message(F.text.regexp(r"^(\d+)$").as_("digits")) async def any_digits_handler(message: Message, digits: Match[str]): await message.answer(html.quote(str(digits))) @router.message(F.photo[-1].as_("photo")) async def download_photos_handler(message: Message, photo: PhotoSize, bot: Bot): content = await bot.download(photo)
- Fixed: Missing
ChatMemberHandlerimport inaiogram/dispatcher/handler#751
- Check
destinyin case of nowith_destinyenabled in RedisStorage key builder #776 - Added full support of Bot API 5.5 #777
- Stop using feature from #336. From now settings of client-session should be placed as initializer arguments instead of changing instance attributes. #778
- Make TelegramAPIServer files wrapper in local mode bi-directional (server-client, client-server) Now you can convert local path to server path and server path to local path. #779
Breaking: Changed the signature of the session middlewares Breaking: Renamed AiohttpSession.make_request method parameter from call to method to match the naming in the base class Added middleware for logging outgoing requests #716
Improved description of filters resolving error. For example when you try to pass wrong type of argument to the filter but don't know why filter is not resolved now you can get error like this:
aiogram.exceptions.FiltersResolveError: Unknown keyword filters: {'content_types'} Possible cases: - 1 validation error for ContentTypesFilter content_types Invalid content types {'42'} is not allowed here (type=value_error)
Breaking internal API change Reworked FSM Storage record keys propagation #723
Implemented new filter named
MagicData(magic_data)that helps to filter event by data from middlewares or other filtersFor example your bot is running with argument named
configthat contains the application config then you can filter event by value from this config:@router.message(magic_data=F.event.from_user.id == F.config.admin_id) ...
- Fixed I18n context inside error handlers #726
- Fixed bot session closing before emit shutdown #734
- Fixed: bound filter resolving does not require children routers #736
Enabled testing on Python 3.10 Removed async_lru dependency (is incompatible with Python 3.10) and replaced usage with protected property #719
Converted README.md to README.rst and use it as base file for docs #725
Rework filters resolving:
- Automatically apply Bound Filters with default values to handlers
- Fix data transfer from parent to included routers filters
Added full support of Bot API 5.4 https://core.telegram.org/bots/api-changelog#november-5-2021 #744
- Added
html_textandmd_textto Message object #708 - Refactored I18n, added context managers for I18n engine and current locale #709
Added support of local Bot API server files downloading
When Local API is enabled files can be downloaded via bot.download/bot.download_file methods. #698
Implemented I18n & L10n support #701
Covered by tests and docs KeyboardBuilder util #699
Breaking!!!. Refactored and renamed exceptions.
- Exceptions module was moved from
aiogram.utils.exceptionstoaiogram.exceptions - Added prefix Telegram for all error classes
- Exceptions module was moved from
Replaced all
pragma: no covermarks via global.coveragercconfig #702Updated dependencies.
Breaking for framework developers Now all optional dependencies should be installed as extra: poetry install -E fast -E redis -E proxy -E i18n -E docs #703
- Ability to iterate over all states in StatesGroup. Aiogram already had in check for states group so this is relative feature. #666
- Fixed incorrect type checking in the :class:`aiogram.utils.keyboard.KeyboardBuilder` #674
- Disable ContentType filter by default #668
- Moved update type detection from Dispatcher to Update object #669
- Updated pre-commit config #681
- Reworked handlers_in_use util. Function moved to Router as method .resolve_used_update_types() #682
- add aliases for edit/delete reply markup to Message #662
- Reworked outer middleware chain. Prevent to call many times the outer middleware for each nested router #664
- Prepare parse mode for InputMessageContent in AnswerInlineQuery method #660
- Added integration with
towncrier#602