Skip to content

Update dependency dev.inmo:tgbotapi to v33#45

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-telegram_bot_api_version
Open

Update dependency dev.inmo:tgbotapi to v33#45
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/major-telegram_bot_api_version

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented May 11, 2022

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
dev.inmo:tgbotapi (source) 0.38.1233.1.0 age confidence

Release Notes

insanusmokrassar/TelegramBotAPI (dev.inmo:tgbotapi)

v33.1.0

  • Versions:
    • Kotlin: 2.3.10 -> 2.3.20
    • Serialization: 1.10.0 -> 1.11.0
    • Ktor: 3.4.1 -> 3.4.2
    • MicroUtils: 0.29.1 -> 0.29.2
    • KSLog: 1.6.0 -> 1.6.1

v33.0.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.6

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • THIS IS BREAKING CHANGE MultipleAnswersPoll removed; RegularPoll now directly implements Poll
    • THIS IS BREAKING CHANGE allowMultipleAnswers renamed to allowsMultipleAnswers across poll types and requests
    • THIS IS BREAKING CHANGE QuizPoll.correctOptionId: Int? changed to correctOptionIds: List<Int>?
    • THIS IS BREAKING CHANGE PollOption is now a sealed interface with PollOption.Simple and PollOption.LatelyAdded subtypes; SimplePollOption removed
    • THIS IS BREAKING CHANGE PollAnswer.Anonymous.voterChat type changed from ChannelChat to PreviewPublicChat
    • THIS IS BREAKING CHANGE requestChannelReplyButton (group variant) renamed to requestGroupReplyButton
    • Added BotToken value class
    • Added SavePreparedKeyboardButton request with PreparedKeyboardButton and PreparedKeyboardButtonId types
    • Added GetManagedBotToken and ReplaceManagedBotToken requests
    • Added KeyboardButtonRequestManagedBot and RequestManagedBotKeyboardButton
    • Added ManagedBotCreated chat event and ManagedBotUpdated type with ManagedBotUpdate
    • Added PollOptionPersistentId value class
    • Added PollOptionAdded and PollOptionDeleted chat events
    • Added pollOptionId support in ReplyParameters (reply_to_poll_option_id)
    • Added canManageBots to ExtendedBot
    • Added allowsRevoting, shuffleOptions, allowAddingOptions, hideResultsUntilCloses, description/descriptionTextSources to poll types and send requests
    • Added chosenPersistentIds to PollAnswer
    • Added UsernameAtLessSerializer
    • Extended openPeriodPollSecondsLimit from 5..600 to 5..2628000
    • Fixed quiz poll serialization type (was incorrectly using regularPollType in quiz branch)
    • Fixed quiz poll explanation serialization (now correctly uses explanation/explanationTextSources)
    • Fixed SendQuizPoll correct option index range validation (off-by-one)
    • Several poll validation checks changed from throwing exceptions to logging warnings
  • API:
    • Added savePreparedKeyboardButton extensions
    • Added getManagedBotToken and replaceManagedBotToken extensions
    • Added optional pollOptionId parameter to reply/replyWith* extensions
    • Updated sendQuizPoll extensions with correctOptionIds, allowsMultipleAnswers, allowsRevoting, shuffleOptions, hideResultsUntilCloses, description parameters
    • Updated sendRegularPoll extensions with allowsRevoting, shuffleOptions, allowAddingOptions, hideResultsUntilCloses, description parameters
  • BehaviourBuilder:
    • Added onManagedBotCreated and onManagedBotUpdated triggers
    • Added onPollOptionAdded and onPollOptionDeleted triggers
    • Added waitManagedBotCreatedEvents and waitManagedBotUpdated expectations
    • Added waitPollOptionAddedEvents and waitPollOptionDeletedEvents expectations
    • Added ManagedBotUpdatedFilterByUser and ByUserManagedBotUpdatedMarkerFactory
  • Utils:
    • Added managedBotCreationLink formatting extensions
    • Added requestManagedBotButton to ReplyKeyboardBuilder
    • Added class casts for ManagedBotUpdate, ManagedBotCreated, PollOptionAdded, PollOptionDeleted
    • Removed MultipleAnswersPoll class casts
    • Updated raw poll accessors to match new model (allowsMultipleAnswers, correctOptionIds, explanation)
    • Regenerated class casts extensions
  • WebApps:
    • Added requestChat support for PreparedKeyboardButtonId
    • Fixed iconCustomEmojiId passing in BottomButton

v32.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

  • Version:
    • Kotlin: 2.2.21 -> 2.3.10
    • Kotlin Serialization: 1.9.0 -> 1.10.0
    • Ktor: 3.3.2 -> 3.4.1
    • KSP: 2.3.2 -> 2.3.6
    • MicroUtils: 0.26.9 -> 0.29.1
    • KSLog: 1.5.2 -> 1.6.0
  • Core + API:
    • BREAKING CHANGES: ALL METHODS THAT PREVIOUSLY RETURNED BOOLEAN NOW RETURNS UNIT
  • Core:
    • BREAKING CHANGE SetChatTitle init do not throw error in case when title.length is outside of chatTitleLength
    • BREAKING CHANGE SetStickerEmojiList init do not throw error in case when emojis.size is outside of emojisInStickerLimit
    • BREAKING CHANGE DeleteMessages init do not throw error in case when title is messageIds.size of deleteMessagesLimit
    • BREAKING CHANGE ForwardMessages init do not throw error in case when messageIds.size is outside of forwardMessagesLimit
    • BREAKING CHANGE CopyMessages init do not throw error in case when messageIds.size is outside of copyMessagesLimit
    • BREAKING CHANGE SwitchInlineQueryChosenChat init do not throw error in case when messageIds.size is outside of copyMessagesLimit
    • BREAKING CHANGE SetStickerKeywords init do not throw error in case when there are errors in keywords

v31.2.0

  • Core:
    • Potentially fix #​1027 - drop http request exceptions on getting updates
  • Core + API:
    • Add supportsStreaming in places it haven't been supported (fix of #​1026)
      • PARTIALLY BREAKING CHANGE supportStreaming has been renamed to supportsStreaming

