Update kotlinx-coroutines monorepo to v1.11.0 - #878
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
July 24, 2025 19:03
bd42a71 to
fa302c9
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
August 10, 2025 12:25
fa302c9 to
c6f4e43
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
August 25, 2025 19:49
c6f4e43 to
27bcced
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
September 8, 2025 13:11
27bcced to
6772a6e
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
October 9, 2025 10:58
6772a6e to
f5272e8
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
November 10, 2025 14:00
f5272e8 to
8176ff8
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
November 28, 2025 16:46
8176ff8 to
03bc9a7
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
2 times, most recently
from
December 4, 2025 18:26
0100e8f to
55ce59c
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
December 9, 2025 20:27
55ce59c to
14c4bd6
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
December 30, 2025 14:57
14c4bd6 to
f87c1fd
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
January 11, 2026 14:47
f87c1fd to
85e0487
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
January 19, 2026 19:51
85e0487 to
1129151
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
February 2, 2026 21:01
1129151 to
45cacff
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
February 12, 2026 17:09
45cacff to
fe9894d
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
2 times, most recently
from
March 13, 2026 19:06
1f175dd to
a4dedce
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
April 1, 2026 18:57
a4dedce to
a58201a
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
April 21, 2026 19:50
a58201a to
5b4efa8
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
May 8, 2026 13:35
5b4efa8 to
e5d3d13
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
2 times, most recently
from
May 23, 2026 19:19
25a2e92 to
96a6ee9
Compare
Foso
approved these changes
May 24, 2026
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
2 times, most recently
from
June 3, 2026 16:14
8587f31 to
bbaa526
Compare
renovate
Bot
force-pushed
the
renovate/kotlinx-coroutines-monorepo
branch
from
July 16, 2026 20:11
bbaa526 to
7d74b2d
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.10.2→1.11.01.10.2→1.11.01.8.1→1.11.0Release Notes
Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-core)
v1.11.0Compare Source
Various
Breaking changes and deprecations
Promise-related functions from JS and Wasm/JS to the newwebtarget. On Wasm/JS, this is a breaking change. Before the change,Promiseon Wasm/JS could work with arbitrary Kotlin types, but now, onlyJsAnysubtypes are accepted (#4563).efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
CoroutineDispatcheras the coroutine context key; now,ContinuationInterceptorhas to be used instead (#4333).kotlinx-coroutines-testAPIs (#4604).Jobto coroutine builders as deprecated (#4435).Bug fixes and improvements
callsInPlace(EXACTLY_ONCE)contract torunBlockingin code shared between JVM and Native (#4368).callsInPlace(EXACTLY_ONCE)contract tosuspendCancellableCoroutine(#4574).flowOnincorrectly handlingThreadContextElementupdates (#4403).Thread.UncaughtExceptionHandlerinstances causing the internal coroutines machinery to fail (#4516).CoroutineDispatcher.asSchedulerin the RxJava integration not cancelling outstanding work when aWorkergets cancelled, which led to memory leaks in some scenarios (#4615).SharedFlowentering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).shareIn/stateIncoroutines getting garbage-collected (#4646). Thanks, @solevic!Small additions
CompletableDeferred.asDeferredfor obtaining a read-onlyDeferredview (#4408).SharedFlow.asFlowfor obtaining aFlowview with hidden hot flow semantics (#4530). Thanks, @g000sha256!StateFlow.collectLatestoverload returningNothingto assist with finding unreachable code (#4454).ReceiveChannel.consumeTofor consuming aReceiveChannelinto aMutableCollection(#4520).StateFlow<T>.onSubscriptionoverload returning aStateFlow<T>, similar toSharedFlow<T>.onSubscriptionreturningSharedFlow<T>(#4275). Thanks, @xit0c!Flowoperators for collecting aFlowto aMap(#1541).Changelog relative to version 1.11.0
No changes, only the version is increased.
Configuration
📅 Schedule: (UTC)
🚦 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.