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

build(deps): bump the versions group with 19 updates #19

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 19 updates:

Package From To
org.jetbrains.kotlinx:kotlinx-coroutines-core 1.8.1 1.9.0
ru.astrainteractive.gradleplugin:convention 1.3.4 1.4.0
ru.astrainteractive.gradleplugin:android 1.3.4 1.4.0
dev.icerock.moko:resources 0.24.2 0.24.3
com.android.library 8.6.0 8.6.1
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.publication.kmp-signing 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

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.8.1 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.

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

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 ru.astrainteractive.gradleplugin:convention from 1.3.4 to 1.4.0

Commits

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

Commits

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

Commits

Updates dev.icerock.moko:resources from 0.24.2 to 0.24.3

Release notes

Sourced from dev.icerock.moko:resources's releases.

0.24.3

Changes

  • #762 #769 ios static framework custom configurations support fix
  • #768 fix escaped @ char

Thanks

@​ExNDY @​Syer10

Commits
  • 2c48480 Merge pull request #777 from icerockdev/develop
  • cec8905 Merge pull request #765 from icerockdev/#762-ios-configuration-of-copy-task
  • b44d9ce fix matrix usage
  • 8bd2734 fix ci actions versions
  • 8ee8158 fix setup-java
  • d507995 Merge branch 'develop' into #762-ios-configuration-of-copy-task
  • 14df36b fix github actions
  • 7630e49 Merge pull request #768 from Syer10/patch-4
  • d6d200e fix upload-artifact version
  • c6a069e #762 fix support of custom build configurations
  • Additional commits viewable in compare view

Updates com.android.library from 8.6.0 to 8.6.1

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.publication.kmp-signing 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.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.publication.kmp-signing 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

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the versions group with 19 updates:

| Package | From | To |
| --- | --- | --- |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.8.1` | `1.9.0` |
| [ru.astrainteractive.gradleplugin:convention](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [ru.astrainteractive.gradleplugin:android](https://github.com/makeevrserg/gradle-plugin) | `1.3.4` | `1.4.0` |
| [dev.icerock.moko:resources](https://github.com/icerockdev/moko-resources) | `0.24.2` | `0.24.3` |
| com.android.library | `8.6.0` | `8.6.1` |
| [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.publication.kmp-signing](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` |


Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` 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 `ru.astrainteractive.gradleplugin:convention` 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` 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` 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 `dev.icerock.moko:resources` from 0.24.2 to 0.24.3
- [Release notes](https://github.com/icerockdev/moko-resources/releases)
- [Commits](icerockdev/moko-resources@release/0.24.2...release/0.24.3)

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

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.publication.kmp-signing` 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.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.publication.kmp-signing` 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)

---
updated-dependencies:
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin:convention
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin:android
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: ru.astrainteractive.gradleplugin:android
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: versions
- dependency-name: dev.icerock.moko:resources
  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: 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.publication.kmp-signing
  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.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.publication.kmp-signing
  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
...

Signed-off-by: dependabot[bot] <[email protected]>
@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 5d2ab5f into master Sep 23, 2024
4 checks passed
@dependabot dependabot bot deleted the dependabot/gradle/versions-7050ea3e5c branch September 23, 2024 10:34
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