From d9a92e2c3cb7a4d376014482604add6b1178ae79 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Thu, 17 Feb 2022 00:21:31 +0200 Subject: [PATCH] Added change notes --- CHANGES/830.misc | 1 + CHANGES/835.misc | 1 + CHANGES/836.feature | 1 + CHANGES/837.feature | 3 +++ CHANGES/838.misc | 2 ++ CHANGES/839.bugix | 1 + 6 files changed, 9 insertions(+) create mode 100644 CHANGES/830.misc create mode 100644 CHANGES/835.misc create mode 100644 CHANGES/836.feature create mode 100644 CHANGES/837.feature create mode 100644 CHANGES/838.misc create mode 100644 CHANGES/839.bugix diff --git a/CHANGES/830.misc b/CHANGES/830.misc new file mode 100644 index 00000000..f01d8b98 --- /dev/null +++ b/CHANGES/830.misc @@ -0,0 +1 @@ +Logger name for processing events is changed to :code:`aiogram.events`. diff --git a/CHANGES/835.misc b/CHANGES/835.misc new file mode 100644 index 00000000..83be3cb6 --- /dev/null +++ b/CHANGES/835.misc @@ -0,0 +1 @@ +Added full support of Telegram Bot API 5.6 and 5.7 diff --git a/CHANGES/836.feature b/CHANGES/836.feature new file mode 100644 index 00000000..17c9cd49 --- /dev/null +++ b/CHANGES/836.feature @@ -0,0 +1 @@ +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 new file mode 100644 index 00000000..57ce165b --- /dev/null +++ b/CHANGES/837.feature @@ -0,0 +1,3 @@ +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 new file mode 100644 index 00000000..d4af8385 --- /dev/null +++ b/CHANGES/838.misc @@ -0,0 +1,2 @@ +**BREAKING** +Events isolation mechanism is moved from FSM storages to standalone managers diff --git a/CHANGES/839.bugix b/CHANGES/839.bugix new file mode 100644 index 00000000..89bbe247 --- /dev/null +++ b/CHANGES/839.bugix @@ -0,0 +1 @@ +Fixed I18n lazy-proxy. Disabled caching.