solrbot opened a new pull request, #4410: URL: https://github.com/apache/solr/pull/4410
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [org.jetbrains.androidx.navigation3:navigation3-ui](https://redirect.github.com/JetBrains/compose-multiplatform) | dependencies | patch | `1.1.0` → `1.1.1` | --- ### Release Notes <details> <summary>JetBrains/compose-multiplatform (org.jetbrains.androidx.navigation3:navigation3-ui)</summary> ### [`v1.1.1`](https://redirect.github.com/JetBrains/compose-multiplatform/blob/HEAD/CHANGELOG.md#111-Mar-2022) #### Desktop ##### Fixes - [Support textIndent](https://redirect.github.com/JetBrains/compose-jb/issues/1733) - [Fix cursor placement inside ligature](https://redirect.github.com/JetBrains/compose-jb/issues/1891) ##### API changes - [Compose doesn't depend on kotlinx-coroutines-swing](https://redirect.github.com/JetBrains/compose-jb/issues/1943) 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 { } } } ``` </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/solrbot/renovate-github-action) <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNzAuMTgiLCJ1cGRhdGVkSW5WZXIiOiI0My4xNzAuMTgiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImV4ZW1wdC1zdGFsZSJdfQ==--> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
