Skip to content

Bump kotlin-coroutines from 1.10.2 to 1.11.0#5291

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/kotlin-coroutines-1.11.0
Open

Bump kotlin-coroutines from 1.10.2 to 1.11.0#5291
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/kotlin-coroutines-1.11.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps kotlin-coroutines from 1.10.2 to 1.11.0.
Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-android's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-android's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-play-services from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-play-services's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-play-services's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-reactive from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-reactive's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-reactive's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-rx2 from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-rx2's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (

Bumps `kotlin-coroutines` from 1.10.2 to 1.11.0.

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-play-services` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-reactive` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-rx2` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-test` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-play-services
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-reactive
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-rx2
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-test
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added [Area] Dependencies Pull requests that update a dependency file [Type] Tech Debt Involving upgrades or refactoring to maintain or enhance the codebase. labels May 11, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 11, 2026 06:56
@dependabot dependabot Bot requested review from sztomek and removed request for a team May 11, 2026 06:56
@dependabot dependabot Bot added [Type] Tech Debt Involving upgrades or refactoring to maintain or enhance the codebase. [Area] Dependencies Pull requests that update a dependency file labels May 11, 2026
@dangermattic
Copy link
Copy Markdown
Collaborator

1 Warning
⚠️ PR is not assigned to a milestone.

Generated by 🚫 Danger

@wpmobilebot
Copy link
Copy Markdown
Collaborator

Project dependencies changes

list
! Upgraded Dependencies
org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0, (changed from 1.10.2)
org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0, (changed from 1.10.2)
tree
 +--- androidx.appcompat:appcompat:1.7.1
 |    \--- androidx.activity:activity:1.8.0 -> 1.13.0
 |         +--- androidx.core:core-ktx:1.18.0
 |         |    \--- androidx.core:core:1.18.0
 |         |         +--- androidx.lifecycle:lifecycle-common:2.6.2 -> 2.10.0
 |         |         |    \--- androidx.lifecycle:lifecycle-common-jvm:2.10.0
-|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2
-|         |         |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2
-|         |         |                   +--- org.jetbrains:annotations:23.0.0
-|         |         |                   +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2
-|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 (c)
-|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.10.2 (c)
-|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (c)
-|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 (c)
-|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2 (c)
-|         |         |                   |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (c)
-|         |         |                   \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.3.20 (*)
+|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0
+|         |         |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.11.0
+|         |         |                   +--- org.jetbrains:annotations:23.0.0
+|         |         |                   +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0
+|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0 (c)
+|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.11.0 (c)
+|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (c)
+|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.11.0 (c)
+|         |         |                   |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0 (c)
+|         |         |                   |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (c)
+|         |         |                   \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.20 (*)
 |         |         +--- androidx.lifecycle:lifecycle-runtime:2.6.2 -> 2.10.0
 |         |         |    \--- androidx.lifecycle:lifecycle-runtime-android:2.10.0
-|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2
-|         |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|         |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|         |         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.3.20 (*)
+|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0
+|         |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
+|         |         |              +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0 (*)
+|         |         |              \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.20 (*)
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |         +--- androidx.lifecycle:lifecycle-viewmodel:2.6.1 -> 2.10.0
 |         |    \--- androidx.lifecycle:lifecycle-viewmodel-android:2.10.0
-|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |         +--- androidx.lifecycle:lifecycle-viewmodel-savedstate:2.6.1 -> 2.10.0
 |         |    \--- androidx.lifecycle:lifecycle-viewmodel-savedstate-android:2.10.0
 |         |         +--- androidx.savedstate:savedstate:1.4.0
 |         |         |    \--- androidx.savedstate:savedstate-android:1.4.0
-|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |         +--- androidx.navigationevent:navigationevent:1.0.0
 |         |    \--- androidx.navigationevent:navigationevent-android:1.0.0
-|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|         |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 +--- com.automattic.tracks:crashlogging:6.0.8
 |    +--- io.sentry:sentry-compose-android -> 8.18.0
 |    |    \--- androidx.compose.material3:material3:1.2.1 -> 1.4.0
 |    |         \--- androidx.compose.material3:material3-android:1.4.0
 |    |              +--- androidx.activity:activity-compose:1.8.2 -> 1.13.0
 |    |              |    +--- androidx.compose.runtime:runtime:1.7.0 -> 1.10.0
 |    |              |    |    \--- androidx.compose.runtime:runtime-android:1.10.0
