telegram-bot-api

Golang bindings for the Telegram Bot API

MIT License

Stars
5.5K
Committers
97

Bot releases are visible (Hide)

telegram-bot-api - v5.5.1 Latest Release

Published by Syfaro almost 3 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/go-telegram-bot-api/telegram-bot-api/compare/v5.5.0...v5.5.1

telegram-bot-api - v5.5.0

Published by Syfaro almost 3 years ago

telegram-bot-api - v5.4.0

Published by Syfaro almost 3 years ago

See the site for information about upgrading from v4

What's Changed

New Contributors

telegram-bot-api - v5.4.0-beta.0

Published by Syfaro almost 3 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/go-telegram-bot-api/telegram-bot-api/compare/v5.0.1...v5.4.0-beta.0

telegram-bot-api - Bot API 2.3

Published by Syfaro almost 8 years ago

This release adds the new features and changes from the Telegram Bot API 2.3.

Please note that Telegram is deprecating the hide_keyboard field in favor of remove_keyboard.

telegram-bot-api - Fix BaseEdit.values to allow editing inline messages

Published by Syfaro about 8 years ago

chat_id and message_id should be sent only if there is no
inline_message_id (and vice versa), according to documentation.
Without this change it is impossible to edit a message by InlineMessageID, because chat_id and message_id are always presented in a query and the Telegram server tries to use them instead of InlineMessageID

https://github.com/go-telegram-bot-api/telegram-bot-api/pull/55

telegram-bot-api - General improvements

Published by Syfaro about 8 years ago

This release adds the following new helper methods.

  • NewInlineQueryResultArticleMarkdown(id, title, messageText string)
  • NewInlineQueryResultArticleHTML(id, title, messageText string)
  • NewInlineQueryResultPhotoWithThumb(id, url, thumb string)

It also fixes a bug where update offsets could not be negative, which is a valid value.

telegram-bot-api - Bot API 2.1

Published by Syfaro over 8 years ago

This release adds support for the new chat methods as part of the Bot API 2.1. It also adds support for bots to get edited messages.

telegram-bot-api - New fields for Sticker and Message

Published by Syfaro over 8 years ago

This release adds the new Emoji field on Sticker and ForwardFromChat field on Message.

telegram-bot-api - Fix ReplyMarkup on editing configs.

Published by Syfaro over 8 years ago

This release fixes the ReplyMarkup on config structs for editing messages.

telegram-bot-api - Add missing helpers and fix broken config

Published by Syfaro over 8 years ago

Adds NewMessageToChannel, fix an issue with ReplyMarkup in EditMessageReplyMarkupConfig.

telegram-bot-api - Add more helpers

Published by Syfaro over 8 years ago

This release adds more helpers to ease creating keyboards among other things.

telegram-bot-api - Bot API 2.0

Published by Syfaro over 8 years ago

This release implements the new Bot API 2.0 features. It also resolves issues with several of Telegram's changes.

telegram-bot-api - Fix ChatIDs

Published by Syfaro over 8 years ago

This release resolves the issue where chats with larger IDs were incorrect as they overflowed the default int type.

telegram-bot-api - Fix InlineQuery From field.

Published by Syfaro over 8 years ago

Fix bug in InlineQuery From field, also adds example for answering inline queries.

telegram-bot-api - Allow disabling notifications for sent messages.

Published by Syfaro over 8 years ago

telegram-bot-api - Full Inline Query support

Published by Syfaro almost 9 years ago

This release fixes Inline Query support and adds helpers for creating Inline Query responses.

telegram-bot-api - Remove deprecated functions, clean up others.

Published by Syfaro almost 9 years ago

This version removes previously deprecated functions and values, prefixes all error constants with Err, removes a string error and replaces it with a constant, makes Message.Command return just the command without slash or bot name if specified, and removes the http.Handler returned by ListenForWebhook.

telegram-bot-api - Major documentation and code cleanup.

Published by Syfaro almost 9 years ago

All documention is now less than 80 characters wide. Old methods now show deprecated warnings. The Values/Params/Method functions are now private. Types and configs have required and optional comments on them. Simplified some function logic.