mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-04 15:33:47 +00:00
92 lines
3.8 KiB
Markdown
92 lines
3.8 KiB
Markdown
# TelegramBotAPI changelog
|
|
|
|
## 0.10.0
|
|
|
|
* Most part of abstractions was replaced from `requests` and `types` on more high level
|
|
* Added abstraction `CommonVenueData`
|
|
* Added abstraction `CommonContactData`
|
|
* Added `InputMessageContent`
|
|
* Update some types and requests according to abstractions replacing
|
|
* Add all `InlineQueryResult`, `InputMessageContent` and other inline mode types
|
|
* Fixes in edition of inline messages and their result types
|
|
* Replace basic exception and add `ReplyMessageNotFound` exception
|
|
|
|
## 0.9.0
|
|
|
|
* Old extension `OkHttpClient.Builder#useWith` now deprecated and must be replaced by the same in
|
|
`com.github.insanusmokrassar.TelegramBotAPI.bot.Ktor` package
|
|
* Replace `ProxySettings` data class in `settings` package, deprecate old link
|
|
* `BaseRequestsExecutor` now have no it's own scope
|
|
* Add `RequestLimiter` and base realisations
|
|
* Now `KtorRequestsExecutor` can receive as one of parameters `RequestLimiter` (by default - `EmptyLimiter`)
|
|
|
|
### 0.9.1
|
|
|
|
* Updated built-in lengths restrictions
|
|
* Apply restrictions of text limit for sending messages
|
|
* Add `RegularTextMessageEntity` which is useful for representing regular text message entity
|
|
* Add `convertToFullMessageEntityList` which create list of entities with `RegularTextMessageEntity` on places where
|
|
must be regular text
|
|
* Change signature of `createMarkdownText`: now it will return list of strings
|
|
* Deprecate old signatures of `createMarkdownText`, `toMarkdownCaption`, `toMarkdownText`
|
|
* Add `ResendableContent#createResends` which create adapted list of resends for content
|
|
* Add `TextContent` own `createResends` realisation
|
|
|
|
### 0.9.2
|
|
|
|
* `RequestsExecutor#executeAsync(Request, CoroutineScope)` now will return `Deferred` for cases when you need result
|
|
* `RequestsExecutor#executeUnsafe` will automatically retry request if it was unsuccessful and retries > 0
|
|
|
|
### 0.9.3
|
|
|
|
* `KtorRequestsExecutor` now can use custom `JSON` string formatter (by default - non strict)
|
|
* `ResponseParameters` renamed to `Response`
|
|
* Add `RequestError` sealed class and described in documentation known errors
|
|
* Add `ResponseParametersRaw` which can create error based on input parameters
|
|
* Add `parameters` field in `Response` and remove useless fields from `Response`
|
|
* Add `leftToRetry` parameter in `RetryAfterError`
|
|
* Add handling of `RetryAfterError` in `KtorRequestsExecutor`
|
|
|
|
### 0.8.5
|
|
|
|
* Add extension `String#toMarkdown`
|
|
* Fix of inserting of text when create Markdown-adapted text from text and text entities
|
|
* Fix default realisation of MessageEntity#asMarkdownSource
|
|
|
|
### 0.8.4
|
|
|
|
* Added `createMarkdownText` and extensions for `CaptionedMediaContent` and `TextContent`
|
|
* Added `ResendableContent` and realize in different contents
|
|
* Animation
|
|
* Audio
|
|
* Document
|
|
* Photo
|
|
* Sticker
|
|
* Video
|
|
* VideoNote
|
|
* Voice
|
|
* `MessageContent` now is `ResendableContent`
|
|
* Now all media sending factories which contains `thumb` have default `null` value
|
|
* `ChatIdentifier` classes now are `data` classes
|
|
* Now `MediaGroupContent` interface contains `toMediaGroupMemberInputMedia` method for easily creating mirror input media
|
|
* Change signature of `Update`
|
|
* Now `Update` is untyped and data is `Any`
|
|
* Media groups now are separated type of updates and you can subscribe on that receiving directly
|
|
* Now `AdministratorChatMember` is interface and `CreatorChatMember` implement it
|
|
|
|
### 0.8.3
|
|
|
|
* Now `ForwardedMessage` contains nullable `from`
|
|
|
|
### 0.8.2
|
|
|
|
* Add `FromUserMessage` which must be implemented in all messages realisations which have `user` field
|
|
* Add `CommonMediaGroupMessage` which in fact extension of `MediaGroupMessage` with implementation of `FromUserMessage`
|
|
* `CommonMessageImpl` now implementing `FromUserMessage`
|
|
|
|
### 0.8.1
|
|
|
|
* Update `MediaGroupMessage` interface
|
|
* Add implementation of `MediaGroupMessage`
|
|
* Add generating of `MediaGroupMessage` in `RawMessage`
|