-|    |              |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|    |              |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
-|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |              |    +--- androidx.compose.runtime:runtime-saveable:1.7.0 -> 1.10.0
 |    |              |    |    \--- androidx.compose.runtime:runtime-saveable-android:1.10.0
 |    |              |    |         \--- androidx.lifecycle:lifecycle-runtime-compose:2.9.4 -> 2.10.0
 |    |              |    |              \--- androidx.lifecycle:lifecycle-runtime-compose-android:2.10.0
 |    |              |    |                   \--- androidx.lifecycle:lifecycle-runtime-ktx:2.10.0
 |    |              |    |                        \--- androidx.lifecycle:lifecycle-runtime-ktx-android:2.10.0
-|    |              |    |                             \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|    |              |    |                             \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
 |    |              |    +--- androidx.compose.ui:ui:1.0.1 -> 1.10.0
 |    |              |    |    \--- androidx.compose.ui:ui-android:1.10.0
 |    |              |    |         +--- androidx.activity:activity-ktx:1.7.0 -> 1.13.0
 |    |              |    |         |    \--- androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1 -> 2.10.0
-|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
 |    |              |    |         +--- androidx.compose.runtime:runtime-retain:1.10.0
 |    |              |    |         |    \--- androidx.compose.runtime:runtime-retain-android:1.10.0
-|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |              |    |         +--- androidx.compose.ui:ui-text:1.10.0
 |    |              |    |         |    \--- androidx.compose.ui:ui-text-android:1.10.0
-|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    |         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |              |    |         +--- androidx.window:window:1.5.0
-|    |              |    |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
+|    |              |    |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.11.0 (*)
-|    |              |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|    |              |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
-|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |              |    +--- androidx.navigationevent:navigationevent-compose:1.0.0
 |    |              |    |    \--- androidx.navigationevent:navigationevent-compose-android:1.0.0
-|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|    |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |              \--- androidx.compose.animation:animation-core:1.8.1 -> 1.10.0
 |    |                   \--- androidx.compose.animation:animation-core-android:1.10.0
-|    |                        \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |                        \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 -> 1.10.2 (*)
+|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 -> 1.11.0 (*)
 +--- io.coil-kt.coil3:coil:3.4.0
 |    \--- io.coil-kt.coil3:coil-android:3.4.0
 |         \--- io.coil-kt.coil3:coil-core:3.4.0
 |              \--- io.coil-kt.coil3:coil-core-android:3.4.0
-|                   +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|                   +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 -> 1.11.0 (*)
-|                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 (*)
+|                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 -> 1.11.0 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.11.0 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.3.20 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0 (*)
+|    +--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.20 (*)
-+--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2 (*)
-|    +--- io.reactivex.rxjava2:rxjava:2.2.8 -> 2.2.21
-|    |    \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
-|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.3.20 (*)
++--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0 (*)
+|    +--- io.reactivex.rxjava2:rxjava:2.2.8 -> 2.2.21
+|    |    \--- org.reactivestreams:reactive-streams:1.0.3 -> 1.0.4
+|    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.20 (*)
 +--- androidx.datastore:datastore:1.2.1
 |    \--- androidx.datastore:datastore-android:1.2.1
 |         +--- androidx.datastore:datastore-core:1.2.1
 |         |    \--- androidx.datastore:datastore-core-android:1.2.1
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |         +--- androidx.datastore:datastore-core-okio:1.2.1
 |         |    \--- androidx.datastore:datastore-core-okio-jvm:1.2.1
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 +--- com.automattic:encryptedlogging:1.1.1
 |    +--- androidx.room:room-runtime:2.7.2 -> 2.8.4
 |    |    \--- androidx.room:room-runtime-android:2.8.4
-|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
+|    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.11.0 (*)
-|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.10.2 (*)
+|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1 -> 1.11.0 (*)
 |    +--- androidx.room:room-ktx:2.7.2 -> 2.8.4
