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
@github-actions github-actions Bot added dependencies Dependency upgrades tool:build labels May 10, 2026
@solrbot solrbot force-pushed the renovate/androidx.navigation3 branch from 63d750c to 6267988 Compare May 14, 2026 22:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

admin-ui 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