tag:github.com,2008:https://github.com/python-botogram/botogram/releases Tags from botogram 2019-10-22T15:46:37Z tag:github.com,2008:Repository/38007898/v0.6.1 2019-10-22T15:52:54Z botogram 0.6.1 <p>Version bump and changelog for 0.6.1 release (<a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/pull/152">#152</a>)</p> <p>* Version bump and changelog</p> <p>* Version bump in buildthedocs.yml</p> MarcoBuster tag:github.com,2008:Repository/38007898/v0.6 2019-03-26T15:58:54Z Botogram 0.6 <p>Update master to release 0.6</p> <p>Update master to release 0.6</p> MarcoBuster tag:github.com,2008:Repository/38007898/v0.5 2018-02-15T16:23:24Z botogram 0.5 pietroalbini tag:github.com,2008:Repository/38007898/v0.4 2017-07-19T09:01:52Z botogram 0.4 pietroalbini tag:github.com,2008:Repository/38007898/v0.3.4 2016-08-10T10:37:57Z botogram 0.3.4 <p>This is a bugfix release for botogram 0.3.3, which fixes the following</p> <p>things:</p> <p>* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/74">GH-74</a>: Fix inability to send messages to supergroups by username, <br /> using the deprecated `botogram.Bot.send()` method</p> pietroalbini tag:github.com,2008:Repository/38007898/v0.3.3 2016-08-10T10:32:44Z botogram 0.3.3 <p>This is a bugfix release for botogram 0.3.2, which fixes unavailable</p> <p>chats detection due to changes in the Bot API.</p> <p>* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/71">GH-71</a>: Fix unavailable chats not detected when calling `botogram.Bot.chat` <br />* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/72">GH-72</a>: Fix broken detection of unavailable chats, due to changes in the Bot <br /> API <br />* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/73">GH-73</a>: Discontinue the unavailable chat reason *not_contacted* since it's not <br /> possible to detect it anymore</p> pietroalbini tag:github.com,2008:Repository/38007898/v0.2.2 2016-07-02T17:54:07Z botogram 0.2.2 <p>This release fixes a bug introduced by an upstream API change</p> <p>* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/70">GH-70</a>: Fix botogram crashing if someone edits a message</p> pietroalbini tag:github.com,2008:Repository/38007898/v0.3.2 2016-07-02T17:44:36Z botogram 0.3.2 <p>This release fixed a bug present in botogram 0.3.1.</p> <p>* <a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/69">GH-69</a>: Fix inability to send messages to channels</p> pietroalbini tag:github.com,2008:Repository/38007898/v0.3.1 2016-06-14T15:22:00Z botogram 0.3.1 <p>botogram 0.3.1 is the third alpha release of botogram. It reaches almost</p> <p>feature parity with the upstream Telegram API (except for keyboards and <br />inlines), including the new features in the Bot API 2.0 and 2.1 updates, <br />such as moderating group chats or editing messages.</p> <p>Performance are improved, with a faster updates fetching process, and a <br />bug was fixed in this release. There are also a few deprecations to keep <br />the API clean. All the deprecated features in this release will be <br />removed in botogram 1.0, so you have plenty of time to switch to the new <br />ones.</p> <p>New features <br />------------</p> <p>* Added the ability to react when a chat is not available:</p> <p> * New decorator `botogram.Bot.chat_unavailable` <br /> * New method `botogram.Component.add_chat_unavailable_hook`</p> <p>* Added support for editing messages sent by the bot:</p> <p> * New method `botogram.Message.edit` <br /> * New method `botogram.Message.edit_caption` <br /> * New method `botogram.Bot.edit_message` <br /> * New method `botogram.Bot.edit_caption`</p> <p>* Added support for working with parsed text in a message:</p> <p> * New attribute `botogram.Message.parsed_text` <br /> * New class `botogram.ParsedText` <br /> * New class `botogram.ParsedTextEntity`</p> <p>* Added a new way to hide commands from the `/help` command:</p> <p> * New argument `hidden` on `botogram.Bot.command` <br /> * New argument `hidden` on `botogram.Component.add_command`</p> <p>* Added support for processing edited messages:</p> <p> * New decorator `botogram.Bot.message_edited` <br /> * New method `botogram.Component.add_message_edited_hook`</p> <p>* Added support for moderating groups:</p> <p> * New method `botogram.Chat.ban` <br /> * New method `botogram.Chat.unban`</p> <p>* Added support for sending contacts:</p> <p> * New method `botogram.User.send_contact` <br /> * New method `botogram.Chat.send_contact` <br /> * New method `botogram.Message.reply_with_contact`</p> <p>* Added support for venues:</p> <p> * New class `botogram.Venue` <br /> * New attrinute `botogram.Message.venue` <br /> * New method `botogram.User.send_venue` <br /> * New method `botogram.Chat.send_venue` <br /> * New method `botogram.Message.reply_with_venue`</p> <p>* Added new attribute `botogram.Message.pinned_message` <br />* Added new attribute `botogram.Sticker.emoji` <br />* Added new attribute `botogram.Chat.admins` <br />* Added new attribute `botogram.Chat.creator` <br />* Added new attribute `botogram.Chat.members_count` <br />* Added new method `botogram.Chat.status_of` <br />* Added new method `botogram.Chat.leave` <br />* Added new method `botogram.Bot.chat` <br />* Every method which sends something to a chat now returns the sent <br /> `~botogram.Message` <br />* Multiple instances of the same bot are now properly handled (as <br /> errors) <br />* It's now possible to correctly compare API objects</p> <p>Changes <br />-------</p> <p>* Renamed `Message.new_chat_participant` to <br /> `botogram.Message.new_chat_member` <br />* Renamed `Message.left_chat_participant` to <br /> `botogram.Message.left_chat_member` <br />* `botogram.Message.forward_from` can now be either an instance of <br /> `botogram.User` or `botogram.Chat`</p> <p>Performance improvements <br />------------------------</p> <p>* Updates queueing performance improved <br />* Backlog processing is now instantaneous</p> <p>Bug fixes <br />---------</p> <p>* Fix docstrings not escaped in the `/help` command if no syntax was <br /> used (<a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/67">GH-67</a>)</p> <p> * Now docstrings are escaped if you don't use any HTML syntax in <br /> them, but if you use HTML you need to manually escape that <br /> specific docstring.</p> <p>Deprecated features <br />-------------------</p> <p>Deprecated features will be removed in botogram 1.0!</p> <p>* `Message.new_chat_participant` is now deprecated <br />* `Message.left_chat_participant` is now deprecated <br />* `Bot.hide_commands` is now deprecated <br />* `Bot.send` is now deprecated <br />* `Bot.send_photo` is now deprecated <br />* `Bot.send_audio` is now deprecated <br />* `Bot.send_voice` is now deprecated <br />* `Bot.send_video` is now deprecated <br />* `Bot.send_file` is now deprecated <br />* `Bot.send_location` is now deprecated <br />* `Bot.send_sticker` is now deprecated</p> pietroalbini tag:github.com,2008:Repository/38007898/v0.3 2016-06-14T14:26:23Z v0.3: botogram 0.3 is the third alpha release of botogram. It reaches almost <p>botogram 0.3 is the third alpha release of botogram. It reaches almost</p> <p>feature parity with the upstream Telegram API (except for keyboards and <br />inlines), including the new features in the Bot API 2.0 and 2.1 updates, <br />such as moderating group chats or editing messages.</p> <p>Performance are improved, with a faster updates fetching process, and a <br />bug was fixed in this release. There are also a few deprecations to keep <br />the API clean. All the deprecated features in this release will be <br />removed in botogram 1.0, so you have plenty of time to switch to the new <br />ones.</p> <p>New features <br />------------</p> <p>* Added the ability to react when a chat is not available:</p> <p> * New decorator `botogram.Bot.chat_unavailable` <br /> * New method `botogram.Component.add_chat_unavailable_hook`</p> <p>* Added support for editing messages sent by the bot:</p> <p> * New method `botogram.Message.edit` <br /> * New method `botogram.Message.edit_caption` <br /> * New method `botogram.Bot.edit_message` <br /> * New method `botogram.Bot.edit_caption`</p> <p>* Added support for working with parsed text in a message:</p> <p> * New attribute `botogram.Message.parsed_text` <br /> * New class `botogram.ParsedText` <br /> * New class `botogram.ParsedTextEntity`</p> <p>* Added a new way to hide commands from the `/help` command:</p> <p> * New argument `hidden` on `botogram.Bot.command` <br /> * New argument `hidden` on `botogram.Component.add_command`</p> <p>* Added support for processing edited messages:</p> <p> * New decorator `botogram.Bot.message_edited` <br /> * New method `botogram.Component.add_message_edited_hook`</p> <p>* Added support for moderating groups:</p> <p> * New method `botogram.Chat.ban` <br /> * New method `botogram.Chat.unban`</p> <p>* Added support for sending contacts:</p> <p> * New method `botogram.User.send_contact` <br /> * New method `botogram.Chat.send_contact` <br /> * New method `botogram.Message.reply_with_contact`</p> <p>* Added support for venues:</p> <p> * New class `botogram.Venue` <br /> * New attrinute `botogram.Message.venue` <br /> * New method `botogram.User.send_venue` <br /> * New method `botogram.Chat.send_venue` <br /> * New method `botogram.Message.reply_with_venue`</p> <p>* Added new attribute `botogram.Message.pinned_message` <br />* Added new attribute `botogram.Sticker.emoji` <br />* Added new attribute `botogram.Chat.admins` <br />* Added new attribute `botogram.Chat.creator` <br />* Added new attribute `botogram.Chat.members_count` <br />* Added new method `botogram.Chat.status_of` <br />* Added new method `botogram.Chat.leave` <br />* Added new method `botogram.Bot.chat` <br />* Every method which sends something to a chat now returns the sent <br /> `~botogram.Message` <br />* Multiple instances of the same bot are now properly handled (as <br /> errors) <br />* It's now possible to correctly compare API objects</p> <p>Changes <br />-------</p> <p>* Renamed `Message.new_chat_participant` to <br /> `botogram.Message.new_chat_member` <br />* Renamed `Message.left_chat_participant` to <br /> `botogram.Message.left_chat_member` <br />* `botogram.Message.forward_from` can now be either an instance of <br /> `botogram.User` or `botogram.Chat`</p> <p>Performance improvements <br />------------------------</p> <p>* Updates queueing performance improved <br />* Backlog processing is now instantaneous</p> <p>Bug fixes <br />---------</p> <p>* Fix docstrings not escaped in the `/help` command if no syntax was <br /> used (<a class="issue-link js-issue-link" href="https://github.com/python-botogram/botogram/issues/67">GH-67</a>)</p> <p> * Now docstrings are escaped if you don't use any HTML syntax in <br /> them, but if you use HTML you need to manually escape that <br /> specific docstring.</p> <p>Deprecated features <br />-------------------</p> <p>Deprecated features will be removed in botogram 1.0!</p> <p>* `Message.new_chat_participant` is now deprecated <br />* `Message.left_chat_participant` is now deprecated <br />* `Bot.hide_commands` is now deprecated <br />* `Bot.send` is now deprecated <br />* `Bot.send_photo` is now deprecated <br />* `Bot.send_audio` is now deprecated <br />* `Bot.send_voice` is now deprecated <br />* `Bot.send_video` is now deprecated <br />* `Bot.send_file` is now deprecated <br />* `Bot.send_location` is now deprecated <br />* `Bot.send_sticker` is now deprecated</p>