-|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.10.2 (*)
+|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1 -> 1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2 -> 1.11.0 (*)
-|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 -> 1.11.0 (*)
 +--- com.google.firebase:firebase-config -> 23.0.1
 |    \--- com.google.firebase:firebase-common:22.0.1
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.9.0 -> 1.10.2
-|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
-|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.10.2 (*)
-|         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 18.4.0 (*)
-|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.1.0 -> 2.3.20 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.9.0 -> 1.11.0
+|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
+|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.11.0 (*)
+|         |    +--- com.google.android.gms:play-services-tasks:16.0.1 -> 18.4.0 (*)
+|         |    \--- org.jetbrains.kotlin:kotlin-stdlib:2.2.20 -> 2.3.20 (*)
 |         \--- androidx.datastore:datastore-preferences:1.1.7 -> 1.2.1
 |              \--- androidx.datastore:datastore-preferences-android:1.2.1
-|                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 +--- androidx.hilt:hilt-work:1.3.0
 |    \--- androidx.work:work-runtime:2.3.4 -> 2.11.2
 |         +--- androidx.concurrent:concurrent-futures-ktx:1.1.0 -> 1.2.0
-|         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 |         +--- androidx.lifecycle:lifecycle-livedata:2.6.2 -> 2.10.0
-|         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
 +--- com.google.android.horologist:horologist-auth-data-phone:0.8.3-alpha
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 -> 1.11.0 (*)
 |    \--- com.google.android.horologist:horologist-datalayer:0.8.3-alpha
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 -> 1.11.0 (*)
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 -> 1.11.0 (*)
 |         \--- androidx.wear:wear-remote-interactions:1.1.0
-|              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 +--- project :modules:features:account
 |    +--- androidx.navigation:navigation-runtime:2.9.8
 |    |    \--- androidx.navigation:navigation-runtime-android:2.9.8
-|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 |    +--- project :modules:services:coroutines
-|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    +--- project :modules:features:search
 |    |    +--- project :modules:services:analytics
 |    |    |    +--- project :modules:services:model
 |    |    |    |    +--- com.android.billingclient:billing-ktx:8.3.0
-|    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 -> 1.10.2 (*)
+|    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0 -> 1.11.0 (*)
 |    |    |    |    +--- project :modules:services:utils
 |    |    |    |    |    +--- project :modules:services:payment
-|    |    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    |    |    |    |    +--- com.google.firebase:firebase-analytics -> 23.2.0
 |    |    |    |    |    |    \--- com.google.android.gms:play-services-measurement:23.2.0
 |    |    |    |    |    |         \--- com.google.android.gms:play-services-measurement-impl:23.2.0
 |    |    |    |    |    |              +--- androidx.privacysandbox.ads:ads-adservices:1.1.0-beta11
-|    |    |    |    |    |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |    |    |    |    |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 |    |    |    |    |    |              \--- androidx.privacysandbox.ads:ads-adservices-java:1.1.0-beta11
-|    |    |    |    |    |                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |    |    |    |    |                   \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 |    |    |    |    |    +--- androidx.lifecycle:lifecycle-livedata-ktx:2.10.0
-|    |    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|    |    |    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 |    |    |    |    |    \--- com.google.android.gms:play-services-auth:21.5.1
 |    |    |    |    |         +--- com.google.android.gms:play-services-fido:20.0.1 -> 21.0.0
-|    |    |    |    |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |    |    |    |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
-|    |    |    |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0 -> 1.11.0 (*)
-|    |    |    |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
-|    |    |    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.8.0 -> 1.11.0 (*)
-|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    |    |    |    \--- androidx.room:room-rxjava2:2.8.4
-|    |    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.8.1 -> 1.10.2 (*)
+|    |    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.8.1 -> 1.11.0 (*)
 |    |    |    +--- project :modules:services:preferences
-|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    |    |    +--- project :modules:services:servers
-|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    |    |    \--- com.automattic.tracks:experimentation:6.0.8
-|    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 -> 1.10.2 (*)
+|    |    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.4 -> 1.11.0 (*)
 |    |    +--- project :modules:services:repositories
 |    |    |    +--- com.google.android.play:review-ktx:2.0.2
