Merge branch 'dev-3.x' into scenes

This commit is contained in:
JRoot Junior 2023-11-17 00:28:59 +02:00
commit 77427ca0ec
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
9 changed files with 8 additions and 8 deletions

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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.

View file

@ -1 +1 @@
Added current handler to filters, so that flags can be retrieved from it.
Added ability to get handler flags from filters.

View file

@ -1 +0,0 @@
Added pydantic v2.5 support.

1
CHANGES/1361.misc.rst Normal file
View file

@ -0,0 +1 @@
Added :code:`pydantic` v2.5 support.

View file

@ -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

View file

@ -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