chore: take kbuild 1.2.10 - #17
Open
rasros wants to merge 1 commit into
Open
Conversation
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.
Summary
com.eignex.*pins move to 1.2.10.Why
1.2.10 carries two fixes, both of which matter here.
detekt goes back to 2.0.0-alpha.3. Neither newer alpha is usable across the fleet: alpha.5 reports
documented constructor parameters as undocumented, and alpha.6 reports used private constructor
properties as unused. alpha.3 is the last version clean in every repo.
The plugin jar now emits Java 21 bytecode while still compiling on 25, so it declares
"org.gradle.jvm.version": 21instead of 25. Gradle reads that during dependency resolution, so1.2.8 and 1.2.9 could only be resolved by a Gradle daemon running JDK 25. 1.2.10 drops that floor
back to 21 while consumer code still targets 25 through
jvmToolchain(25).CI stays on JDK 25, which is still needed for the toolchain. What changes is local development: a
build no longer refuses to resolve the plugin on JDK 21 or 22.
Testing
CI. kbuild 1.2.10 was verified before release with a release-workflow dry run and
samples/smoke-test.sh, and after release against the published artifact: every class inkbuild-1.2.10.jaris major 65, and the module metadata declares"org.gradle.jvm.version": 21.