-|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0 -> 1.10.2 (*)
+|    |    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.0 -> 1.11.0 (*)
-|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.10.2 (*)
+|    |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0 -> 1.11.0 (*)
-|    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    |    +--- project :modules:services:ui
-|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    |    +--- project :modules:services:views
 |    |    |    +--- project :modules:services:compose
 |    |    |    |    +--- io.coil-kt.coil3:coil-compose:3.4.0
 |    |    |    |    |    \--- io.coil-kt.coil3:coil-compose-android:3.4.0
 |    |    |    |    |         \--- io.coil-kt.coil3:coil-compose-core:3.4.0
 |    |    |    |    |              \--- io.coil-kt.coil3:coil-compose-core-android:3.4.0
 |    |    |    |    |                   +--- org.jetbrains.compose.foundation:foundation:1.9.3 -> 1.10.0
 |    |    |    |    |                   |    \--- org.jetbrains.compose.animation:animation:1.10.0
 |    |    |    |    |                   |         \--- org.jetbrains.compose.animation:animation-core:1.10.0
 |    |    |    |    |                   |              +--- org.jetbrains.compose.ui:ui:1.10.0
 |    |    |    |    |                   |              |    +--- org.jetbrains.compose.ui:ui-text:1.10.0
-|    |    |    |    |                   |              |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |                   |              |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
-|    |    |    |    |                   |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |                   |              |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
-|    |    |    |    |                   |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.10.2 (*)
+|    |    |    |    |                   |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0 -> 1.11.0 (*)
 |    |    |    |    |                   \--- com.google.accompanist:accompanist-drawablepainter:0.37.3
-|    |    |    |    |                        \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.10.2 (*)
+|    |    |    |    |                        \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4 -> 1.11.0 (*)
 |    |    |    |    \--- androidx.navigation:navigation-compose:2.9.8
 |    |    |    |         \--- androidx.navigation:navigation-compose-android:2.9.8
-|    |    |    |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |    |    |              \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
-|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2 (*)
+|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0 (*)
-|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    +--- project :modules:features:settings
-|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    +--- androidx.navigation:navigation-fragment-ktx:2.9.8
 |    |    \--- androidx.navigation:navigation-fragment:2.9.8
-|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.10.2 (*)
+|    |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3 -> 1.11.0 (*)
 |    \--- androidx.credentials:credentials:1.6.0
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
 +--- project :modules:features:discover
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    \--- project :modules:features:podcasts
 |         +--- project :modules:features:player
 |         |    +--- project :modules:features:transcripts
 |         |    |    +--- project :modules:services:sharing
-|         |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         |    |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2 (*)
+|         |    |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0 (*)
-|         |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|         |    |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
-|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|         |    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |         |    \--- project :modules:features:reimagine
 |         |         +--- dev.shreyaspatil:capturable:3.0.1
-|         |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|         |         |    \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         |         \--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|         +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 +--- project :modules:features:engage
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.11.0 (*)
-|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 +--- project :modules:features:endofyear
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
 |    \--- androidx.media3:media3-ui-compose:1.10.0
 |         \--- androidx.media3:media3-common-ktx:1.10.0
-|              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.10.2 (*)
+|              +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.9.0 -> 1.11.0 (*)
-|              \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.10.2 (*)
+|              \--- org.jetbrains.kotlinx:kotlinx-coroutines-android:1.9.0 -> 1.11.0 (*)
 +--- project :modules:features:filters
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    \--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 +--- project :modules:features:profile
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-core:1.11.0 (*)
-|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.10.2 (*)
+|    +--- org.jetbrains.kotlinx:kotlinx-coroutines-rx2:1.11.0 (*)
 |    \--- project :modules:features:referrals
-|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.10.2 (*)
+|         \--- org.jetbrains.kotlinx:kotlinx-coroutines-reactive:1.11.0 (*)
 \--- project :modules:features:shared
-     \--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.10.2 (*)
+     \--- org.jetbrains.kotlinx:kotlinx-coroutines-play-services:1.11.0 (*)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

[Area] Dependencies Pull requests that update a dependency file [Type] Tech Debt Involving upgrades or refactoring to maintain or enhance the codebase.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants