Skip to content

Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1#4410

Open
solrbot wants to merge 2 commits into
apache:mainfrom
solrbot:renovate/androidx.navigation3
Open

Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1#4410
solrbot wants to merge 2 commits into
apache:mainfrom
solrbot:renovate/androidx.navigation3

Conversation

@solrbot
Copy link
Copy Markdown
Collaborator

@solrbot solrbot commented May 10, 2026

This PR contains the following updates:

Package Type Update Change
org.jetbrains.androidx.navigation3:navigation3-ui dependencies patch 1.1.01.1.1

Release Notes

JetBrains/compose-multiplatform (org.jetbrains.androidx.navigation3:navigation3-ui)

v1.1.1

Desktop

Fixes
API changes

If you use Dispatchers.Swing or Dispatchers.Main in your code, add this dependency into build.gradle.kts:

dependencies {
    implementation("org.jetbrains.kotlinx:kotlinx-coroutines-swing:$coroutinesVersion")
}

Also, usage of Dispatchers.Swing or Dispatchers.Main inside internals of Compose is implementation details, and can be changed in the future. If you need to avoid race conditions with Compose UI, you can obtain appropriate coroutine scope via rememberCoroutineScope:

import androidx.compose.runtime.DisposableEffect
import androidx.compose.runtime.remember
import androidx.compose.runtime.rememberCoroutineScope
import androidx.compose.ui.ExperimentalComposeUiApi
import androidx.compose.ui.window.application

@​OptIn(ExperimentalComposeUiApi::class, androidx.compose.foundation.ExperimentalFoundationApi::class)
fun main() = application {
    val scope = rememberCoroutineScope()
    val someApplicationObject = remember(scope) { SomeApplicationObject(scope) }

    DisposableEffect(Unit) {
        SomeGlobalObject.init(scope)
        onDispose {  }
    }
}

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Only on Sunday (* * * * 0)
  • 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot

@solrbot solrbot added the exempt-stale Prevent a PR from going stale label May 10, 2026
@solrbot
Copy link
Copy Markdown
Collaborator Author

solrbot commented May 10, 2026

⚠️ Artifact update problem

Renovate failed to update artifacts related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: undefined
Command failed: ./gradlew resolveAndLockAll --write-locks
ERROR: java version must be between 21 and 23, your version: 25

File name: undefined
Command failed: ./gradlew kotlinUpgradeYarnLock
ERROR: java version must be between 21 and 23, your version: 25

File name: undefined
Command failed: ./gradlew updateLicenses
ERROR: java version must be between 21 and 23, your version: 25

@github-actions github-actions Bot added dependencies Dependency upgrades tool:build labels May 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Dependency upgrades exempt-stale Prevent a PR from going stale tool:build

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant