fix(deps): update ksp monorepo to v2.3.12 - #333
Open
renovate[bot] wants to merge 1 commit into
Open
renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
Code Coverage
|
renovate
Bot
force-pushed
the
renovate/ksp-monorepo
branch
2 times, most recently
from
September 15, 2026 21:09
ad17fbb to
f653a54
Compare
renovate
Bot
force-pushed
the
renovate/ksp-monorepo
branch
from
September 23, 2026 15:21
f653a54 to
d90351a
Compare
renovate
Bot
force-pushed
the
renovate/ksp-monorepo
branch
from
September 25, 2026 16:39
d90351a to
6842308
Compare
|
This branch has not been deployed
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:
2.3.11→2.3.122.3.11→2.3.12Release Notes
google/ksp (com.google.devtools.ksp)
v2.3.12Compare Source
What's Changed
Migrating Processors to Support Backing Fields
This release introduces support for explicit backing fields (#2873), which may now be returned by
Resolver.getSymbolsWithAnnotation. To prevent breaking existing processors, new language features require an explicit opt-in.More generally, the KSP API now explicitly models backing fields for properties. The following is an exhaustive list of functions in KSP API where processor may observe the change after opting in:
Resolver.getSymbolsWithAnnotation: The function now returns aKSBackingFieldif the given annotation targeted a field. Previously, if a field were targeted, the function would return aKSProperty.Resolver.effectiveJavaModifiers: The function returns fewer modifiers for aKSPropertyDeclarationif it has a backing field, since most of the JVM-specific annotations apply to the backing field. If you are interested in the JVM modifiers, you should call the function with theKSBackingFieldobtained from the property instead.Additionally, KSP now models Java fields as properties that always have backing fields. Some of the modifiers now apply to the backing field instead.
Processors adapting to new features must opt in via both of the following steps simultaneously (failing to do both may lead to undefined behavior):
registerProcessorForNewFeaturesfunction inSymbolProcessorEnvironmentimmediately when created (and only once). Example: AbstractTestProcessor.kt#L30KSVisitorshould move toKSVisitorNext. If their processor code does not directly implement the interface but instead extends one of the KSP-provided visitors (such asKSTopDownVisitor), they should instead extendKSTopDownVisitor(enableNewFeatures = true)and overridevisitBackingFielddepending on their code and needs.Let us know if you run into unexpected behavior!
Bug Fixes
New Contributors
Thanks to @KlyneChrysler, @budindepunk, and everyone who reported bugs and participated in discussions!
Full Changelog: google/ksp@2.3.11...2.3.12
Configuration
📅 Schedule: (UTC)
🚦 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.