Bump version, small changes in docs

This commit is contained in:
Alex Root Junior 2021-12-12 18:59:57 +02:00
parent 2620a6547c
commit 1634dc1162
14 changed files with 67 additions and 31 deletions

View file

@ -1 +0,0 @@
Fixed: Missing :code:`ChatMemberHandler` import in :code:`aiogram/dispatcher/handler`

View file

@ -1,13 +0,0 @@
Added new custom operation for MagicFilter named :code:`as_`
Now you can use it to get magic filter result as handler argument
.. code-block:: python
from aiogram import F
...
@router.message(F.text.regexp(r"^(\d+)$").as_("digits"))
async def any_digits_handler(message: Message, digits: Match[str]):
await message.answer(html.quote(str(digits)))

View file

@ -1 +0,0 @@
Check :code:`destiny` in case of no :code:`with_destiny` enabled in RedisStorage key builder

View file

@ -1 +0,0 @@
Added full support of `Bot API 5.5 <https://core.telegram.org/bots/api-changelog#december-7-2021>`_

View file

@ -1 +0,0 @@
Stop using feature from #336. From now settings of client-session should be placed as initializer arguments instead of changing instance attributes.

View file

@ -1,2 +0,0 @@
Make TelegramAPIServer files wrapper in local mode bi-directional (server-client, client-server)
Now you can convert local path to server path and server path to local path.