v31.1.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.5

  • Core:
    • Added UserTag value class and senderTag field to messages
    • Added SetChatMemberTag request and UserTag support in PromoteChatMember and ChatPermissions
    • Added DateTimeTextSource for tg://time links support
    • Added DateTimeFormatPart and TgDateTimeFormatBuilder for building date-time format strings
    • Added UnitFromBooleanSerializer
  • API:
    • Added setChatMemberTag extensions
  • Utils:
    • Added dateTime and dateTimeln extensions to EntitiesBuilder
    • Added dateTimeMarkdown, dateTimeMarkdownV2, and dateTimeHTML string formatting extensions
    • Regenerated class casts extensions
  • WebApps:
    • Added iconCustomEmojiId support to BottomButton and BottomButtonParams

v30.0.2

  • Version:
    • Kotlin: 2.2.20 -> 2.2.21
    • Ktor: 3.3.1 -> 3.3.2
    • KSP: 2.2.20-2.0.4 -> 2.3.2
    • MicroUtils: 0.26.6 -> 0.26.8
    • KSLog: 1.5.1 -> 1.5.2
  • Core:
    • Allow to use SetWebhook with maxAllowedConnections up to 100000 (fix of #​1019)
  • KSP:
    • Fixed annotation property access for KSP2 compatibility using withNoSuchElementWorkaround
    • Removed ksp.useKSP2=false workaround from gradle.properties (KSP2 is now properly supported)
  • Utils:
    • Regenerated class casts extensions
    • Allow to use custom GetUpdates in longPollingFlow

v30.0.1

  • Core:
    • Potential fix of #​989 by:
      • In long polling have been added check for causing by unresolved address exception
      • Add TelegramBotPipelinesHandler.onRequestExceptionInLimiter which will be triggered in ANY exception during
        request execution

v30.0.0

THIS UPDATE MAY CONTAINS BREAKING CHANGES

  • Version:
    • Kotlin: 2.2.10 -> 2.2.20
    • Ktor: 3.2.3 -> 3.3.1
    • MicroUtils: 0.26.3 -> 0.26.6
    • KSLog: 1.5.0 -> 1.5.1
  • BehaviourBuilder:
    • DefaultCustomBehaviourContextAndTypeReceiver now extends suspend (BC, U) -> R instead of CustomBehaviourContextAndTypeReceiver<BC, R, U> (no changes in api in fact)

v29.0.1

  • Core:
    • Fix of #​917: all OrderInfo fields now have defaults nulls

v29.0.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.2

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • Add function firstOfOrNull(vararg suspend () -> T): T?
    • Change logic of firstOf - now it works based on merged flows and do not require CoroutineScope as receiver

v28.0.3

  • Core:
    • Add passing of default engines in HttpClient constructors

v28.0.2

  • Core:
    • #​1001 - [Bug] Invalid detection of isCausedByCancellation()
    • #​1002 - Unable to handle UnauthorizedException with buildBehaviourWithLongPolling

v28.0.1

  • Version:
    • Kotlin: 2.2.0 -> 2.2.10
    • MicroUtils: 0.26.2 -> 0.26.3
    • Ktor: 3.2.2 -> 3.2.3
  • Core:
    • Let all OptionallyMessageThreadRequest inheritors to use @EncodeDefault annotation to fix default value passing

v28.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • Add firstOf extension
  • BehaviourBuilder:
    • All builders for behaviours got boolean useDefaultSubcontextInitialAction
    • Add opportunity to pass BehaviourContextData in DefaultBehaviourContext constructor and copy method
    • By default, commands to other bots will be ignored in triggers and waiters

v27.1.2

  • Core:
    • Try to fix cancelling on timeout for long polling
    • Since this update phrase Something web wrong will not happen from this library 😭

v27.1.1

  • Version:
    • MicroUtils: 0.26.1 -> 0.26.2
  • Core:
    • Make BusinessLocation#location optional (fix of #​990)

v27.1.0

v27.0.0

THIS UPDATE MAY CONTAIN BREAKING CHANGES. IN CASE OF ANY MIGRATION PROBLEMS FEEL FREE TO ASK IN OUR CHAT

  • Version:
    • Kotlin: 2.1.20 -> 2.2.0
    • Serialization: 1.8.1 -> 1.9.0
    • Ktor: 3.1.3 -> 3.2.2
    • MicroUtils: 0.25.7 -> 0.26.1
    • KSLog: 1.4.1 -> 1.5.0
  • Common:
    • In most data classes with non-public constructors has been added ConsistentCopyVisibility annotation, preventing
      public nature in difference with constructor
    • Absence of several API methods for requests has been fixed

v26.1.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.1

THIS UPDATE MAY CONTAINS BREAKING CHANGES

v26.0.0

THIS UPDATE CONTAINS BREAKING CHANGES IN BEHAVIOUR BUILDER AND CORE. BE CAREFUL ON UPDATE

  • Version:
    • Serialization: 1.8.0 -> 1.8.1
    • Coroutines: 1.10.1 -> 1.10.2
    • Ktor: 3.1.1 -> 3.1.3
    • MicroUtils: 0.25.3 -> 0.25.7
  • Core:
    • POTENTIALLY BREAKING CHANGE Long polling has been reworked a bit
    • BREAKING CHANGE RequestsExecutor got property RequestsExecutor.Log: KSLog
  • BehaviourContext:
    • BREAKING CHANGE All triggers and waiters become non-suspend functions
    • BREAKING CHANGE Behaviour of counted extensions (commands, data callback queries, etc.) has been changed a bit: now each one will
      create subcontext and work in it
    • New extension BehaviourContext.launchInNewSubContext which will launch some job in subcontext of receiver

v25.0.1

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.0

  • Core:
    • Previously named Gift now presented by Gift.Regular
    • Fixes in MultipartRequestCallFactory for correct handling of all MultipartRequest.Common inheritors
    • Username now can be safely created with Username.prepare
    • Add extensions String.splitFor(Text|Caption|StoryCaption) for preparing several texts for several
      messages/captions/story captions

v25.0.0: 25.0.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.0

  • Core:
    • Previously named Gift now presented by Gift.Regular
    • Fixes in MultipartRequestCallFactory for correct handling of all MultipartRequest.Common inheritors
    • Username now can be safely created with Username.prepare
    • Add extensions String.splitFor(Text|Caption|StoryCaption) for preparing several texts for several
      messages/captions/story captions

v24.0.2

  • Version:
    • Kotlin: 2.1.10 -> 2.1.20
    • Ktor: 3.1.0 -> 3.1.1
    • MicroUtils: 0.24.7 -> 0.25.3
  • DefaultKTgBotAPIKSLog will drop CancellationExceptions by default
  • You may configure DefaultKTgBotAPIKSLog in simple way with SetDefaultKTgBotAPIKSLog
  • BehaviourBuilder:
    • FSM:
      • Fix chains cancelling on their ends

v24.0.1

  • Core:
    • Now you may upload photos with EditChatMessageMedia

v24.0.0

THIS UPDATE CONTAINS BREAKING CHANGES IN subcontextUpdatesFilter WORK. TAKE CARE IN MIGRATION

  • Version:
    • MicroUtils: 0.24.6 -> 0.24.7
  • Core:
    • ForumContentMessage got property threadCreatingInfo which represents information about topic where message has been sent
  • BehaviourBuilder:
    • Fix of overall subcontextUpdatesFilter behaviour. In fact, this update will fix its affection on scenaries

v23.2.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 8.3

  • Version:
    • MicroUtils: 0.24.5 -> 0.24.6
    • Ktor: 3.0.3 -> 3.1.0

v23.1.2

  • Version:
    • Kotlin: 2.1.0 -> 2.1.10
    • Serialization: 1.7.3 -> 1.8.0
    • MicroUtils: 0.24.4 -> 0.24.5
    • KSLog: 1.4.0 -> 1.4.1

v23.1.1

  • Version:
    • MicroUtils: 0.24.0 -> 0.24.4
  • Core:
    • Replace removeFirst with removeAt(0) in createTextSources

v23.1.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 8.2

v23.0.0

  • Version:
    • Coroutines: 1.9.0 -> 1.10.1
    • MicroUtils: 0.23.2 -> 0.24.0
    • KSLog: 1.3.6 -> 1.4.0
    • Ktor: 3.0.2 -> 3.0.3
  • Core:
    • All old factory methods for TextSources took suffix TextSource. For example: regular -> regularTextSource.
      That has been for excluding names resolution ambiguity with extensions for EntitiesBuilder

v22.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

IN THIS UPDATE HAS BEEN REWORKED EVENTS API IN WEBAPPS

THIS UPDATE ADDING SUPPORT OF BOT API 8.0 AND BOT API 8.1

  • Version:
    • MicroUtils: 0.23.1 -> 0.23.2
    • Ktor: 3.0.1 -> 3.0.2

v21.0.1

  • Core:
    • Improvements in Update.sourceUser extension
    • Add extension PrivateChat.toUser
    • Builder methods of TextSources (like pre which returns PreTextSource) lost suppression of redundant inline
      due to its redundancy
    • Add mention builders for EntitiesBuilder with UserId as variant instead of User
  • BehaviourBuilder:
    • Add support of several rounds for CombinedSubcontextInitialAction. Now it will try hard to execute all its
      SubAction while all actions will not be completed successfully OR all left actions will not complete with errors

v21.0.0

  • Version:
    • Kotlin: 2.0.21 -> 2.1.0
    • MicroUtils: 0.23.0 -> 0.23.1
  • BehaviourBuilder:
    • Add special val data: BehaviourContextData into all realizations of BehaviourContext
    • Add CombinedSubcontextInitialAction and functions
      buildSubcontextInitialAction/buildSubcontextInitialActionWithSubActions
    • Add subcontextInitialAction for all the functions-builders of BehaviourContext and
      additionalSubcontextInitialAction to all triggers

v20.0.1

  • Core:
    • Fix of logger propagation (fix of #​860)
    • Add opportunity to modify keyboards (fix of #​761)
    • Fields of OrderInfo became nullable (fix of #​917)
    • Add default toString to ChatType (fix of #​919)
    • Fix of method in CreateInvoiceLink (merging of #​920, made by byteduck-exploit)

v20.0.0

THIS UPDATE CONTAINS SUPPORT OF BOTS API 7.11

  • All:
    • ALL SEND METHODS GOT PARAMETER allowPaidBroadcast WHICH POTENTIALLY MAY SPEND MONEYS FROM BOT BALANCE

v19.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

THIS UPDATE CONTAINS UPGRADE UP TO KTOR 3.0 (thanks to @​d1snin)

  • Version:
    • Ktor: 2.3.12 -> 3.0.1
    • MicroUtils: 0.22.7 -> 0.23.0

v18.2.3

  • Core:
    • Add default middleware ExceptionsThrottlerTelegramBotMiddleware
    • Make TelegramBotMiddlewaresPipelinesHandler to be default TelegramBotPipelinesHandler
    • Make DefaultKtorRequestsExecutor now uses runCatching instead of runCatchingSafely
    • onRequestResultPresented lambda now accepts non-nullable result

v18.2.2

  • Version:
    • Kotlin: 2.0.20 -> 2.0.21
    • MicroUtils: 0.22.4 -> 0.22.7
  • Core:
    • Fixes in blockquotes serializations
    • Now RawMessageEntity is public. It is still under Warning annotation and is subject of changes
  • BehaviourBuilder:
    • Add CommonMessageFilterExcludeCommand to filter commands in messages
    • Add minus operation for SimpleFilters

v18.2.1

  • Version:
    • Serialization: 1.7.2 -> 1.7.3
    • Coroutines: 1.8.1 -> 1.9.0
    • MicroUtils: 0.22.2 -> 0.22.4

v18.2.0

THIS UPDATE CONTAINS SUPPORT OF BOTS API 7.10

  • Core:
    • Customize GiveawayCreated to use stars in some cases
    • GiveawayInfo lost parameter premiumMonths because of it is no included by default
    • GiveawayPublicResults lost parameter publicWinners because of its abcence in Telegram Bot API
    • Fix GiveawayPublicResults to be correctly deserializable
    • Fix GiveawayPrivateResults to be correctly deserializable
    • Fixes in deserialization of updates with giveaways
  • BehaviourBuilder:
    • Extension buildBehaviourWithLongPolling will not report absence of /privacy handling
  • WebApp:
    • MainButton has been deprecated in favor to BottomButton. Their functionality is equal

v18.1.0

  • BehaviourBuilder:
    • Add createSubContextAndDoSynchronouslyWithUpdatesFilter as old logic of createSubContextAndDoWithUpdatesFilter
    • createSubContextAndDoWithUpdatesFilter has been renamed to createSubContextAndDoAsynchronouslyWithUpdatesFilter

v18.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

This update contains solution for issue #​888, made by
@​Nik-mmzd


Migration (step-by-step)

Replace in a whole project:

  1. RestrictedChatMember -> RestrictedMemberChatMember
  2. BannedChatMember -> RestrictedChatMember

Changes:

  • Version:
    • Kotlin: 2.0.10 -> 2.0.20
    • Serialization: 1.7.1 -> 1.7.2
    • MicroUtils: 0.22.0 -> 0.22.2
    • KSLog: 1.3.5 -> 1.3.6
    • Ktor: 2.3.11 -> 2.3.12
  • Core:
    • RestrictedChatMember has been renamed to RestrictedMemberChatMember
    • BannedChatMember has been renamed to RestrictedChatMember
    • KickedChatMember now implements RestrictedChatMember (due to rename)
    • All ChatMembers now use PreviewUsers instead of Users
  • Utils:
    • Add a lot of extensions like ChatMember.isMember
    • Add a lot of extensions like ChatMemberUpdated.joinedChat

v17.0.0

THIS UPDATE CONTAINS SUPPORT OF BOTS API 7.9

  • Add support of subscriptions links handling
  • Add support of info about sender chat. It is important, that for channels will be actual senderChat instead of
    from field due to User type of the last one
    . You also may use extensions Message.sender_chat or Any.withSenderChatMessageOrNull
    to access sender chat
  • Add Reaction.Paid

Additional changes:

  • Core:
    • Add top level interfaces OptionallyWithUser and OptionallyFromUser. Old WithUser and FromUser interfaces
      extending them with following overrides of user and from fields
  • API:
    • Change order of delay and sending action in SendActionDSL
      (thanks to DRSchlaubi, PR #​833).
      Besides, there has been changed way to create parallel sending of action and it must not lead to memory leaks anymore

v16.0.0

THIS UPDATE CONTAINS KOTLIN UPDATE UP TO 2.0

  • Version:
    • Kotlin: 1.9.23 -> 2.0.10
    • Serialization: 1.6.3 -> 1.7.1
    • MicroUtils: 0.21.2 -> 0.22.0
    • KSLog: 1.3.4 -> 1.3.5

v15.3.0

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.8

  • Core:
    • OptionallyBusinessConnectionRequest now extends WithOptionalBusinessConnectionId
    • Add hasMainWebApp in ExtendedBot
  • API:
    • Add BusinessConnectionId to pin/unpin methods
  • WebApp:
    • Add shareToStory in WebApp

v15.2.0

  • API:
    • Enabled an explicit mode for API module (PR #​876)
  • WebApps:
    • Built-in onClick and offClick of MainButton become public (PR #​875)
    • Old MainButton.onClick extension has been removed to avoid collisions of types

v15.1.0

THIS UPDATE CONTAINS BREAKING CHANGES

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.7 (thanks to bpavuk)

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.6 (with participation and help of bpavuk)

  • Add support of paid media
  • Update web apps
  • Version:
    • MicroUtils: 0.21.1 -> 0.21.2
  • Core:
    • TelegramMedia has been separated onto two interfaces: TelegramFreeMedia and TelegramPaidMedia
      • TelegramFreeMedia has replaced TelegramMedia on all old places where it have been used
    • Photo has been renamed to PhotoFile
  • BehaviourBuilder:
    • Add notification when handling of /privacy command is absence
    • Add several extensions to simplify setting up /privacy reaction

v15.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.5

  • Version:
    • MicroUtils: 0.21.0 -> 0.21.1
  • A lot of edit methods and classes has been changed to support business connection id

v14.1.0

  • Version:
    • Coroutines: 1.8.0 -> 1.8.1
    • Ktor: 2.3.10 -> 2.3.11
    • MicroUtils: 0.20.45 -> 0.21.0
    • KSLog: 1.3.3 -> 1.3.4
  • BehaviourBuilder:
    • BehaviourContext updates listening job will be weakly subscribed. It means that BehaviourContext scope will
      not be prevented from cancelling by this job anymore
    • BehaviourContext.doInContext will not stop automatically current BehaviourContext job anymore
    • BehaviourContext.createSubContextAndDoWithUpdatesFilter will use supervisorScope instead of
      LinkedSupervisorScope. That will prevent scope leaking in runtime

v14.0.1

  • In core and api modules related to invoices changed their APIs to suite current API

v14.0.0

Add support of Telegram Bots API 7.4

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • TelegramPaymentChargeId has been added as value class and replaced raw strings in SuccessfulPayment type of telegramPaymentChargeId
  • All the methods/classes related to sending of messages got effectId parameter
  • All the methods/classes related to sending of photos/animations/videos got showCaptionAboveMedia parameter

v13.0.0

Add support of Telegram Bots API 7.3

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • For polls, textSources now means question text sources. For QuizPoll there are explanation and explanationTextSources
      for hinting
  • API:
    • A lot of API related to Polls has been changed to include opportunity to pass ParseMode and TextSources list

v12.0.1

  • Version:
    • Ktor: 2.3.9 -> 2.3.10
    • MicroUtils: 0.20.39 -> 0.20.45
    • UUID: 0.8.2 -> 0.8.4

v12.0.0

Add support of Telegram Bots API 7.2

THIS UPDATE CONTAINS A LOT OF BREAKING CHANGES

v11.0.0

THIS UPDATE CONTAINS REMOVES OF DEPRECATED THINGS

THIS UPDATE CONTAINS A LOT OF BREAKING CHANGES

  • Core:
    • MessageId now is value class. MessageIdentifier become deprecated
    • MessageThreadId now is value class
    • InlineQueryIdentifier now is value class
    • MediaGroupIdentifier has been renamed to MediaGroupId and now is value class
    • CallbackQueryIdentifier has been renamed to CallbackQueryId and now is value class
    • WebAppQueryId now is value class
    • PreCheckoutQueryId now is value class
    • FileUniqueId has been renamed to TgFileUniqueId and now is value class
    • UpdateIdentifier has been renamed to UpdateId and now is value class
    • InlineMessageIdentifier has been renamed to InlineMessageId and now is value class
    • ShippingQueryIdentifier has been renamed to ShippingQueryId and now is value class
    • Identifier has been renamed to RawChatId and now is value class
    • ShippingOptionIdentifier has been renamed to ShippingOptionId and now is value class
    • PollIdentifier has been renamed to PollId and now is value class
    • StickerSetName now is value class

v10.1.1

  • Version:
    • Serialization: 1.6.2 -> 1.6.3
    • MicroUtils: 0.20.34 -> 0.20.37
    • Korlibs: 5.3.1 -> 5.3.2

v10.1.0

Add support of Telegram Bots API 7.1

  • Version:
    • Coroutines: 1.7.3 -> 1.8.0
    • MicroUtils: 0.20.32 -> 0.20.34

v10.0.1

  • Version:
    • Ktor: 2.3.7 -> 2.3.8
    • MicroUtils: 0.20.26 -> 0.20.32
    • Korlibs: 5.3.0 -> 5.3.1
    • KSLog: 1.3.1 -> 1.3.2

v10.0.0

Add support of Telegram Bots API 7.0

IN THIS UPDATE KLOCK DEPENDENCY CHANGED TO com.soywiz.korge:korlibs-time UP TO 5.3.0 VERSION

IN THIS UPDATE KRYPTO DEPENDENCY CHANGED TO com.soywiz.korge:korlibs-crypto UP TO 5.3.0 VERSION

  • Version:
    • MicroUtils: 0.20.23 -> 0.20.26
    • Korlibs: 4.0.10 -> 5.3.0
  • Core:
    • Message now inherited by two variants: AccessibleMessage and InaccessibleMessage
  • Common:
    • In most places disableWebPagePreview has been replaced by new LinkPreviewOptions
    • In most places arguments replyToMessageId and allowSendingWithoutReply has been replaced with
      ReplyParameters
      • In reply extension two parameters have been added: replyInChatId and replyInThreadId

v9.4.3

IetfLanguageCode has been renamed to IetfLang in MicroUtils

  • Version:
    • Kotlin: 1.9.21 -> 1.9.22
    • MicroUtils: 0.20.19 -> 0.20.23

v9.4.2

  • Version:
    • Serialization: 1.6.1 -> 1.6.2
    • Ktor: 2.3.6 -> 2.3.7
    • MicroUtils: 0.20.15 -> 0.20.19
    • UUID: 0.8.1 -> 0.8.2

v9.4.1

  • Replace warning about two bots from LongPolling to DefaultKtorRequestsExecutor

v9.4.0

  • Version:
    • Kotlin: 1.9.20 -> 1.9.21
    • Serialization: 1.6.0 -> 1.6.1
    • Ktor: 2.3.5 -> 2.3.6
    • MicroUtils: 0.20.12 -> 0.20.15

v9.3.0

This release become possible thanks to Anton Lakotka

THIS RELEASE CONTAINS UPDATES UP TO RELEASE CANDIDATES VERSIONS

UPDATE MAY HAVE BREAKING CHANGES

SINCE THIS UPDATE IT WILL BE REQUIRED TO USE JDK 17+ FOR DEVELOPMENT

  • Version:
    • Kotlin: 1.8.22 -> 1.9.20
    • Serialization: 1.5.1 -> 1.6.0
    • KorLibs: 4.0.3 -> 4.0.10
    • UUID: 0.7.1 -> 0.8.1
    • Ktor: 2.3.4 -> 2.3.5
    • MicroUtils: 0.19.9 -> 0.20.12

v9.2.4

  • Utils:
    • New extensions *.parseCommandsWithNamedArgs
  • BehaviourBuilder:
    • In expectaters and triggers of commands add *WithNamedArgs variants
    • In expectaters and triggers of commands add opportunity to use custom separator

v9.2.3

  • Core:
    • Fix in VoiceContent#createResend

v9.2.2

  • Core:

v9.2.1

  • Version:
    • Ktor: 2.3.3 -> 2.3.4
  • Core:
    • All ChatMember inheritors have fixes status field

v9.2.0

Add support of Telegram Bots API 6.9

  • Rename ChatAdministratorRightsImpl -> ChatCommonAdministratorRights
  • All the request chat keyboards has changed their parameters ChatAdministratorRights to ChatCommonAdministratorRights

v9.1.2

  • Core:
    • Fix of MessageContent serialization

v9.1.1

  • Core:
    • Potential fix of incorrect parsing in RawMessageEntity

v9.1.0

This update contains adding of Telegram Bot API 6.8 support

  • Version:
    • Coroutines: 1.7.2 -> 1.7.3
    • Ktor: 2.3.2 -> 2.3.3
    • MicroUtils: 0.19.7 -> 0.19.9

v9.0.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.2

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • Add function firstOfOrNull(vararg suspend () -> T): T?
    • Change logic of firstOf - now it works based on merged flows and do not require CoroutineScope as receiver

v8.1.0

  • BehaviourBuilder:
    • Add createSubContextAndDoSynchronouslyWithUpdatesFilter as old logic of createSubContextAndDoWithUpdatesFilter
    • createSubContextAndDoWithUpdatesFilter has been renamed to createSubContextAndDoAsynchronouslyWithUpdatesFilter

v8.0.1

  • Version:
    • Kotlin: 2.2.0 -> 2.2.10
    • MicroUtils: 0.26.2 -> 0.26.3
    • Ktor: 3.2.2 -> 3.2.3
  • Core:
    • Let all OptionallyMessageThreadRequest inheritors to use @EncodeDefault annotation to fix default value passing

v8.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

  • Core:
    • Add firstOf extension
  • BehaviourBuilder:
    • All builders for behaviours got boolean useDefaultSubcontextInitialAction
    • Add opportunity to pass BehaviourContextData in DefaultBehaviourContext constructor and copy method
    • By default, commands to other bots will be ignored in triggers and waiters

v7.1.3

  • Versions:
    • Serialization: 1.5.0 -> 1.5.1
    • MicroUtils: 0.18.1 -> 0.18.4
  • Core:
    • Actualize kdocs in InputFile
  • BehaviourBuilder:
    • Now it is possible to use waitMediaContent/waitMediaContentMessage/onMediaContent
    • Add onMention/waitMention functionality
    • Add opportunity to map content with extensions to Flow

v7.1.2

  • Core:
    • Try to fix cancelling on timeout for long polling
    • Since this update phrase Something web wrong will not happen from this library 😭

v7.1.1

  • Version:
    • MicroUtils: 0.26.1 -> 0.26.2
  • Core:
    • Make BusinessLocation#location optional (fix of #​990)

v7.1.0

v7.0.2

This update brings experimental support of linuxX64 and mingwX64 platforms

  • Versions:
    • Kotlin: 1.8.10 -> 1.8.20
    • MicroUtils: 0.17.5 -> 0.17.8
    • Ktor: 2.2.4 -> 2.3.0
  • Core:
    • New RequestsExecutor - MultipleClientKtorRequestsExecutor
    • Old KtorRequestsExecutor has been renamed to DefaultKtorRequestsExecutor
    • KtorRequestsExecutor now is expect class
      • On JS, JVM and MinGWX64 platforms it is DefaultKtorRequestsExecutor
      • On LinuxX64 platform it is MultipleClientKtorRequestsExecutor

v7.0.1

  • Core:
    • New interface WithChat which contains chat field
      • Message now inherits WithChat
      • ChatMemberUpdated now inherits WithChat
  • Utils:
    • Improvements in same-notations

v7.0.0

THIS UPDATE MAY CONTAIN BREAKING CHANGES. IN CASE OF ANY MIGRATION PROBLEMS FEEL FREE TO ASK IN OUR CHAT

  • Version:
    • Kotlin: 2.1.20 -> 2.2.0
    • Serialization: 1.8.1 -> 1.9.0
    • Ktor: 3.1.3 -> 3.2.2
    • MicroUtils: 0.25.7 -> 0.26.1
    • KSLog: 1.4.1 -> 1.5.0
  • Common:
    • In most data classes with non-public constructors has been added ConsistentCopyVisibility annotation, preventing
      public nature in difference with constructor
    • Absence of several API methods for requests has been fixed

v6.1.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.1

THIS UPDATE MAY CONTAINS BREAKING CHANGES

v6.0.3

  • Versions:
    • MicroUtils: 0.17.1 -> 0.17.2
  • Core:
    • User in CallbackQuery now is CommonUser as well as in from
    • User in InlineQuery now is CommonUser as well as in from
  • BehaviourBuilder:
    • Fixes in DeepLink triggers and waiters

v6.0.2

  • Core:
    • Long polling now uses media groups debounce as in webhooks

v6.0.1

  • Versions:
    • Ktor: 2.2.3 -> 2.2.4
    • MicroUtils: 0.17.0 -> 0.17.1

v6.0.0

THIS UPDATE CONTAINS BREAKING CHANGES IN BEHAVIOUR BUILDER AND CORE. BE CAREFUL ON UPDATE

  • Version:
    • Serialization: 1.8.0 -> 1.8.1
    • Coroutines: 1.10.1 -> 1.10.2
    • Ktor: 3.1.1 -> 3.1.3
    • MicroUtils: 0.25.3 -> 0.25.7
  • Core:
    • POTENTIALLY BREAKING CHANGE Long polling has been reworked a bit
    • BREAKING CHANGE RequestsExecutor got property RequestsExecutor.Log: KSLog
  • BehaviourContext:
    • BREAKING CHANGE All triggers and waiters become non-suspend functions
    • BREAKING CHANGE Behaviour of counted extensions (commands, data callback queries, etc.) has been changed a bit: now each one will
      create subcontext and work in it
    • New extension BehaviourContext.launchInNewSubContext which will launch some job in subcontext of receiver

v5.2.1

  • Core:
    • All the CallbackQueryes now will receive CommonUser instead of User due inability of bots to trigger any
      inline interaction with others bots
  • API:
    • Now sentMessageFlow will take each sent message in handleLiveLocation

v5.2.0

  • API:
    • Enabled an explicit mode for API module (PR #​876)
  • WebApps:
    • Built-in onClick and offClick of MainButton become public (PR #​875)
    • Old MainButton.onClick extension has been removed to avoid collisions of types

v5.1.1

  • Core:
    • Add opportunity to get user link with makeUserLink
  • BehaviourBuilder:
    • Fixes in content waiting expectators

v5.1.0

THIS UPDATE CONTAINS BREAKING CHANGES

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.7 (thanks to bpavuk)

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.6 (with participation and help of bpavuk)

  • Add support of paid media
  • Update web apps
  • Version:
    • MicroUtils: 0.21.1 -> 0.21.2
  • Core:
    • TelegramMedia has been separated onto two interfaces: TelegramFreeMedia and TelegramPaidMedia
      • TelegramFreeMedia has replaced TelegramMedia on all old places where it have been used
    • Photo has been renamed to PhotoFile
  • BehaviourBuilder:
    • Add notification when handling of /privacy command is absence
    • Add several extensions to simplify setting up /privacy reaction

v5.0.2

  • Versions:
    • MicroUtils: 0.16.6 -> 0.16.8
    • Ktor: 2.2.2 -> 2.2.3
  • BehaviourBuilder:
    • Fixes in BehaviourContext.onEditedContentMessage - now it will trigger callback on channel post edits too

v5.0.1

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 9.0

  • Core:
    • Previously named Gift now presented by Gift.Regular
    • Fixes in MultipartRequestCallFactory for correct handling of all MultipartRequest.Common inheritors
    • Username now can be safely created with Username.prepare
    • Add extensions String.splitFor(Text|Caption|StoryCaption) for preparing several texts for several
      messages/captions/story captions

v5.0.0

THIS UPDATE CONTAINS BREAKING CHANGES

THIS UPDATE CONTAINS ADDING OF SUPPORT FOR BOTS API 7.5

  • Version:
    • MicroUtils: 0.21.0 -> 0.21.1
  • A lot of edit methods and classes has been changed to support business connection id

v4.2.4

  • Core:
    • Fixes in webhook parts adapter
  • BehaviourBuilderWithFSM:
    • Fixes in DefaultBehaviourContextWithFSM

v4.2.3

  • Versions:
    • MicroUtils: 0.16.2 -> 0.16.4
  • Core:
    • Simplify default RequestsLimiter (ExceptionsOnlyLimiter) (thanks to @​y9san9 for help)

v4.2.2

  • Versions:
    • MicroUtils: 0.16.0 -> 0.16.2
  • Core:
    • Fix of #​694: add opportunity to create ChatId and ChatIdWithThreadId from IdChatIdentifier

v4.2.1

  • Versions:
    • MicroUtils: 0.15.0 -> 0.16.0
    • Ktor: 2.1.3 -> 2.2.1
  • Utils:
    • Improve support of makeLinkToMessage extensions

v4.2.0

  • Versions:
    • Kotlin: 1.7.21 -> 1.7.22
    • MicroUtils: 0.14.4 -> 0.15.0

v4.1.3

  • Versions:
    • MicroUtils: 0.14.2 -> 0.14.4
  • Core:
    • ContentMessage, CommonMessage, PossiblyMediaGroupMessage and PossiblySentViaBotCommonMessage got out
      variance
    • UserId now is ChatId instead of IdChatIdentififer

v4.1.2

  • Versions:
    • MicroUtils: 0.14.1 -> 0.14.2
  • BehaviourBuilder:
    • Fixes in CallbackQuery waiters

v4.1.1

  • Core:
    • Add opportunity to create IdChatIdentifier with optional threadId
    • New serializer FullChatIdentifierSerializer with serialization of ChatIdWithThreadId

v4.1.0

  • Version:
    • Coroutines: 1.8.0 -> 1.8.1
    • Ktor: 2.3.10 -> 2.3.11
    • MicroUtils: 0.20.45 -> 0.21.0
    • KSLog: 1.3.3 -> 1.3.4
  • BehaviourBuilder:
    • BehaviourContext updates listening job will be weakly subscribed. It means that BehaviourContext scope will
      not be prevented from cancelling by this job anymore
    • BehaviourContext.doInContext will not stop automatically current BehaviourContext job anymore
    • BehaviourContext.createSubContextAndDoWithUpdatesFilter will use supervisorScope instead of
      LinkedSupervisorScope. That will prevent scope leaking in runtime

v4.0.0

THIS UPDATE CONTAINS BREAKING CHANGES IN subcontextUpdatesFilter WORK. TAKE CARE IN MIGRATION

  • Version:
    • MicroUtils: 0.24.6 -> 0.24.7
  • Core:
    • ForumContentMessage got property threadCreatingInfo which represents information about topic where message has been sent
  • BehaviourBuilder:
    • Fix of overall subcontextUpdatesFilter behaviour. In fact, this update will fix its affection on scenaries

v3.3.1

  • Versions:
    • Ktor: 2.1.2 -> 2.1.3
    • Klock: 3.2.0 -> 3.3.1
    • MicroUtils: 0.13.1 -> 0.13.2
  • Utils:
    • New extensions on CommonMessage: hasCommands and hasNoCommands. Useful for the initialFilter parameter in behaviour builder triggers.

v3.3.0

THIS VERSION CONTAINS UPGRADE KOTLIN (AND ALL RELATED LIBRARIES) UP TO 1.7.20

  • Versions:
    • Kotlin: 1.7.10 -> 1.7.20
    • Kotlin Serialization: 1.4.0 -> 1.4.1
    • Korlibs: 3.1.0 -> 3.2.0
    • MicroUtils: 0.12.17 -> 0.13.1
  • Core:
    • Add opportunity to create command text source and add command in entities builder
      via BotCommamd (thanks to d1shin)
  • API:
    • New extensions TelegramBot#getStickerSetOrNull and TelegramBot#getStickerSetOrThrow
      • Old TelegramBot#getStickerSet has been deprecated
  • Behaviour Builder:
    • Add opportunity to use triggers and waiters with BotCommand (thanks to d1shin)

v3.2.7

  • Versions:
    • MicroUtils: 0.12.13 -> 0.12.17
    • Ktor: 2.1.1 -> 2.1.2
  • Utils:
    • Next classes become typealiases instead of classes:
      • ReplyKeyboardBuilder
      • ReplyKeyboardRowBuilder
      • InlineKeyboardBuilder
      • InlineKeyboardRowBuilder

v3.2.6

  • Core:
    • Fixes in ChatMemberSerializer#serialize method
    • Migration of EntitiesBuilder from Utils to Core
  • API:
    • All the extensions related to text messages (replies, sending, editing) got their duplicates with buildEntities lambda and separator
  • Utils:
    • Migration of EntitiesBuilder from Utils to Core

v3.2.5

  • Common:
    • Improve support of new exceptions recovering mechanism

v3.2.4

  • API:
    • New edit's with chats and message ids

v3.2.3

  • Core:
    • Fixes in DeleteMyCommands

v3.2.2

  • Versions:
    • MicroUtils: 0.12.10 -> 0.12.13
  • Core:
    • MessageIdentifier has been renamed to MessageId
  • API:
    • New reply'es with chats and message ids

v3.2.1

  • Core:
    • Fix of year field in Birthdate

v3.2.0

THIS UPDATE CONTAINS ADDING SUPPORT OF Telegram Bots API 8.3

  • Version:
    • MicroUtils: 0.24.5 -> 0.24.6
    • Ktor: 3.0.3 -> 3.1.0

v3.1.1

  • Version:
    • MicroUtils: 0.24.0 -> 0.24.4
  • Core:
    • Replace removeFirst with removeAt(0) in createTextSources

v3.1.0

  • Versions:
    • Kotlin: 2.3.10 -> 2.3.20
    • Serialization: 1.10.0 -> 1.11.0
    • Ktor: 3.4.1 -> 3.4.2
    • MicroUtils: 0.29.1 -> 0.29.2
    • KSLog: 1.6.0 -> 1.6.1

v3.0.2

ALL OLD DEPRECATIONS HAVE BEEN REMOVED

copyMessage HAVE CHANGED THEIR SIGNATURE BY SWAPPING FROM AND TO CHAT IDS

  • Versions:
    • Kotlin: 1.6.21 -> 1.7.10
    • Serialization: 1.3.3 -> 1.4.0-RC
    • Korlibs: 2.7.0 -> 3.0.0
    • UUID: 0.4.1 -> 0.5.0
    • MicroUtils: 0.11.13 -> 0.12.0
  • Core:
    • Interface ReplyMakrup has been renamed to WithReplyMarkup to correspond its purpose
    • Data class LeftChatMember has been renamed to LeftChatMemberEvent to avoid type ambiguite with the other LeftChatMember
    • ForwardInfo hierarchy has been fully reworked:
      • AnonymousForwardInfo -> ForwardInfo.ByAnonymous
      • UserForwardInfo -> ForwardInfo.ByUser
      • `ForwardFr

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 4 times, most recently from dd8f08c to 76c37d8 Compare May 18, 2022 12:35
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 95f5501 to 91cf07e Compare May 22, 2022 10:13
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v1 Update dependency dev.inmo:tgbotapi to v2 May 22, 2022
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 4b7cd87 to fdaa7bf Compare June 5, 2022 17:05
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from ef599fe to 4365da2 Compare June 24, 2022 00:30
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 4365da2 to 36673b1 Compare September 25, 2022 10:49
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v2 Update dependency dev.inmo:tgbotapi to v3 Sep 25, 2022
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 36673b1 to 30680c8 Compare November 20, 2022 17:12
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v3 Update dependency dev.inmo:tgbotapi to v4 Nov 20, 2022
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 30680c8 to 3749d79 Compare March 16, 2023 07:08
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v4 Update dependency dev.inmo:tgbotapi to v7 Mar 16, 2023
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 3749d79 to 63be428 Compare March 23, 2023 21:44
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 9abc4a6 to 749572c Compare June 2, 2023 12:51
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v7 Update dependency dev.inmo:tgbotapi to v8 Jun 2, 2023
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 749572c to 960fb46 Compare June 7, 2023 06:34
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 21c7de0 to abc2df4 Compare July 1, 2023 13:35
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v8 Update dependency dev.inmo:tgbotapi to v9 Jul 1, 2023
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from abc2df4 to 116d654 Compare August 20, 2023 01:17
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 921c5fa to df9c454 Compare September 1, 2023 00:54
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from c9f1725 to 6963dcb Compare September 29, 2023 18:38
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 15099ba to c4b271e Compare February 17, 2024 06:35
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from c4b271e to 30b4973 Compare March 1, 2024 19:09
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 30b4973 to dcdbe08 Compare March 18, 2024 10:52
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v10 Update dependency dev.inmo:tgbotapi to v11 Mar 18, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from dcdbe08 to 0850093 Compare April 20, 2024 23:25
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v11 Update dependency dev.inmo:tgbotapi to v12 Apr 20, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 0850093 to e6e5e16 Compare April 23, 2024 10:56
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from e6e5e16 to 97b109c Compare May 10, 2024 19:34
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v12 Update dependency dev.inmo:tgbotapi to v13 May 10, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 97b109c to ea6ad16 Compare June 1, 2024 16:21
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v13 Update dependency dev.inmo:tgbotapi to v14 Jun 1, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from ea6ad16 to 03bc226 Compare June 6, 2024 21:33
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 624d63d to 684b2d6 Compare June 25, 2024 21:21
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v14 Update dependency dev.inmo:tgbotapi to v15 Jun 25, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 72f0026 to 722a648 Compare July 15, 2024 18:39
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 722a648 to 381efd4 Compare August 2, 2024 15:06
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 381efd4 to 0880076 Compare August 12, 2024 04:42
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v15 Update dependency dev.inmo:tgbotapi to v16 Aug 12, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 0880076 to 3346f1d Compare August 14, 2024 22:36
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v16 Update dependency dev.inmo:tgbotapi to v17 Aug 14, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 3346f1d to f453e9e Compare September 2, 2024 17:30
@renovate renovate Bot changed the title Update dependency dev.inmo:tgbotapi to v17 Update dependency dev.inmo:tgbotapi to v18 Sep 2, 2024
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch 2 times, most recently from 45d6125 to 3624ad8 Compare September 8, 2024 19:54
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 3624ad8 to 15c75a1 Compare September 26, 2024 03:55
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 15c75a1 to 27d27fc Compare October 21, 2024 15:27
@renovate renovate Bot force-pushed the renovate/major-telegram_bot_api_version branch from 27d27fc to d8c6f8a Compare October 30, 2024 12:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants