Bump changelog

This commit is contained in:
JRoot Junior 2024-04-24 22:14:34 +03:00
parent f1c9fc50f0
commit 6ad287c329
No known key found for this signature in database
GPG key ID: 738964250D5FF6E2
9 changed files with 55 additions and 25 deletions

View file

@ -1,5 +0,0 @@
- **WebAppUser Class Fields**: Added missing `is_premium`, `added_to_attachment_menu`, and `allows_write_to_pm` fields to `WebAppUser` class to align with the Telegram API.
- **WebAppChat Class Implementation**: Introduced the `WebAppChat` class with all its fields (`id`, `type`, `title`, `username`, and `photo_url`) as specified in the Telegram API, which was previously missing from the library.
- **WebAppInitData Class Fields**: Included previously omitted fields in the `WebAppInitData` class: `chat`, `chat_type`, `chat_instance`, to match the official documentation for a complete Telegram Web Apps support.

View file

@ -1 +0,0 @@
Added WebAppChat class to WebApp docs, updated uk_UA localisation of WebApp docs.

View file

@ -1 +0,0 @@
Fixed poll answer FSM context by handling :code:`voter_chat` for :code:`poll_answer` event

View file

@ -1 +0,0 @@
Added **message_thread_id** parameter to **ChatActionSender** class methods.

View file

@ -1 +0,0 @@
Added full support of `Bot API 7.2 <https://core.telegram.org/bots/api-changelog#march-31-2024>`_

View file

@ -1,2 +0,0 @@
Added missing error handling to :code:`_background_feed_update` (when in :code:`handle_in_background=True` webhook mode)

View file

@ -1 +0,0 @@
Loosened pydantic version upper restriction from ``<2.7`` to ``<2.8``4.4

View file

@ -1,13 +0,0 @@
Added context manager interface to Bot instance, from now you can use:
.. code-block:: python
async with Bot(...) as bot:
...
instead of
.. code-block:: python
async with Bot(...).context():
...