all repos — telegram-bot-api @ 000cb2eb0eed1de00a3c4a90d2fc085abb7040c6

Golang bindings for the Telegram Bot API

docs/changelog.md (view raw)

 1# Change Log
 2
 3## v5
 4
 5**Work In Progress**
 6
 7- Remove all methods that return `(APIResponse, error)`.
 8  - Use the `Request` method instead.
 9  - For more information, see [Library Structure][library-structure].
10- Remove all `New*Upload` and `New*Share` methods, replace with `New*`.
11  - Use different [file types][files] to specify if upload or share.
12- Rename `UploadFile` to `UploadFiles`, accept `[]RequestFile` instead of a
13  single fieldname and file.
14- Fix methods returning `APIResponse` and errors to always use pointers.
15- Update user IDs to `int64` because of Bot API changes.
16- Add missing Bot API features.
17
18[library-structure]: ./getting-started/library-structure.md#methods
19[files]: ./getting-started/files.md