Finalize 4.2.2 — version bump + Navigation 3 typed entryProvider docs (#2336)#2448
Merged
Conversation
- Bump koinVersion 4.2.2-Alpha1 -> 4.2.2 (release). - #2336: document that koinEntryProvider<T>() is generic and must be given the route type when NavDisplay is typed (e.g. via a typed SceneStrategy like rememberSupportingPaneSceneStrategy<Route>()). koinEntryProvider<Any>() yields (Any) -> NavEntry<Any>, which won't match NavDisplay<Route>; use koinEntryProvider<Route>() (or a typed EntryProvider<Route> variable). The API was already generic — this is a usage/documentation clarification. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Finalizes the 4.2.2 release.
Version
Bump
koinVersion4.2.2-Alpha1→4.2.2.#2336 — Navigation 3 typed
entryProvider(docs)koinEntryProvider<T>()is already generic ((T) -> NavEntry<T>). The reported mismatch happens when it's called askoinEntryProvider<Any>()butNavDisplayis typed (e.g. via a typedSceneStrategysuch asrememberSupportingPaneSceneStrategy<Route>()) — the compiler then infersNavDisplay<Route>and expects(Route) -> NavEntry<Route>. The API didn't need changing; the fix is to document passing the route type:Added a
:::tipto the Navigation 3 reference page covering the exact error and both forms.Verification
./gradlew apiCheckpasses (no.apidelta).Closes #2336.
🤖 Generated with Claude Code