From 880dd153d33c3266e21e7b392d4d4c89fef7a388 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Sat, 19 Feb 2022 02:01:23 +0200 Subject: [PATCH] Build changelog --- CHANGES.rst | 38 ++++++++++++++++++++++++++++++++++++++ CHANGES/785.feature | 2 -- CHANGES/791.bugfix | 1 - CHANGES/827.bugfix | 1 - CHANGES/830.misc | 1 - CHANGES/835.misc | 1 - CHANGES/836.feature | 1 - CHANGES/837.feature | 3 --- CHANGES/838.misc | 2 -- 9 files changed, 38 insertions(+), 12 deletions(-) delete mode 100644 CHANGES/785.feature delete mode 100644 CHANGES/791.bugfix delete mode 100644 CHANGES/827.bugfix delete mode 100644 CHANGES/830.misc delete mode 100644 CHANGES/835.misc delete mode 100644 CHANGES/836.feature delete mode 100644 CHANGES/837.feature delete mode 100644 CHANGES/838.misc diff --git a/CHANGES.rst b/CHANGES.rst index 2ab30aa9..9216b305 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,44 @@ Changelog .. towncrier release notes start +3.0.0b2 (2022-02-19) +===================== + +Features +-------- + +- 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 :code:`ChatActionSender` utility to automatically sends chat action while long process is running. + + It also can be used as message middleware and can be customized via :code:`chat_action` flag. + `#837 `_ + + +Bugfixes +-------- + +- Fixed unexpected behavior of sequences in the StateFilter. + `#791 `_ +- Fixed exceptions filters + `#827 `_ + + +Misc +---- + +- Logger name for processing events is changed to :code:`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 `_ + + 3.0.0b1 (2021-12-12) ===================== diff --git a/CHANGES/785.feature b/CHANGES/785.feature deleted file mode 100644 index cefaf47b..00000000 --- a/CHANGES/785.feature +++ /dev/null @@ -1,2 +0,0 @@ -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. diff --git a/CHANGES/791.bugfix b/CHANGES/791.bugfix deleted file mode 100644 index 5a219d4a..00000000 --- a/CHANGES/791.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed unexpected behavior of sequences in the StateFilter. diff --git a/CHANGES/827.bugfix b/CHANGES/827.bugfix deleted file mode 100644 index f0aab059..00000000 --- a/CHANGES/827.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed exceptions filters diff --git a/CHANGES/830.misc b/CHANGES/830.misc deleted file mode 100644 index f01d8b98..00000000 --- a/CHANGES/830.misc +++ /dev/null @@ -1 +0,0 @@ -Logger name for processing events is changed to :code:`aiogram.events`. diff --git a/CHANGES/835.misc b/CHANGES/835.misc deleted file mode 100644 index 83be3cb6..00000000 --- a/CHANGES/835.misc +++ /dev/null @@ -1 +0,0 @@ -Added full support of Telegram Bot API 5.6 and 5.7 diff --git a/CHANGES/836.feature b/CHANGES/836.feature deleted file mode 100644 index 17c9cd49..00000000 --- a/CHANGES/836.feature +++ /dev/null @@ -1 +0,0 @@ -Added possibility to add handler flags via decorator (like `pytest.mark` decorator but `aiogram.flags`) diff --git a/CHANGES/837.feature b/CHANGES/837.feature deleted file mode 100644 index 57ce165b..00000000 --- a/CHANGES/837.feature +++ /dev/null @@ -1,3 +0,0 @@ -Added :code:`ChatActionSender` utility to automatically sends chat action while long process is running. - -It also can be used as message middleware and can be customized via :code:`chat_action` flag. diff --git a/CHANGES/838.misc b/CHANGES/838.misc deleted file mode 100644 index d4af8385..00000000 --- a/CHANGES/838.misc +++ /dev/null @@ -1,2 +0,0 @@ -**BREAKING** -Events isolation mechanism is moved from FSM storages to standalone managers