Skip to content

Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.10.2 #34

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Mar 17, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 -> 1.10.2 age adoption passing confidence

Release Notes

Kotlin/kotlinx.coroutines (org.jetbrains.kotlinx:kotlinx-coroutines-play-services)

v1.10.2

Compare Source

  • Fixed the kotlinx-coroutines-debug JAR file including the module-info.class file twice, resulting in failures in various tooling (#​4314). Thanks, @​RyuNen344!
  • Fixed Flow.stateIn hanging when the scope is cancelled in advance or the flow is empty (#​4322). Thanks, @​francescotescari!
  • Improved handling of dispatcher failures in .limitedParallelism (#​4330) and during flow collection (#​4272).
  • Fixed runBlocking failing to run its coroutine to completion in some cases if its JVM thread got interrupted (#​4399).
  • Small tweaks, fixes, and documentation improvements.

v1.10.1

Compare Source

  • Fixed binary incompatibility introduced for non-JVM targets in #​4261 (#​4309).

v1.10.0

Compare Source

  • Kotlin was updated to 2.1.0 (#​4284).
  • Introduced Flow.any, Flow.all, and Flow.none (#​4212). Thanks, @​CLOVIS-AI!
  • Reorganized kotlinx-coroutines-debug and kotlinx-coroutines-core code to avoid a split package between the two artifacts (#​4247). Note that directly referencing kotlinx.coroutines.debug.AgentPremain must now be replaced with kotlinx.coroutines.debug.internal.AgentPremain. Thanks, @​sellmair!
  • No longer shade byte-buddy in kotlinx-coroutines-debug, reducing the artifact size and simplifying the build configuration of client code. Thanks, @​sellmair!
  • Fixed NullPointerException when using Java-deserialized kotlinx-coroutines-core exceptions (#​4291). Thanks, @​AlexRiedler!
  • Properly report exceptions thrown by CoroutineDispatcher.dispatch instead of raising internal errors (#​4091). Thanks, @​zuevmaxim!
  • Fixed a bug that delayed scheduling of a Dispatchers.Default or Dispatchers.IO task after a yield() in rare scenarios (#​4248).
  • Fixed a bug that prevented the main() coroutine on Wasm/WASI from executing after a delay() call in some scenarios (#​4239).
  • Fixed scheduling of runBlocking tasks on Kotlin/Native that arrive after the runBlocking block was exited (#​4245).
  • Fixed some terminal Flow operators sometimes resuming without taking cancellation into account (#​4254). Thanks, @​jxdabc!
  • Fixed a bug on the JVM that caused coroutine-bound ThreadLocal values not to get cleaned when using non-CoroutineDispatcher continuation interceptors (#​4296).
  • Small tweaks, fixes, and documentation improvements.

v1.9.0

Compare Source

Features
  • Wasm/WASI target support (#​4064). Thanks, @​igoriakovlev!
  • limitedParallelism now optionally accepts the name of the dispatcher view for easier debugging (#​4023).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#​4166). Thanks, @​metalhead8816!
  • Introduced the Flow<T>.chunked(size: Int): Flow<List<T>> operator that groups emitted values into groups of the given size (#​1290).
  • Closeable dispatchers are instances of AutoCloseable now (#​4123).
Fixes
  • Calling hasNext on a Channel's iterator is idempotent (#​4065). Thanks, @​gitpaxultek!
  • CoroutineScope() created without an explicit dispatcher uses Dispatchers.Default on Native (#​4074). Thanks, @​whyoleg!
  • Fixed a bug that prevented non-Android Dispatchers.Main from initializing when the Firebase dependency is used (#​3914).
  • Ensured a more intuitive ordering of tasks in runBlocking (#​4134).
  • Forbid casting a Mutex to Semaphore (#​4176).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#​4156).
Deprecations and promotions
  • Advanced the deprecation levels for BroadcastChannel-based API (#​4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#​4198).
  • Deprecated Job.cancelFutureOnCompletion (#​4173).
  • Promoted CoroutineDispatcher.limitedParallelism to stable (#​3864).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#​4169).
  • Promoted CancellableContinuation.resume with an onCancellation lambda to stable, providing extra arguments to the lambda (#​4088).
  • Marked the classes and interfaces that are not supposed to be inherited from with the new InternalForInheritanceCoroutinesApi opt-in (#​3770).
  • Marked the classes and interfaces inheriting from which is not stable with the new ExperimentalForInheritanceCoroutinesApi opt-in (#​3770).
Other
  • Kotlin was updated to 2.0 (#​4137).
  • Reworked the documentation for CoroutineStart and Channel-based API (#​4147, #​4148, #​4167). Thanks, @​globsterg!
  • Simplified the internal implementation of Job (#​4053).
  • Small tweaks, fixes, and documentation improvements.

v1.8.1

Compare Source

  • Remove the @ExperimentalTime annotation from usages of TimeSource (#​4046). Thanks, @​hfhbd!
  • Introduce a workaround for an Android bug that caused an occasional NullPointerException when setting the StateFlow value on old Android devices (#​3820).
  • No longer use kotlin.random.Random as part of Dispatchers.Default and Dispatchers.IO initialization (#​4051).
  • Flow.timeout throws the exception with which the channel was closed (#​4071).
  • Small tweaks and documentation fixes.
Changelog relative to version 1.8.1-Beta
  • Flow.timeout throws the exception with which the channel was closed (#​4071).
  • Small documentation fixes.

v1.8.0

Compare Source

  • Implement the library for the Web Assembly (Wasm) for JavaScript (#​3713). Thanks @​igoriakovlev!
  • Major Kotlin version update: was 1.8.20, became 1.9.21.
  • On Android, ensure that Dispatchers.Main != Dispatchers.Main.immediate (#​3545, #​3963).
  • Fixed a bug that caused Flow operators that limit cancel the upstream flow to forget that they were already finished if there is another such operator upstream (#​4035, #​4038)
  • kotlinx-coroutines-debug is published with the correct Java 9 module info (#​3944).
  • kotlinx-coroutines-debug no longer requires manually setting DebugProbes.enableCoroutineCreationStackTraces to false, it's the default (#​3783).
  • kotlinx-coroutines-test: set the default timeout of runTest to 60 seconds, added the ability to configure it on the JVM with the kotlinx.coroutines.test.default_timeout=10s (#​3800).
  • kotlinx-coroutines-test: fixed a bug that could lead to not all uncaught exceptions being reported after some tests failed (#​3800).
  • delay(Duration) rounds nanoseconds up to whole milliseconds and not down (#​3920). Thanks @​kevincianfarini!
  • Dispatchers.Default and the default thread for background work are guaranteed to use the same context classloader as the object containing it them (#​3832).
  • It is guaranteed that by the time SharedFlow.collect suspends for the first time, it's registered as a subscriber for that SharedFlow (#​3885). Before, it was also true, but not documented.
  • Atomicfu version is updated to 0.23.1, and Kotlin/Native atomic transformations are enabled, reducing the footprint of coroutine-heavy code (#​3954).
  • Added a workaround for miscompilation of withLock on JS (#​3881). Thanks @​CLOVIS-AI!
  • Small tweaks and documentation fixes.
Changelog relative to version 1.8.0-RC2
  • kotlinx-coroutines-debug no longer requires manually setting DebugProbes.enableCoroutineCreationStackTraces to false, it's the default (#​3783).
  • Fixed a bug that caused Flow operators that limit cancel the upstream flow to forget that they were already finished if there is another such operator upstream (#​4035, #​4038)
  • Small documentation fixes.

v1.7.3

Compare Source

  • Disabled the publication of the multiplatform library metadata for the old (1.6 and earlier) KMP Gradle plugin (#​3809).
  • Fixed a bug introduced in 1.7.2 that disabled the coroutine debugger in IDEA (#​3822).

v1.7.2

Compare Source

Bug fixes and improvements
  • Coroutines debugger no longer keeps track of coroutines with empty coroutine context (#​3782).
  • CopyableThreadContextElement now properly copies an element when crossing the coroutine boundary in flowOn (#​3787). Thanks @​wanyingd1996!
  • Coroutine timeouts no longer prevent K/N newSingleThreadContext from closing (#​3768).
  • A non-linearizability in Mutex during tryLock/unlock sequence with owners is fixed (#​3745).
  • Atomicfu version is updated to 0.21.0.

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) (UTC), 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 changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.20-1.0.10 Apr 3, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from 6268fe7 to 6dfb7ca Compare April 4, 2023 11:31
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.20-1.0.10 Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 Apr 4, 2023
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 - autoclosed Apr 15, 2023
@renovate renovate bot closed this Apr 15, 2023
@renovate renovate bot deleted the renovate/kotlin branch April 15, 2023 20:42
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 - autoclosed Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 Apr 18, 2023
@renovate renovate bot reopened this Apr 18, 2023
@renovate renovate bot restored the renovate/kotlin branch April 18, 2023 06:29
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.0-1.0.8 to v1.8.10-1.0.9 Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.20-1.0.10 to v1.8.20-1.0.11 Apr 18, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch from 6dfb7ca to e077f89 Compare April 18, 2023 11:44
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.20-1.0.10 to v1.8.20-1.0.11 Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.20-1.0.10 to v1.8.21-1.0.11 Apr 27, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch from e077f89 to bc3982a Compare April 27, 2023 20:44
@renovate renovate bot changed the title Update dependency com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin 1.8.20-1.0.10 to v1.8.21-1.0.11 Update kotlin May 5, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch 4 times, most recently from f7d3ecc to d9e42bf Compare May 12, 2023 16:44
@renovate renovate bot force-pushed the renovate/kotlin branch from d9e42bf to 5e46654 Compare May 13, 2023 16:39
@renovate renovate bot force-pushed the renovate/kotlin branch from 5e46654 to dc23d0d Compare May 29, 2023 18:37
@renovate renovate bot changed the title Update kotlin Update dependency androidx.compose.compiler:compiler 1.4.7-dev-k1.9.0-Beta-bb7dc8b44eb to v1.4.7 May 29, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch from dc23d0d to 8aea248 Compare June 19, 2023 18:02
@renovate renovate bot changed the title Update dependency androidx.compose.compiler:compiler 1.4.7-dev-k1.9.0-Beta-bb7dc8b44eb to v1.4.7 Update kotlin Jun 19, 2023
@renovate renovate bot force-pushed the renovate/kotlin branch from 8aea248 to 6dfe687 Compare June 21, 2023 18:51
@renovate renovate bot force-pushed the renovate/kotlin branch 3 times, most recently from b74f722 to c736cf6 Compare July 6, 2023 22:30
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from 74da819 to 781e588 Compare July 20, 2023 21:51
@renovate renovate bot force-pushed the renovate/kotlin branch from 2efc915 to 60228c0 Compare August 29, 2024 23:40
@renovate renovate bot force-pushed the renovate/kotlin branch from 60228c0 to 02dba19 Compare September 6, 2024 08:43
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from 917e810 to fd6f1d2 Compare September 20, 2024 02:48
@renovate renovate bot changed the title Update kotlin Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.9.0 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/kotlin branch from 26de9af to 66e8373 Compare October 11, 2024 02:30
@renovate renovate bot changed the title Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.9.0 Update kotlin Oct 11, 2024
@renovate renovate bot force-pushed the renovate/kotlin branch from 66e8373 to 4a88969 Compare October 12, 2024 05:45
@renovate renovate bot changed the title Update kotlin Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.9.0 Oct 16, 2024
@renovate renovate bot force-pushed the renovate/kotlin branch from 4a88969 to 76e7fc6 Compare October 24, 2024 05:48
@renovate renovate bot changed the title Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.9.0 Update kotlin Oct 24, 2024
@renovate renovate bot force-pushed the renovate/kotlin branch from 76e7fc6 to e0ec42b Compare November 8, 2024 05:21
@renovate renovate bot force-pushed the renovate/kotlin branch from e0ec42b to 65ae81a Compare November 16, 2024 05:12
@renovate renovate bot force-pushed the renovate/kotlin branch from 65ae81a to cf64a6e Compare November 28, 2024 05:15
@renovate renovate bot force-pushed the renovate/kotlin branch from cf64a6e to 69f38ae Compare December 21, 2024 17:23
@renovate renovate bot force-pushed the renovate/kotlin branch from 69f38ae to 342a4f3 Compare January 7, 2025 06:34
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from 3473384 to 5bb9008 Compare January 29, 2025 07:12
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from ccaf27d to 940665c Compare February 14, 2025 21:02
@renovate renovate bot force-pushed the renovate/kotlin branch from 940665c to 12384ac Compare February 27, 2025 20:10
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from a420044 to 2b51477 Compare March 27, 2025 03:59
@renovate renovate bot force-pushed the renovate/kotlin branch from 2b51477 to 5952f1d Compare April 2, 2025 00:07
@renovate renovate bot force-pushed the renovate/kotlin branch from 5952f1d to a2ad4c4 Compare April 10, 2025 04:00
@renovate renovate bot force-pushed the renovate/kotlin branch from a2ad4c4 to a9dac99 Compare May 3, 2025 04:00
@renovate renovate bot force-pushed the renovate/kotlin branch from a9dac99 to 5bb6896 Compare May 17, 2025 08:06
@renovate renovate bot changed the title Update kotlin Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.10.2 Jun 8, 2025
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