Bump changelog

This commit is contained in:
Alex Root Junior 2023-08-06 19:28:39 +03:00
parent f54ed1326b
commit 649f76b5f6
No known key found for this signature in database
GPG key ID: 074C1D455EBEA4AC
9 changed files with 57 additions and 27 deletions

View file

@ -16,6 +16,63 @@ Changelog
.. towncrier release notes start
3.0.0rc1 (2023-08-06)
======================
Features
--------
- Added Currency enum.
You can use it like this:
.. code-block:: python
from aiogram.enum import Currency
await bot.send_invoice(
...,
currency=Currency.USD,
...
)
`#1194 <https://github.com/aiogram/aiogram/issues/1194>`_
- 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 <https://github.com/aiogram/aiogram/issues/1236>`_
- Added support for message_thread_id in ChatActionSender
`#1249 <https://github.com/aiogram/aiogram/issues/1249>`_
Bugfixes
--------
- Fixed polling startup when "bot" key is passed manually into dispatcher workflow data
`#1242 <https://github.com/aiogram/aiogram/issues/1242>`_
- Added codegen configuration for lost shortcuts:
- ShippingQuery.answer
- PreCheckoutQuery.answer
- Message.delete_reply_markup
`#1244 <https://github.com/aiogram/aiogram/issues/1244>`_
Improved Documentation
----------------------
- Added documentation for webhook and polling modes.
`#1241 <https://github.com/aiogram/aiogram/issues/1241>`_
Misc
----
- Reworked InputFile reading, removed :code:`__aiter__` method, added `bot: Bot` argument to
the :code:`.read(...)` method, so, from now URLInputFile can be used without specifying
bot instance.
`#1238 <https://github.com/aiogram/aiogram/issues/1238>`_
- Code-generated :code:`__init__` typehints in types and methods to make IDE happy without additional pydantic plugin
`#1245 <https://github.com/aiogram/aiogram/issues/1245>`_
3.0.0b9 (2023-07-30)
=====================

View file

@ -1,12 +0,0 @@
Added Currency enum.
You can use it like this:
.. code-block:: python
from aiogram.enum import Currency
await bot.send_invoice(
...,
currency=Currency.USD,
...
)

View file

@ -1,3 +0,0 @@
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.

View file

@ -1,3 +0,0 @@
Reworked InputFile reading, removed :code:`__aiter__` method, added `bot: Bot` argument to
the :code:`.read(...)` method, so, from now URLInputFile can be used without specifying
bot instance.

View file

@ -1 +0,0 @@
Added documentation for webhook and polling modes.

View file

@ -1 +0,0 @@
Fixed polling startup when "bot" key is passed manually into dispatcher workflow data

View file

@ -1,5 +0,0 @@
Added codegen configuration for lost shortcuts:
- ShippingQuery.answer
- PreCheckoutQuery.answer
- Message.delete_reply_markup

View file

@ -1 +0,0 @@
Code-generated :code:`__init__` typehints in types and methods to make IDE happy without additional pydantic plugin

View file

@ -1 +0,0 @@
Added support for message_thread_id in ChatActionSender