From ff09c9e0a464e9ca1048d18453edde04174e0314 Mon Sep 17 00:00:00 2001 From: JRoot Junior Date: Sun, 17 Nov 2024 23:10:58 +0200 Subject: [PATCH] Added changelog --- CHANGES/1606.feature.rst | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 CHANGES/1606.feature.rst diff --git a/CHANGES/1606.feature.rst b/CHANGES/1606.feature.rst new file mode 100644 index 00000000..4bc1223e --- /dev/null +++ b/CHANGES/1606.feature.rst @@ -0,0 +1,25 @@ +Added full support for `Bot API 8.0 `_ + +- 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`.