mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Merge branch 'dev-3.x' into dev-3.x
This commit is contained in:
commit
2da987daef
318 changed files with 6312 additions and 2419 deletions
|
|
@ -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.
|
||||
|
|
@ -1 +0,0 @@
|
|||
Fixed unexpected behavior of sequences in the StateFilter.
|
||||
7
CHANGES/894.feature.rst
Normal file
7
CHANGES/894.feature.rst
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Added possibility to combine filters or invert result
|
||||
|
||||
Example:
|
||||
.. code-block:: python
|
||||
Text(text="demo") | Command(commands=["demo"])
|
||||
MyFilter() & AnotherFilter()
|
||||
~StateFilter(state='my-state')
|
||||
1
CHANGES/896.misc.rst
Normal file
1
CHANGES/896.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Restrict including routers with strings
|
||||
1
CHANGES/901.bugfix.rst
Normal file
1
CHANGES/901.bugfix.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Fixed false-positive coercing of Union types in API methods
|
||||
5
CHANGES/906.bugfix.rst
Normal file
5
CHANGES/906.bugfix.rst
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
Added 3 missing content types:
|
||||
|
||||
* proximity_alert_triggered
|
||||
* supergroup_chat_created
|
||||
* channel_chat_created
|
||||
1
CHANGES/907.misc.rst
Normal file
1
CHANGES/907.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Changed CommandPatterType to CommandPatternType in `aiogram/dispatcher/filters/command.py`
|
||||
1
CHANGES/922.feature.rst
Normal file
1
CHANGES/922.feature.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Fixed type hints for redis TTL params.
|
||||
1
CHANGES/929.feature.rst
Normal file
1
CHANGES/929.feature.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Added `full_name` shortcut for `Chat` object
|
||||
1
CHANGES/936.misc.rst
Normal file
1
CHANGES/936.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Added full support of `Bot API 6.1 <https://core.telegram.org/bots/api-changelog#june-20-2022>`_
|
||||
1
CHANGES/941.misc.rst
Normal file
1
CHANGES/941.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Removed deprecated :code:`router.<event>_handler` and :code:`router.register_<event>_handler` methods.
|
||||
1
CHANGES/944.misc.rst
Normal file
1
CHANGES/944.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
`MessageEntity` method `get_text` was removed and `extract` was renamed to `extract_from`
|
||||
Loading…
Add table
Add a link
Reference in a new issue