|
1 | 1 | ======= |
2 | 2 | Changes |
3 | 3 | ======= |
| 4 | +**2018-04-17** |
| 5 | +*Released 10.0.2* |
| 6 | + |
| 7 | +Important fix: |
| 8 | + |
| 9 | +- Handle utf8 decoding errors (`#1076`_) |
| 10 | + |
| 11 | +New features: |
| 12 | + |
| 13 | +- Added Filter.regex (`#1028`_) |
| 14 | +- Filters for Category and file types (`#1046`_) |
| 15 | +- Added video note filter (`#1067`_) |
| 16 | + |
| 17 | +Fixes: |
| 18 | + |
| 19 | +- Fix in telegram.Message (`#1042`_) |
| 20 | +- Make chat_id a positional argument inside shortcut methods of Chat and User classes (`#1050`_) |
| 21 | +- Make Bot.full_name return a unicode object. (`#1063`_) |
| 22 | +- CommandHandler faster check (`#1074`_) |
| 23 | +- Correct documentation of Dispatcher.add_handler (`#1071`_) |
| 24 | +- Various small fixes to documentation. |
| 25 | + |
| 26 | +.. _`#1028`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1028 |
| 27 | +.. _`#1042`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1042 |
| 28 | +.. _`#1046`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1046 |
| 29 | +.. _`#1050`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1050 |
| 30 | +.. _`#1067`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1067 |
| 31 | +.. _`#1063`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1063 |
| 32 | +.. _`#1074`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1074 |
| 33 | +.. _`#1076`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1076 |
| 34 | +.. _`#1071`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1071 |
| 35 | + |
| 36 | +**2018-03-05** |
| 37 | +*Released 10.0.1* |
| 38 | + |
| 39 | +Fixes: |
| 40 | + |
| 41 | +- Fix conversationhandler timeout (PR `#1032`_) |
| 42 | +- Add missing docs utils (PR `#912`_) |
| 43 | + |
| 44 | +.. _`#1032`: https://github.com/python-telegram-bot/python-telegram-bot/pull/826 |
| 45 | +.. _`#912`: https://github.com/python-telegram-bot/python-telegram-bot/pull/826 |
| 46 | + |
| 47 | +**2018-03-02** |
| 48 | +*Released 10.0.0* |
| 49 | + |
| 50 | +Non backward compatabile changes and changed defaults |
| 51 | + |
| 52 | +- JobQueue: Remove deprecated prevent_autostart & put() (PR `#1012`_) |
| 53 | +- Bot, Updater: Remove deprecated network_delay (PR `#1012`_) |
| 54 | +- Remove deprecated Message.new_chat_member (PR `#1012`_) |
| 55 | +- Retry bootstrap phase indefinitely (by default) on network errors (PR `#1018`_) |
| 56 | + |
| 57 | +New Features |
| 58 | + |
| 59 | +- Support v3.6 API (PR `#1006`_) |
| 60 | +- User.full_name convinience property (PR `#949`_) |
| 61 | +- Add `send_phone_number_to_provider` and `send_email_to_provider` arguments to send_invoice (PR `#986`_) |
| 62 | +- Bot: Add shortcut methods reply_{markdown,html} (PR `#827`_) |
| 63 | +- Bot: Add shortcut method reply_media_group (PR `#994`_) |
| 64 | +- Added utils.helpers.effective_message_type (PR `#826`_) |
| 65 | +- Bot.get_file now allows passing a file in addition to file_id (PR `#963`_) |
| 66 | +- Add .get_file() to Audio, Document, PhotoSize, Sticker, Video, VideoNote and Voice (PR `#963`_) |
| 67 | +- Add .send_*() methods to User and Chat (PR `#963`_) |
| 68 | +- Get jobs by name (PR `#1011`_) |
| 69 | +- Add Message caption html/markdown methods (PR `#1013`_) |
| 70 | +- File.download_as_bytearray - new method to get a d/led file as bytearray (PR `#1019`_) |
| 71 | +- File.download(): Now returns a meaningful return value (PR `#1019`_) |
| 72 | +- Added conversation timeout in ConversationHandler (PR `#895`_) |
| 73 | + |
| 74 | +Changes |
| 75 | + |
| 76 | +- Store bot in PreCheckoutQuery (PR `#953`_) |
| 77 | +- Updater: Issue INFO log upon received signal (PR `#951`_) |
| 78 | +- JobQueue: Thread safety fixes (PR `#977`_) |
| 79 | +- WebhookHandler: Fix exception thrown during error handling (PR `#985`_) |
| 80 | +- Explicitly check update.effective_chat in ConversationHandler.check_update (PR `#959`_) |
| 81 | +- Updater: Better handling of timeouts during get_updates (PR `#1007`_) |
| 82 | +- Remove unnecessary to_dict() (PR `#834`_) |
| 83 | +- CommandHandler - ignore strings in entities and "/" followed by whitespace (PR `#1020`_) |
| 84 | +- Documentation & style fixes (PR `#942`_, PR `#956`_, PR `#962`_, PR `#980`_, PR `#983`_) |
| 85 | + |
| 86 | +.. _`#826`: https://github.com/python-telegram-bot/python-telegram-bot/pull/826 |
| 87 | +.. _`#827`: https://github.com/python-telegram-bot/python-telegram-bot/pull/827 |
| 88 | +.. _`#834`: https://github.com/python-telegram-bot/python-telegram-bot/pull/834 |
| 89 | +.. _`#895`: https://github.com/python-telegram-bot/python-telegram-bot/pull/895 |
| 90 | +.. _`#942`: https://github.com/python-telegram-bot/python-telegram-bot/pull/942 |
| 91 | +.. _`#949`: https://github.com/python-telegram-bot/python-telegram-bot/pull/949 |
| 92 | +.. _`#951`: https://github.com/python-telegram-bot/python-telegram-bot/pull/951 |
| 93 | +.. _`#956`: https://github.com/python-telegram-bot/python-telegram-bot/pull/956 |
| 94 | +.. _`#953`: https://github.com/python-telegram-bot/python-telegram-bot/pull/953 |
| 95 | +.. _`#962`: https://github.com/python-telegram-bot/python-telegram-bot/pull/962 |
| 96 | +.. _`#959`: https://github.com/python-telegram-bot/python-telegram-bot/pull/959 |
| 97 | +.. _`#963`: https://github.com/python-telegram-bot/python-telegram-bot/pull/963 |
| 98 | +.. _`#977`: https://github.com/python-telegram-bot/python-telegram-bot/pull/977 |
| 99 | +.. _`#980`: https://github.com/python-telegram-bot/python-telegram-bot/pull/980 |
| 100 | +.. _`#983`: https://github.com/python-telegram-bot/python-telegram-bot/pull/983 |
| 101 | +.. _`#985`: https://github.com/python-telegram-bot/python-telegram-bot/pull/985 |
| 102 | +.. _`#986`: https://github.com/python-telegram-bot/python-telegram-bot/pull/986 |
| 103 | +.. _`#994`: https://github.com/python-telegram-bot/python-telegram-bot/pull/994 |
| 104 | +.. _`#1006`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1006 |
| 105 | +.. _`#1007`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1007 |
| 106 | +.. _`#1011`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1011 |
| 107 | +.. _`#1012`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1012 |
| 108 | +.. _`#1013`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1013 |
| 109 | +.. _`#1018`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1018 |
| 110 | +.. _`#1019`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1019 |
| 111 | +.. _`#1020`: https://github.com/python-telegram-bot/python-telegram-bot/pull/1020 |
| 112 | + |
4 | 113 | **2017-12-08** |
5 | 114 | *Released 9.0.0* |
6 | 115 |
|
|
0 commit comments