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

Bump the versions group with 23 updates #22

Merged
merged 2 commits into from
Sep 23, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the versions group with 23 updates:

Package From To
org.jetbrains.kotlinx:kotlinx-coroutines-core 1.9.0-RC.2 1.9.0
org.jetbrains.kotlinx:kotlinx-coroutines-android 1.9.0-RC.2 1.9.0
org.jetbrains.kotlinx:kotlinx-serialization-json 1.7.2 1.7.3
org.jetbrains.kotlinx:kotlinx-coroutines-play-services 1.8.1 1.9.0
androidx.compose:compose-bom 2024.09.00 2024.09.02
com.google.firebase:firebase-bom 33.2.0 33.3.0
com.android.application 8.6.0 8.6.1
com.android.library 8.6.0 8.6.1
com.github.gmazzo.buildconfig 5.4.0 5.5.0
ru.astrainteractive.gradleplugin.detekt 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.detekt.compose 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.dokka.root 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.dokka.module 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.java.core 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.stub.javadoc 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.publication 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.root.info 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.core 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.compose 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.apk.sign 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.apk.name 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.publication 1.3.4 1.4.0
ru.astrainteractive.gradleplugin.android.namespace 1.3.4 1.4.0

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.9.0-RC.2 to 1.9.0

Release notes

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

1.9.0

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.
Changelog

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

Version 1.9.0

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.
Commits

Updates org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.9.0-RC.2 to 1.9.0

Release notes

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

1.9.0

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.
Changelog

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

Version 1.9.0

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.
Commits

Updates org.jetbrains.kotlinx:kotlinx-coroutines-android from 1.9.0-RC.2 to 1.9.0

Release notes

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

1.9.0

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.
Changelog

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

Version 1.9.0

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.
Commits

Updates org.jetbrains.kotlinx:kotlinx-serialization-json from 1.7.2 to 1.7.3

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's releases.

1.7.3

This release aims to fix important issues that were discovered in the 1.7.2 release, including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.

