Skip to content

Update kotlin - #34

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/kotlin
Closed

Update kotlin#34
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/kotlin

Conversation

@renovate

@renovate renovate Bot commented Mar 17, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 -> 1.10.2 age confidence
org.jetbrains.kotlinx:kotlinx-datetime 0.7.0 -> 0.7.1-0.6.x-compat age 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.
Kotlin/kotlinx-datetime (org.jetbrains.kotlinx:kotlinx-datetime)

v0.7.1

  • Add kotlinx.datetime.Instant and kotlinx.datetime.Clock type aliases to, respectively, kotlin.time.Instant and kotlin.time.Clock to make migration more convenient.
  • Add a fallback timezone database implementation for Darwin that uses the Foundation framework if the timezone database is unavailable on the filesystem (#​485).
  • Restore binary compatibility in string format definitions utilizing dates on the JVM (#​545).

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 3 times, most recently from 34dfce7 to 045d68f Compare August 30, 2023 00:32
@renovate
renovate Bot force-pushed the renovate/kotlin branch from 045d68f to 53b24f3 Compare September 1, 2023 07:01
@renovate
renovate Bot force-pushed the renovate/kotlin branch 2 times, most recently from fa5bc79 to d7e40f6 Compare October 31, 2023 20:49
@renovate
renovate Bot force-pushed the renovate/kotlin branch from d7e40f6 to c00c417 Compare November 7, 2023 19:08
@renovate
renovate Bot force-pushed the renovate/kotlin branch from c00c417 to 5caf025 Compare November 15, 2023 16:52
@renovate
renovate Bot force-pushed the renovate/kotlin branch 2 times, most recently from 5266764 to 0c4522f Compare November 29, 2023 20:21
@renovate
renovate Bot force-pushed the renovate/kotlin branch 4 times, most recently from 6b2e4cc to d9fbf48 Compare December 6, 2023 18:22
@renovate
renovate Bot force-pushed the renovate/kotlin branch 2 times, most recently from a0ee566 to 751c26f Compare December 19, 2023 19:59
@renovate
renovate Bot force-pushed the renovate/kotlin branch 3 times, most recently from 6f8e432 to 025d224 Compare December 25, 2023 09:38
@renovate
renovate Bot force-pushed the renovate/kotlin branch from 025d224 to 30cbecd Compare January 10, 2024 21:15
@renovate
renovate Bot force-pushed the renovate/kotlin branch from 30cbecd to 8a2a4d1 Compare January 19, 2024 01:26
@renovate
renovate Bot force-pushed the renovate/kotlin branch from 8a2a4d1 to d9eb60d Compare January 29, 2024 08:45
@renovate
renovate Bot force-pushed the renovate/kotlin branch from d9eb60d to d3791b4 Compare February 7, 2024 22:45
@renovate
renovate Bot force-pushed the renovate/kotlin branch 3 times, most recently from 3a5785a to c3445dd Compare February 21, 2024 22:39
@renovate
renovate Bot force-pushed the renovate/kotlin branch 2 times, most recently from 779b58e to 698ba4d Compare March 3, 2024 19:27
@renovate
renovate Bot force-pushed the renovate/kotlin branch from 698ba4d to 2636ea2 Compare March 7, 2024 10:33
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.

1 participant