Skip to content
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

Update kotlin #34

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

Update kotlin #34

wants to merge 1 commit into 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.9.0 age adoption passing confidence
com.google.devtools.ksp (source) 2.0.21-1.0.25 -> 2.0.21-1.0.28 age adoption passing confidence

Release Notes

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

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.
google/ksp (com.google.devtools.ksp)

v2.0.21-1.0.28

Compare Source

Updates

  • [KSP2] Running from command line never finishes #​2176
  • Introduce KspAATask.commandLineArgumentProviders #​2201

Contributors

Thanks to @​GeorgCantor and everyone who reported bugs and participated in discussions!

v2.0.21-1.0.27

Compare Source

Bugs Fixed

  • KSP2: KtInvalidLifetimeOwnerAccessException: Access to invalid KtAlwaysAccessibleLifetimeToken: PSI has changed since creation #​1854
  • [KSP2] getSymbolsWithAnnotation() doesn't work if the annotation is an alias in KOTLIN_LIB #​2024
  • KotlinSymbolProcessingExtension leaks files due to URLClassLoader not being closed #​2159
  • Unresolvable iOS reference on Linux host #​2173
  • Fail to apply ksp before android #​2174
  • [KSP2] Mangled names for internal functions are incorrect for Android modules #​2180
  • [KSP2] JVM names for property getters/setters are incorrect if they start with "is" #​2181

Contributors

Thanks to @​jonamireh, @​kuanyingchou, @​martinbonnin, @​pablobaxter, @​scott-pollom, and everyone who reported bugs and participated in discussions!

v2.0.21-1.0.26

Compare Source

Bugs Fixed

  • A failure occurred while executing com.google.devtools.ksp.gradle.KspAAWorkerAction #​1968
  • [KSP2] default value is null for nested annotation #​2077
  • [KSP2] "internal" members are out of order in Resolver.getDeclarationsInSourceOrder() #​1827
  • [KSP2] Resolver.getDeclarationsFromPackage() couldn't find Java declarations #​1952
  • [KSP2] Property setter parameter name becomes value #​1865
  • [KSP2] A failure occurred while executing com.google.devtools.ksp.gradle.KspAAWorkerAction #​1941
  • [KSP2] NullPointerException when calling hasBackingField on properties of Enum declarations #​1753
  • JVM Module name is changed for libraries #​2105
  • [KSP2] asMemberOf() is not working with Java sources #​2051
  • KSP2: implement KSPropertyDeclaration.findOverridee and Resolver.asMemberOf for java fields #​1642
  • [KSP2] command line doesn't support absolute Windows paths #​2046
  • [KSP2] NPE when getting annotation arguments on non-Jvm targets #​1823
  • [KSP2] Resolver.mapToJvmSignature() is not consistent #​2109
  • [KSP2] Default annotation argument values are sometimes missing #​2107
  • [KSP2] KSFunctionDeclaration.asMemberOf doesn't work sometimes #​2116
  • [KSP2] Qualified names of nested annotations from JAVA_LIB is null #​2033
  • [KSP2] Class literal annotation default values resolve to error types #​1910
  • KaFirPsiJavaTypeParameterSymbol cannot be cast to KaFirTypeParameterSymbol #​2119
  • KSP memory leak in Android build #​2073
  • [KSP2] KSClassDeclaration.asType(emptyList()) fails after Resolver.getSymbolsWithAnnotation() call #​2094
  • KSValueArgumentImpl doesn't implement .equals() in KSP2 #​2091
  • [KSP2] JvmName is ignored in annotation property getters #​2148
  • [KSP2] Unable to get visibility of KSTypeAlias #​2140
  • Gradle kspKotlin task failed when upgrading to 2.0.20-1.0.25 #​2123
  • [KSP2] Generic type arguments on typealiases are improperly forwarded to the KSType #​2088
  • java.lang.IllegalStateException: Storage for [...] is already registered with 2.0.20-1.0.24 #​2072

Full Changelog: google/ksp@911690b...2.0.21-1.0.26

Contributors

Thanks to @​ansman, @​asapha, @​kaeawc, @​kuanyingchou, @​scott-pollom, and everyone who reported bugs and participated in discussions!


Configuration

📅 Schedule: Branch creation - "before 4am" (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 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 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 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 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 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 2 times, most recently from 1933d2f to 2a0eb5a Compare May 14, 2024 21:08
@renovate renovate bot force-pushed the renovate/kotlin branch 3 times, most recently from 91039b8 to 949d734 Compare May 21, 2024 21:52
@renovate renovate bot changed the title Update kotlin Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.8.1 May 22, 2024
@renovate renovate bot changed the title Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.8.1 Update kotlin Jun 7, 2024
@renovate renovate bot force-pushed the renovate/kotlin branch 2 times, most recently from de68442 to 2efc915 Compare August 23, 2024 21:01
@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 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 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 changed the title Update dependency org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.7.1 to v1.9.0 Update kotlin Oct 24, 2024
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