It uses Kotlin 2.0.20 by default.

  • Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • Check against serialName instead of simpleClassName (#2802)
  • Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
  • Clarify example for SerializationException (#2806)
Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-serialization-json's changelog.

1.7.3 / 2024-09-19

This release aims to fix important issues that were discovered in the 1.7.2 release, including the inability to sync certain projects into Android Studio/IntelliJ IDEA and exceptions from custom Uuid serializers.

It uses Kotlin 2.0.20 by default.

  • Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • Check against serialName instead of simpleClassName (#2802)
  • Ignore NoClassDefFoundError when initializing builtins map for serializer() function (#2803)
  • Clarify example for SerializationException (#2806)
Commits
  • d4d066d Prepare 1.7.3 release (#2821)
  • 21311a6 Clarify example for SerializationException (#2806)
  • 2f1dbdb Use explicit kotlin-stdlib and kotlin-test versions from version catalog (#2818)
  • 595bcbd Drop usage of deprecated Any?.freeze() in K/N target (#2819)
  • d9753af Check against serialName instead of simpleClassName (#2802)
  • 0b015e1 Ignore NoClassDefFoundError when initializing builtins map for serializer() f...
  • See full diff in compare view

Updates org.jetbrains.kotlinx:kotlinx-coroutines-play-services from 1.8.1 to 1.9.0

Release notes

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

1.9.0

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.

1.9.0-RC.2

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Forbid casting a Mutex to Semaphore (#4176).
  • Deprecated Job.cancelFutureOnCompletion (#4156).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).
  • Fixed a bug that disallowed setting a custom probeCoroutineResumed when starting coroutines with UNDISPATCHED (#4162).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Small tweaks, fixes, and documentation improvements.

1.9.0-RC

  • Kotlin was updated to 2.0 (#4137).

... (truncated)

Changelog

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

Version 1.9.0

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.

Version 1.9.0-RC.2

  • Advanced the deprecation levels for BroadcastChannel-based API (#4197).
  • Advanced the deprecation levels for the old kotlinx-coroutines-test API (#4198).
  • Promoted CoroutineStart.ATOMIC from ExperimentalCoroutinesApi to DelicateCoroutinesApi (#4169).
  • Reworked the documentation for CoroutineStart and Channel-based API (#4147, #4148, #4167). Thanks, @​globsterg!
  • Forbid casting a Mutex to Semaphore (#4176).
  • Deprecated Job.cancelFutureOnCompletion (#4173).
  • Worked around a stack overflow that may occur when calling asDeferred on a Future many times (#4156).
  • Fixed a bug that disallowed setting a custom probeCoroutineResumed when starting coroutines with UNDISPATCHED (#4162).
  • No longer initialize Dispatchers.IO on the JVM when other standard dispatchers are accessed (#4166). Thanks, @​metalhead8816!
  • Small tweaks, fixes, and documentation improvements.

... (truncated)

Commits

Updates androidx.compose:compose-bom from 2024.09.00 to 2024.09.02

Updates com.google.firebase:firebase-bom from 33.2.0 to 33.3.0

Updates com.android.application from 8.6.0 to 8.6.1

Updates com.android.library from 8.6.0 to 8.6.1

Updates com.android.library from 8.6.0 to 8.6.1

Updates com.github.gmazzo.buildconfig from 5.4.0 to 5.5.0

Updates ru.astrainteractive.gradleplugin.detekt from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.detekt.compose from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.dokka.root from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.dokka.module from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.java.core from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.stub.javadoc from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.publication from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.root.info from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.core from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.compose from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.apk.sign from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.apk.name from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.publication from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.namespace from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.detekt.compose from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.dokka.root from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.dokka.module from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.java.core from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.stub.javadoc from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.publication from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.root.info from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.core from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.compose from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.apk.sign from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.apk.name from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.publication from 1.3.4 to 1.4.0

Commits

Updates ru.astrainteractive.gradleplugin.android.namespace from 1.3.4 to 1.4.0

Commits Description has been truncated

Bumps the versions group with 23 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0-RC.2` | `1.9.0` |
| [org.jetbrains.kotlinx:kotlinx-coroutines-android](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0-RC.2` | `1.9.0` |
| [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.2` | `1.7.3` |
| [org.jetbrains.kotlinx:kotlinx-coroutines-play-services](https://github.com/Kotlin/kotlinx.coroutines) | `1.8.1` | `1.9.0` |
| androidx.compose:compose-bom | `2024.09.00` | `2024.09.02` |
| com.google.firebase:firebase-bom | `33.2.0` | `33.3.0` |
| com.android.application | `8.6.0` | `8.6.1` |
| com.android.library | `8.6.0` | `8.6.1` |
| com.github.gmazzo.buildconfig | `5.4.0` | `5.5.0` |
| [ru.astrainteractive.gradleplugin.detekt](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.detekt.compose](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.dokka.root](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.dokka.module](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.java.core](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.stub.javadoc](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.publication](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.root.info](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.core](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.compose](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.apk.sign](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.apk.name](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.publication](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin.android.namespace](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |


Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0-RC.2 to 1.9.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.9.0-RC.2...1.9.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.9.0-RC.2 to 1.9.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.9.0-RC.2...1.9.0)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-android` from 1.9.0-RC.2 to 1.9.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.9.0-RC.2...1.9.0)

Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md)
- [Commits](Kotlin/kotlinx.serialization@v1.7.2...v1.7.3)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-play-services` from 1.8.1 to 1.9.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.8.1...1.9.0)

Updates `androidx.compose:compose-bom` from 2024.09.00 to 2024.09.02

Updates `com.google.firebase:firebase-bom` from 33.2.0 to 33.3.0

Updates `com.android.application` from 8.6.0 to 8.6.1

Updates `com.android.library` from 8.6.0 to 8.6.1

Updates `com.android.library` from 8.6.0 to 8.6.1

Updates `com.github.gmazzo.buildconfig` from 5.4.0 to 5.5.0

Updates `ru.astrainteractive.gradleplugin.detekt` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.detekt.compose` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.dokka.root` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.dokka.module` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.java.core` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.stub.javadoc` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.publication` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.root.info` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.core` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.compose` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.apk.sign` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.apk.name` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.publication` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.namespace` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.detekt.compose` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.dokka.root` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.dokka.module` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.java.core` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.stub.javadoc` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.publication` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.root.info` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.core` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.compose` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.apk.sign` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.apk.name` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.publication` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

Updates `ru.astrainteractive.gradleplugin.android.namespace` from 1.3.4 to 1.4.0
- [Release notes](https://github.com/makeevrserg/gradle-plugin/releases)
- [Commits](https://github.com/makeevrserg/gradle-plugin/commits)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-android
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-play-services
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: androidx.compose:compose-bom
  dependency-type: direct:production
  dependency-group: versions
- dependency-name: com.google.firebase:firebase-bom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: com.android.application
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: com.android.library
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: com.android.library
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: versions
- dependency-name: com.github.gmazzo.buildconfig
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.detekt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.detekt.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.root
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.module
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.java.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.stub.javadoc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.root.info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.apk.sign
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.apk.name
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.namespace
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.detekt.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.root
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.dokka.module
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.java.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.stub.javadoc
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.root.info
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.compose
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.apk.sign
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.apk.name
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.publication
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin.android.namespace
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Sep 23, 2024
@makeevrserg makeevrserg merged commit 303f153 into master Sep 23, 2024
3 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/versions-3de9fa38cd branch September 23, 2024 10:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file java Pull requests that update Java code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant