solrbot opened a new pull request, #4117: URL: https://github.com/apache/solr/pull/4117
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [com.arkivanov.decompose:extensions-compose](https://redirect.github.com/arkivanov/Decompose) | dependencies | minor | `3.3.0` -> `3.4.0` | | [com.arkivanov.decompose:decompose](https://redirect.github.com/arkivanov/Decompose) | dependencies | minor | `3.3.0` -> `3.4.0` | | org.jetbrains.compose | plugin | minor | `1.8.2` -> `1.10.0` | --- ### Release Notes <details> <summary>arkivanov/Decompose (com.arkivanov.decompose:extensions-compose)</summary> ### [`v3.4.0`](https://redirect.github.com/arkivanov/Decompose/releases/tag/3.4.0) [Compare Source](https://redirect.github.com/arkivanov/Decompose/compare/3.3.0...3.4.0) ##### Changes since version 3.4.0-beta01 - Fixed Child Stack and Child Pages incorrectly initialized when state is not restored ([#​938](https://redirect.github.com/arkivanov/Decompose/issues/938)) ##### Earlier changes since version 3.3.0 - Use SPDX identifier in POMs ([#​851](https://redirect.github.com/arkivanov/Decompose/issues/851) by [@​TheMrMilchmann](https://redirect.github.com/TheMrMilchmann)) - Relax `StrictMode` with restarting the Activity stack for deep links ([#​853](https://redirect.github.com/arkivanov/Decompose/issues/853)) - Don't restart Activity stack when there is no deep link ([#​854](https://redirect.github.com/arkivanov/Decompose/issues/854)) - Added `backHandlerPriority` argument to `childContext` extension function ([#​859](https://redirect.github.com/arkivanov/Decompose/issues/859)) - Updated Compose to `1.8.0-rc01` and `compileSdkVersion` to 35 ([#​870](https://redirect.github.com/arkivanov/Decompose/issues/870)) - Added Child Items navigation model ([#​878](https://redirect.github.com/arkivanov/Decompose/issues/878), [#​882](https://redirect.github.com/arkivanov/Decompose/issues/882), [#​880](https://redirect.github.com/arkivanov/Decompose/issues/880)) - Added `PagesNavigator#setItems` extension function ([#​881](https://redirect.github.com/arkivanov/Decompose/issues/881)) - Deprecated `Value#getValue` operator overload ([#​885](https://redirect.github.com/arkivanov/Decompose/issues/885), see [#​877](https://redirect.github.com/arkivanov/Decompose/issues/877)) - Exposed `ChildPagesPager` typealias ([#​886](https://redirect.github.com/arkivanov/Decompose/issues/886), see [#​883](https://redirect.github.com/arkivanov/Decompose/issues/883)) - Avoid using `Modifier.graphicLayer` in predictive back animatables ([#​884](https://redirect.github.com/arkivanov/Decompose/issues/884), see [#​877](https://redirect.github.com/arkivanov/Decompose/issues/877)) - Fixed IndexOutOfBoundsException in ChildPages ([#​887](https://redirect.github.com/arkivanov/Decompose/issues/887), see [#​866](https://redirect.github.com/arkivanov/Decompose/issues/866)) - Added JetpackComponentContext API ([#​895](https://redirect.github.com/arkivanov/Decompose/issues/895), [#​896](https://redirect.github.com/arkivanov/Decompose/issues/896)) - Updated Compose to `1.8.2` ([#​897](https://redirect.github.com/arkivanov/Decompose/issues/897)) - Fixed `ClassCastException` in `SlotNavigator#dismiss` on `wasmJs` on Kotlin 2.2 ([#​888](https://redirect.github.com/arkivanov/Decompose/issues/888), see [#​879](https://redirect.github.com/arkivanov/Decompose/issues/879)) - Explicit error handling in Relay ([#​899](https://redirect.github.com/arkivanov/Decompose/issues/899), see [#​892](https://redirect.github.com/arkivanov/Decompose/issues/892)) - Expose `StackAnimationScope` from `ChildStack` instead of `AnimatedVisibilityScope` ([#​901](https://redirect.github.com/arkivanov/Decompose/issues/901), [#​925](https://redirect.github.com/arkivanov/Decompose/issues/925)) - Use `graphicsLayer` with `CompositingStrategy.Offscreen` in predictive back animations ([#​919](https://redirect.github.com/arkivanov/Decompose/issues/919), see [#​918](https://redirect.github.com/arkivanov/Decompose/issues/918)) - Renamed `androidPredictiveBackAnimatable` to `androidPredictiveBackAnimatableV1` ([#​921](https://redirect.github.com/arkivanov/Decompose/issues/921)) - Added `androidPredictiveBackAnimatableV2` from Android Vanilla Ice Cream ([#​923](https://redirect.github.com/arkivanov/Decompose/issues/923)) - Fixed incorrect enter shape in `androidPredictiveBackAnimatable` when not fullscreen ([#​922](https://redirect.github.com/arkivanov/Decompose/issues/922)) - Fixed `ChildPages` animation sometimes stuck when interrupted ([#​924](https://redirect.github.com/arkivanov/Decompose/issues/924)) - Fixed Child Slot state not saved when not active ([#​916](https://redirect.github.com/arkivanov/Decompose/issues/916)) - Fixed CCE in `SlotNavigator#dismiss` on `wasmJs` ([#​915](https://redirect.github.com/arkivanov/Decompose/issues/915)) - Fixed `ChildPages` composable discards the selected index change while not in composition ([#​930](https://redirect.github.com/arkivanov/Decompose/issues/930), see [#​929](https://redirect.github.com/arkivanov/Decompose/issues/929)) - Fixed Web History Navigation duplicates history items when nested ([#​933](https://redirect.github.com/arkivanov/Decompose/issues/933), see [#​907](https://redirect.github.com/arkivanov/Decompose/issues/907)) ##### The new Child Items navigation model This release introduces a new experimental navigation model – Child Items. It's designed specifically for displaying child components in lazy lists or grids, but can also be used to organize components in an arbitrary list with flexible lifecycles. See the updated [docs](https://arkivanov.github.io/Decompose/navigation/items/overview/). ##### New JetpackComponentContext API This release adds a new module `jetpack-component-context` that provides the `JetpackComponentContext` API for interop with AndroidX Architecture Components. See the updated [docs](https://arkivanov.github.io/Decompose/component/jetpack-component-context/) for more information. ##### The new `androidPredictiveBackAnimatableV2` animation The `androidPredictiveBackAnimatable` has been renamed to `androidPredictiveBackAnimatableV1`. Plus the new `androidPredictiveBackAnimatableV2` animation was added, resembling the standard predictive back animation from Android Vanilla Ice Cream and Baklava. See the updated [docs](https://arkivanov.github.io/Decompose/extensions/compose/#standard-android-like-system-animation) for more information. <https://github.com/user-attachments/assets/88119f4a-b134-480a-8f58-4fc855133b06> ##### The new StackAnimationScope The `ChildStack` composable function now exposes `StackAnimationScope` instead of `AnimatedVisibilityScope`, providing access to `stackAnimationDirection: Direction?` property. This allows better UI customization during stack animations. ##### Improved predictive back animation scaling quality This release significantly improves the quality of scaling when performing predictive back animations with Jetpack Compose. ##### Versions and dependencies Kotlin: `2.1.0` Essenty: `2.5.0` kotlinx-serialization: `1.6.3` Multiplatform Compose: `1.8.2` </details> --- ### Configuration 📅 **Schedule**: Branch creation - Only on Sunday ( * * * * 0 ) (UTC), 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiI0MS44Mi4xMCIsInVwZGF0ZWRJblZlciI6IjQxLjgyLjEwIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJleGVtcHQtc3RhbGUiXX0=--> -- 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]
