Python-telegram-bot

Latest version: v22.0

Safety actively analyzes 723882 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 21

12.2.0

**New features:**

- Nested ConversationHandlers (1512).

**Minor changes, CI improvments or bug fixes:**

- Fix CI failures due to non-backward compat attrs depndency (1540).
- travis.yaml: TEST_OFFICIAL removed from allowed_failures.
- Fix typos in examples (1537).
- Fix Bot.to_dict to use proper first_name (1525).
- Refactor ``test_commandhandler.py`` (1408).
- Add Python 3.8 (RC version) to Travis testing matrix (1543).
- test_bot.py: Add to_dict test (1544).
- Flake config moved into setup.cfg (1546).

12.1.1

*Released 2019-09-18*

**Hot fix release**

Fixed regression in the vendored urllib3 (1517)

12.1.0

Major changes:

* Bot API 4.4 support (1464, 1510)
* Add get_file method to Animation & ChatPhoto. Add, get_small_file & get_big_file methods to ChatPhoto (1489)
* Tools for deep linking (1049)

Minor changes and/or bug fixes:

* Documentation fixes (1500, 1499)
* Improved examples (1502)

12.0.0

**Major and/or breaking changes:**

- Context based callbacks
- Persistence
- PrefixHandler added (Handler overhaul)
- Deprecation of RegexHandler and edited_messages, channel_post, etc. arguments (Filter overhaul)
- Various ConversationHandler changes and fixes
- Bot API 4.1, 4.2, 4.3 support
- Python 3.4 is no longer supported
- Error Handler now handles all types of exceptions (`1485`_)
- Return UTC from from_timestamp() (`1485`_)

**See the wiki page at https://git.io/fxJuV for a detailed guide on how to migrate from version 11 to version 12.**

** Check the CHANGES.rst file for more info **

12.0.0b1

First beta release ever.
It has been so long since last release that we would like to test the impact before a final release.

*We do NOT recommend using this beta release in production.*

**Major changes:**

- Context based callbacks
- Persistence
- PrefixHandler added (Handler overhaul)
- Deprecation of RegexHandler and edited_messages, channel_post, etc. arguments (Filter overhaul)
- Various ConversationHandler changes and fixes

**See the wiki page at https://git.io/fxJuV for a detailed guide on how to migrate from version 11 to version 12.**

Context based callbacks (1100)
----------------------------------

- Use of ``pass_`` in handlers is deprecated.
- Instead use ``use_context=True`` on ``Updater`` or ``Dispatcher`` and change callback from (bot, update, others...) to (update, context).
- This also applies to error handlers ``Dispatcher.add_error_handler`` and JobQueue jobs (change (bot, job) to (context) here).
- For users with custom handlers subclassing Handler, this is mostly backwards compatible, but to use the new context based callbacks you need to implement the new collect_additional_context method.
- Passing bot to ``JobQueue.__init__`` is deprecated. Use JobQueue.set_dispatcher with a dispatcher instead.
- Dispatcher makes sure to use a single `CallbackContext` for a entire update. This means that if an update is handled by multiple handlers (by using the group argument), you can add custom arguments to the `CallbackContext` in a lower group handler and use it in higher group handler. NOTE: Never use with run_async, see docs for more info. (1283)
- If you have custom handlers they will need to be updated to support the changes in this release.
- Update all examples to use context based callbacks.

Persistence (1017)
----------------------

- Added PicklePersistence and DictPersistence for adding persistence to your bots.
- BasePersistence can be subclassed for all your persistence needs.
- Add a new example that shows a persistent ConversationHandler bot

Handler overhaul (1114)
---------------------------

- CommandHandler now only triggers on actual commands as defined by telegram servers (everything that the clients mark as a tabable link).
- PrefixHandler can be used if you need to trigger on prefixes (like all messages starting with a "/" (old CommandHandler behaviour) or even custom prefixes like "" or "!").

Filter overhaul (1221)
--------------------------

- RegexHandler is deprecated and should be replaced with a MessageHandler with a regex filter.
- Use update filters to filter update types instead of arguments (message_updates, channel_post_updates and edited_updates) on the handlers.
- Completely remove allow_edited argument - it has been deprecated for a while.
- data_filters now exist which allows filters that return data into the callback function. This is how the regex filter is implemented.
- All this means that it no longer possible to use a list of filters in a handler. Use bitwise operators instead!

ConversationHandler
-------------------

- Remove ``run_async_timeout`` and ``timed_out_behavior`` arguments (1344)
- Replace with ``WAITING`` constant and behavior from states (1344)
- Only emit one warning for multiple CallbackQueryHandlers in a ConversationHandler (1319)
- Use warnings.warn for ConversationHandler warnings (1343)
- Fix unresolvable promises (1270)

Bug fixes & improvements
------------------------

- Handlers should be faster due to deduped logic.
- Avoid compiling compiled regex in regex filter. (1314)
- Add missing ``left_chat_member`` to Message.MESSAGE_TYPES (1336)
- Make custom timeouts actually work properly (1330)
- Add convenience classmethods (from_button, from_row and from_column) to InlineKeyboardMarkup
- Small typo fix in setup.py (1306)
- Add Conflict error (HTTP error code 409) (1154)
- Change MAX_CAPTION_LENGTH to 1024 (1262)
- Remove some unnecessary clauses (1247, 1239)
- Allow filenames without dots in them when sending files (1228)
- Fix uploading files with unicode filenames (1214)
- Replace http.server with Tornado (1191)
- Allow SOCKSConnection to parse username and password from URL (1211)
- Fix for arguments in passport/data.py (1213)
- Improve message entity parsing by adding text_mention (1206)

Internal improvements
---------------------

- Finally fix our CI builds mostly (too many commits and PRs to list)
- Use multiple bots for CI to improve testing times significantly.
- Allow pypy to fail in CI.
- Remove the last CamelCase CheckUpdate methods from the handlers we missed earlier.

11.1.0

Fixes and updates for Telegram Passport: (1198)

- Fix passport decryption failing at random times
- Added support for middle names.
- Added support for translations for documents
- Add errors for translations for documents
- Added support for requesting names in the language of the user's country of residence
- Replaced the payload parameter with the new parameter nonce
- Add hash to EncryptedPassportElement

Page 11 of 21

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.