mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Merge branch 'dev-3.x' into scenes
This commit is contained in:
commit
77427ca0ec
9 changed files with 8 additions and 8 deletions
|
|
@ -1 +1 @@
|
|||
Corrected grammatical errors, improved sentence structures, translation for migration 2.x-3.x
|
||||
Corrected grammatical errors, improved sentence structures, translation for migration 2.x-3.x
|
||||
|
|
@ -1 +1 @@
|
|||
Prevent update handling task pointers from being garbage collected, backport from 2.x
|
||||
Prevent update handling task pointers from being garbage collected, backport from 2.x
|
||||
|
|
@ -1 +1 @@
|
|||
Fixed ``parse_mode`` in ``send_copy`` helper. Disable by default.
|
||||
Fixed :code:`parse_mode` argument in the in :code:`Message.send_copy` shortcut. Disable by default.
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
The new FSM strategy CHAT_TOPIC, which sets the state for the entire topic in the chat, also works in private messages and regular groups without topics.
|
||||
Added the new FSM strategy :code:`CHAT_TOPIC`, which sets the state for the entire topic in the chat, also works in private messages and regular groups without topics.
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Added current handler to filters, so that flags can be retrieved from it.
|
||||
Added ability to get handler flags from filters.
|
||||
|
|
|
|||
|
|
@ -1 +0,0 @@
|
|||
Added pydantic v2.5 support.
|
||||
1
CHANGES/1361.misc.rst
Normal file
1
CHANGES/1361.misc.rst
Normal file
|
|
@ -0,0 +1 @@
|
|||
Added :code:`pydantic` v2.5 support.
|
||||
|
|
@ -4,7 +4,7 @@ import inspect
|
|||
import warnings
|
||||
from dataclasses import dataclass, field
|
||||
from functools import partial
|
||||
from typing import Any, Callable, Dict, List, Optional, Tuple, Set
|
||||
from typing import Any, Callable, Dict, List, Optional, Set, Tuple
|
||||
|
||||
from magic_filter.magic import MagicFilter as OriginalMagicFilter
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import functools
|
||||
from typing import Any, Dict, Union, Callable, Set
|
||||
from typing import Any, Callable, Dict, Set, Union
|
||||
|
||||
import pytest
|
||||
from magic_filter import F as A
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue