fix(deps): update kotlin, ksp, mero to v0.11.2#3378
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
fix(deps): update kotlin, ksp, mero to v0.11.2#3378renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
b92421d to
529bdd4
Compare
529bdd4 to
6fd180e
Compare
6fd180e to
c383981
Compare
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.
This PR contains the following updates:
0.11.1→0.11.20.11.1→0.11.2Release Notes
ZacSweers/metro (dev.zacsweers.metro)
v0.11.2Compare Source
2026-03-02
New
Class/KClassmap key interopThis release introduces a special-cased opt-in
java.lang.Classandkotlin.reflect.KClassinterop on JVM/android compilations. While these types are not intrinsics of each other in regular code, they are in annotations and are often used inMapmultibindings. Metro can support these if you enable theenableKClassToClassMapKeyInteropoption. When enabled,java.lang.Classandkotlin.reflect.KClassare treated as interchangeable in map key types, matching Kotlin's own annotation compilation behavior. This only applies to map keys because these are the only scenario where annotation arguments are materialized into non-annotation code (i.e.@ClassKey(Foo::class) -> Map<Class<*>, V>).This is disabled by default (even if other framework interops like
includeDaggerare enabled) because this is purely for annotations interop and potentially comes at some runtime overhead cost to interop sinceKClasstypes are still used under the hood and must be mapped in some cases. It's recommended to migrate these toKClassand call.javawhere necessary if possible.Enhancements
@LazyClassKeyas this is unsupported in Metro.@RequiresIdeSupportopt-in message.Fixes
@Providesgraph parameters wouldn't correctly be used by scoped bindings directly held in that graph.Contributors
Special thanks to the following contributors for contributing to this release!
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.