Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

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

Open
renovate[bot] wants to merge 1 commit intomainigorescodro/alkaa:mainfrom
renovate/compose.navigationigorescodro/alkaa:renovate/compose.navigationCopy head branch name to clipboard
Open

Update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1#1243
renovate[bot] wants to merge 1 commit intomainigorescodro/alkaa:mainfrom
renovate/compose.navigationigorescodro/alkaa:renovate/compose.navigationCopy head branch name to clipboard

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 21, 2026

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: Disabled by config. Please merge this manually once you are satisfied.

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 force-pushed the renovate/compose.navigation branch 3 times, most recently from 86fcc3e to 89add7b Compare April 25, 2026 14:26
@renovate renovate Bot force-pushed the renovate/compose.navigation branch from 89add7b to 7d60b7d Compare April 29, 2026 13:04
@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 7, 2026
@renovate renovate Bot force-pushed the renovate/compose.navigation branch 2 times, most recently from e8b7ed7 to 9fd6ee8 Compare May 8, 2026 02:59
@igorescodro igorescodro enabled auto-merge (rebase) May 8, 2026 11:15
@renovate renovate Bot force-pushed the renovate/compose.navigation branch from 99e0501 to 151e358 Compare May 8, 2026 11:16
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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.