From 787ad6b0949e9107fa9bf16e85836dcfe3b30ca4 Mon Sep 17 00:00:00 2001 From: Alex Root Junior Date: Fri, 18 Aug 2023 20:21:01 +0300 Subject: [PATCH] Render changelog --- CHANGES.rst | 45 +++++++++++++++++++++++++++++++++++++++++ CHANGES/1099.doc.rst | 1 - CHANGES/1251.doc.rst | 1 - CHANGES/1252.bugfix.rst | 1 - CHANGES/1253.doc.rst | 1 - CHANGES/1254.doc.rst | 1 - CHANGES/1256.doc.rst | 2 -- CHANGES/1259.bugfix.rst | 1 - CHANGES/1264.doc.rst | 1 - CHANGES/1266.bugfix.rst | 2 -- CHANGES/1268.doc.rst | 2 -- CHANGES/1269.misc.rst | 1 - CHANGES/1275.misc.rst | 1 - 13 files changed, 45 insertions(+), 15 deletions(-) delete mode 100644 CHANGES/1099.doc.rst delete mode 100644 CHANGES/1251.doc.rst delete mode 100644 CHANGES/1252.bugfix.rst delete mode 100644 CHANGES/1253.doc.rst delete mode 100644 CHANGES/1254.doc.rst delete mode 100644 CHANGES/1256.doc.rst delete mode 100644 CHANGES/1259.bugfix.rst delete mode 100644 CHANGES/1264.doc.rst delete mode 100644 CHANGES/1266.bugfix.rst delete mode 100644 CHANGES/1268.doc.rst delete mode 100644 CHANGES/1269.misc.rst delete mode 100644 CHANGES/1275.misc.rst diff --git a/CHANGES.rst b/CHANGES.rst index 7e39287c..b3d1c6a0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -16,6 +16,51 @@ Changelog .. towncrier release notes start +3.0.0rc2 (2023-08-18) +====================== + +Bugfixes +-------- + +- Fixed missing message content types (:code:`ContentType.USER_SHARED`, :code:`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 `_ + + +Improved Documentation +---------------------- + +- 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 `_ + + +Misc +---- + +- 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 `_ + + 3.0.0rc1 (2023-08-06) ====================== diff --git a/CHANGES/1099.doc.rst b/CHANGES/1099.doc.rst deleted file mode 100644 index 74064656..00000000 --- a/CHANGES/1099.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added error handling example `examples/error_handling.py` diff --git a/CHANGES/1251.doc.rst b/CHANGES/1251.doc.rst deleted file mode 100644 index a1c437c0..00000000 --- a/CHANGES/1251.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added a few words about skipping pending updates diff --git a/CHANGES/1252.bugfix.rst b/CHANGES/1252.bugfix.rst deleted file mode 100644 index 640f9228..00000000 --- a/CHANGES/1252.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed missing message content types (:code:`ContentType.USER_SHARED`, :code:`ContentType.CHAT_SHARED`) diff --git a/CHANGES/1253.doc.rst b/CHANGES/1253.doc.rst deleted file mode 100644 index d8100687..00000000 --- a/CHANGES/1253.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Added a section on Dependency Injection technology diff --git a/CHANGES/1254.doc.rst b/CHANGES/1254.doc.rst deleted file mode 100644 index ce216fa4..00000000 --- a/CHANGES/1254.doc.rst +++ /dev/null @@ -1 +0,0 @@ -This update includes the addition of a multi-file bot example to the repository. diff --git a/CHANGES/1256.doc.rst b/CHANGES/1256.doc.rst deleted file mode 100644 index 986cd892..00000000 --- a/CHANGES/1256.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Refactored examples code to use aiogram enumerations and enhanced chat messages with markdown -beautification's for a more user-friendly display. diff --git a/CHANGES/1259.bugfix.rst b/CHANGES/1259.bugfix.rst deleted file mode 100644 index e070549d..00000000 --- a/CHANGES/1259.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fixed nested hashtag, cashtag and email message entities not being parsed correctly when these entities are inside another entity. diff --git a/CHANGES/1264.doc.rst b/CHANGES/1264.doc.rst deleted file mode 100644 index 1564244f..00000000 --- a/CHANGES/1264.doc.rst +++ /dev/null @@ -1 +0,0 @@ -Supplemented "Finite State Machine" section in Migration FAQ diff --git a/CHANGES/1266.bugfix.rst b/CHANGES/1266.bugfix.rst deleted file mode 100644 index 55f0cfc6..00000000 --- a/CHANGES/1266.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -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 diff --git a/CHANGES/1268.doc.rst b/CHANGES/1268.doc.rst deleted file mode 100644 index 0651fd0f..00000000 --- a/CHANGES/1268.doc.rst +++ /dev/null @@ -1,2 +0,0 @@ -Removed extra param in docstring of TelegramEventObserver's filter method -and fixed typo in I18n documentation. diff --git a/CHANGES/1269.misc.rst b/CHANGES/1269.misc.rst deleted file mode 100644 index c91b7ac3..00000000 --- a/CHANGES/1269.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Enhanced the warning message in dispatcher to include a JSON dump of the update when update type is not known. diff --git a/CHANGES/1275.misc.rst b/CHANGES/1275.misc.rst deleted file mode 100644 index 581fe321..00000000 --- a/CHANGES/1275.misc.rst +++ /dev/null @@ -1 +0,0 @@ -Added support for `Bot API 6.8 `_