From 6bf27395404e788fcca7edf184156b9de959ce65 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 May 2025 00:51:47 +0800 Subject: [PATCH] build(deps): bump the maven group across 1 directory with 12 updates (#2579) Bumps the maven group with 12 updates in the /manager directory: | Package | From | To | | --- | --- | --- | | androidx.navigation:navigation-compose | `2.8.9` | `2.9.0` | | androidx.compose:compose-bom | `2025.03.01` | `2025.05.00` | | androidx.lifecycle:lifecycle-runtime-ktx | `2.8.7` | `2.9.0` | | androidx.lifecycle:lifecycle-runtime-compose | `2.8.7` | `2.9.0` | | androidx.lifecycle:lifecycle-viewmodel-compose | `2.8.7` | `2.9.0` | | [io.github.raamcosta.compose-destinations:core](https://github.com/raamcosta/compose-destinations) | `2.1.0` | `2.2.0` | | [io.github.raamcosta.compose-destinations:ksp](https://github.com/raamcosta/compose-destinations) | `2.1.0` | `2.2.0` | | com.android.application | `8.9.1` | `8.10.0` | | com.android.library | `8.9.1` | `8.10.0` | | [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) | `2.1.20` | `2.1.21` | | [org.jetbrains.kotlin.plugin.compose](https://github.com/JetBrains/kotlin) | `2.1.20` | `2.1.21` | | [com.google.devtools.ksp](https://github.com/google/ksp) | `2.1.20-2.0.0` | `2.1.20-2.0.1` | Updates `androidx.navigation:navigation-compose` from 2.8.9 to 2.9.0 Updates `androidx.compose:compose-bom` from 2025.03.01 to 2025.05.00 Updates `androidx.lifecycle:lifecycle-runtime-ktx` from 2.8.7 to 2.9.0 Updates `androidx.lifecycle:lifecycle-runtime-compose` from 2.8.7 to 2.9.0 Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.8.7 to 2.9.0 Updates `androidx.lifecycle:lifecycle-runtime-compose` from 2.8.7 to 2.9.0 Updates `androidx.lifecycle:lifecycle-viewmodel-compose` from 2.8.7 to 2.9.0 Updates `io.github.raamcosta.compose-destinations:core` from 2.1.0 to 2.2.0
Release notes

Sourced from io.github.raamcosta.compose-destinations:core's releases.

2.2.0

What changed

Optional result back in ON_RESUME / ON_START #719

By default, compose destinations will call onNavResult in first opportunity between "onResume" and "onStart". That is because in some situations, I've found that "onResume" is actually not called. However, that makes it be called mostly in "onStart", and in some other cases it may not be ideal (see #719).

So, we've introduced a new onNavResult overload that takes a parameter developers can use to choose when they want to receive the result. Example:


@Destination<RootGraph>
@Composable
fun MyScreen(
resultRecipient: ResultRecipient<ConfirmationScreenDestination,
Boolean>
) {
resultRecipient.onNavResult(
    deliverResultOn = OpenResultRecipient.DeliverResultOn.RESUME
) { result -&gt;
    // ...
}

}

By default, if you call the overload which does not take any param here, it will use FIRST_OPPORTUNITY to not make a breaking change in behaviour here.

New Destination label (#714)

Destination annotation now has a new param "label". This is used to set what official navigation library supports in NavDestination.label. Can be useful for monitoring, logging, etc.

@Destination<RootGraph>(
    label = "my screen label"
)
@Composable
fun MyScreen() {
}

Full Changelog: https://github.com/raamcosta/compose-destinations/compare/2.1.1...2.2.0

Commits

Updates `io.github.raamcosta.compose-destinations:ksp` from 2.1.0 to 2.2.0
Release notes

Sourced from io.github.raamcosta.compose-destinations:ksp's releases.

2.2.0

What changed

Optional result back in ON_RESUME / ON_START #719

By default, compose destinations will call onNavResult in first opportunity between "onResume" and "onStart". That is because in some situations, I've found that "onResume" is actually not called. However, that makes it be called mostly in "onStart", and in some other cases it may not be ideal (see #719).

So, we've introduced a new onNavResult overload that takes a parameter developers can use to choose when they want to receive the result. Example:


@Destination<RootGraph>
@Composable
fun MyScreen(
resultRecipient: ResultRecipient<ConfirmationScreenDestination,
Boolean>
) {
resultRecipient.onNavResult(
    deliverResultOn = OpenResultRecipient.DeliverResultOn.RESUME
) { result -&gt;
    // ...
}

}

By default, if you call the overload which does not take any param here, it will use FIRST_OPPORTUNITY to not make a breaking change in behaviour here.

New Destination label (#714)

Destination annotation now has a new param "label". This is used to set what official navigation library supports in NavDestination.label. Can be useful for monitoring, logging, etc.

@Destination<RootGraph>(
    label = "my screen label"
)
@Composable
fun MyScreen() {
}

Full Changelog: https://github.com/raamcosta/compose-destinations/compare/2.1.1...2.2.0

Commits

Updates `io.github.raamcosta.compose-destinations:ksp` from 2.1.0 to 2.2.0
Release notes

Sourced from io.github.raamcosta.compose-destinations:ksp's releases.

2.2.0

What changed

Optional result back in ON_RESUME / ON_START #719

By default, compose destinations will call onNavResult in first opportunity between "onResume" and "onStart". That is because in some situations, I've found that "onResume" is actually not called. However, that makes it be called mostly in "onStart", and in some other cases it may not be ideal (see #719).

So, we've introduced a new onNavResult overload that takes a parameter developers can use to choose when they want to receive the result. Example:


@Destination<RootGraph>
@Composable
fun MyScreen(
resultRecipient: ResultRecipient<ConfirmationScreenDestination,
Boolean>
) {
resultRecipient.onNavResult(
    deliverResultOn = OpenResultRecipient.DeliverResultOn.RESUME
) { result -&gt;
    // ...
}

}

By default, if you call the overload which does not take any param here, it will use FIRST_OPPORTUNITY to not make a breaking change in behaviour here.

New Destination label (#714)

Destination annotation now has a new param "label". This is used to set what official navigation library supports in NavDestination.label. Can be useful for monitoring, logging, etc.

@Destination<RootGraph>(
    label = "my screen label"
)
@Composable
fun MyScreen() {
}

Full Changelog: https://github.com/raamcosta/compose-destinations/compare/2.1.1...2.2.0

Commits

Updates `com.android.application` from 8.9.1 to 8.10.0 Updates `com.android.library` from 8.9.1 to 8.10.0 Updates `com.android.library` from 8.9.1 to 8.10.0 Updates `org.jetbrains.kotlin.android` from 2.1.20 to 2.1.21
Release notes

Sourced from org.jetbrains.kotlin.android's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

Compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

Tools. Gradle

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.android's changelog.

2.1.21-RC2

Tools. Gradle. JS

2.1.21-RC

Backend. Native. Debug

Compiler

Compose compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

... (truncated)

Commits

Updates `org.jetbrains.kotlin.plugin.compose` from 2.1.20 to 2.1.21
Release notes

Sourced from org.jetbrains.kotlin.plugin.compose's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

Compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

Tools. Gradle

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.plugin.compose's changelog.

2.1.21-RC2

Tools. Gradle. JS

2.1.21-RC

Backend. Native. Debug

Compiler

Compose compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

... (truncated)

Commits

Updates `org.jetbrains.kotlin.plugin.compose` from 2.1.20 to 2.1.21
Release notes

Sourced from org.jetbrains.kotlin.plugin.compose's releases.

Kotlin 2.1.21

Changelog

Backend. Native. Debug

Compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

Tools. Gradle

Tools. Gradle. JS

... (truncated)

Changelog

Sourced from org.jetbrains.kotlin.plugin.compose's changelog.

2.1.21-RC2

Tools. Gradle. JS

2.1.21-RC

Backend. Native. Debug

Compiler

Compose compiler

Native

Native. C and ObjC Import

Native. Runtime. Memory

Tools. CLI

Tools. Compiler Plugins

... (truncated)

Commits

Updates `com.google.devtools.ksp` from 2.1.20-2.0.0 to 2.1.20-2.0.1
Release notes

Sourced from com.google.devtools.ksp's releases.

2.1.20-2.0.1

What's Changed

Contributors

Thanks to everyone who reported bugs and participated in discussions!

Full Changelog: https://github.com/google/ksp/compare/2.1.20-2.0.0...2.1.20-2.0.1

Commits

Most Recent Ignore Conditions Applied to This Pull Request | Dependency Name | Ignore Conditions | | --- | --- | | org.jetbrains.kotlin.android | [< 1.10, > 1.9.23] | | com.google.devtools.ksp | [< 1.10, > 1.9.23-1.0.20] |
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- manager/gradle/libs.versions.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/manager/gradle/libs.versions.toml b/manager/gradle/libs.versions.toml index 4d096d2d..bf13eee0 100644 --- a/manager/gradle/libs.versions.toml +++ b/manager/gradle/libs.versions.toml @@ -1,14 +1,14 @@ [versions] -agp = "8.9.1" -kotlin = "2.1.20" -ksp = "2.1.20-2.0.0" -compose-bom = "2025.03.01" -lifecycle = "2.8.7" -navigation = "2.8.9" +agp = "8.10.0" +kotlin = "2.1.21" +ksp = "2.1.20-2.0.1" +compose-bom = "2025.05.00" +lifecycle = "2.9.0" +navigation = "2.9.0" activity-compose = "1.10.1" kotlinx-coroutines = "1.10.2" coil-compose = "2.7.0" -compose-destination = "2.1.0" +compose-destination = "2.2.0" sheets-compose-dialogs = "1.3.0" markdown = "4.6.2" webkit = "1.13.0"