Skip to content

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

Open
renovate[bot] wants to merge 1 commit into
rlcs-26-rewritefrom
renovate/nav3kmp
Open

Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1#721
renovate[bot] wants to merge 1 commit into
rlcs-26-rewritefrom
renovate/nav3kmp

Conversation

@renovate

@renovate renovate Bot commented Apr 21, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
org.jetbrains.androidx.navigation3:navigation3-ui 1.0.0-alpha061.1.1 age confidence

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 {  }
    }
}

v1.1.0

Desktop

Features
Fixes
API changes
import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.setValue
import androidx.compose.ui.window.singleWindowApplication

private var time by mutableStateOf(System.nanoTime())
private var frame by mutableStateOf(0)

fun main() = singleWindowApplication {
    if (frame == 0) {
        frame++
    } else if (frame == 1) {
        val duration = ((System.nanoTime() - time) / 1E6).toLong()
        println("First frame millis: $duration")
    }
}

Dependencies

This version of Compose Multiplatform is based on the next Jetpack Compose libraries:


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot enabled auto-merge (squash) April 21, 2026 12:38
@renovate renovate Bot force-pushed the renovate/nav3kmp branch 3 times, most recently from 69441b8 to 59ad65d Compare April 23, 2026 16:49
@renovate renovate Bot force-pushed the renovate/nav3kmp branch from 59ad65d to bf4cf8e Compare May 6, 2026 11:42
@renovate renovate Bot changed the title Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.0 Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1 May 6, 2026
@renovate renovate Bot force-pushed the renovate/nav3kmp branch 3 times, most recently from 5be501f to 1785142 Compare May 14, 2026 01:29
@renovate renovate Bot force-pushed the renovate/nav3kmp branch from 1785142 to 4bccb6c Compare May 17, 2026 04:24
@renovate renovate Bot force-pushed the renovate/nav3kmp branch from 4bccb6c to 28f7fca Compare May 28, 2026 02:41
@renovate renovate Bot changed the title Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1 Update nav3Kmp to v1.1.1 Jun 2, 2026
@renovate renovate Bot changed the title Update nav3Kmp to v1.1.1 Update nav3Kmp Jun 22, 2026
@renovate renovate Bot changed the title Update nav3Kmp Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1 Jun 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants