Skip to content

fix(deps): update androidxnavigation3 to v1.1.1#48

Open
renovate[bot] wants to merge 1 commit into
developfrom
renovate/androidxnavigation3
Open

fix(deps): update androidxnavigation3 to v1.1.1#48
renovate[bot] wants to merge 1 commit into
developfrom
renovate/androidxnavigation3

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.1.0-rc011.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.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 21, 2026

Tests (linux x64)

50 tests  ±0   50 ✅ ±0   3s ⏱️ ±0s
13 suites ±0    0 💤 ±0 
13 files   ±0    0 ❌ ±0 

Results for commit 85ec090. ± Comparison against base commit 3e180fb.

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 21, 2026

Tests (linux arm64)

50 tests  ±0   50 ✅ ±0   2s ⏱️ ±0s
13 suites ±0    0 💤 ±0 
13 files   ±0    0 ❌ ±0 

Results for commit 85ec090. ± Comparison against base commit 3e180fb.

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 21, 2026

Tests (macos)

50 tests  ±0   50 ✅ ±0   4s ⏱️ +2s
13 suites ±0    0 💤 ±0 
13 files   ±0    0 ❌ ±0 

Results for commit 85ec090. ± Comparison against base commit 3e180fb.

♻️ This comment has been updated with latest results.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented Apr 21, 2026

Tests (windows)

50 tests  ±0   50 ✅ ±0   6s ⏱️ -1s
13 suites ±0    0 💤 ±0 
13 files   ±0    0 ❌ ±0 

Results for commit 85ec090. ± Comparison against base commit 3e180fb.

♻️ This comment has been updated with latest results.

@renovate renovate Bot force-pushed the renovate/androidxnavigation3 branch from e4f3f7a to 85ec090 Compare May 6, 2026 11:55
@renovate renovate Bot changed the title fix(deps): update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.0 fix(deps): update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1 May 6, 2026
@renovate renovate Bot changed the title fix(deps): update dependency org.jetbrains.androidx.navigation3:navigation3-ui to v1.1.1 fix(deps): update androidxnavigation3 to v1.1.1 Jun 2, 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