Upgrade dependencies and toolchain; refresh project docs#17
Merged
Conversation
Toolchain and dependencies: - Raise the JVM toolchain from Java 17 to Java 25, and bump the GitHub Actions CI runners (lint + test jobs) to JDK 25 to match. - Upgrade the Gradle wrapper from 9.5.0 to 9.6.1. - Bump Kotlin 2.4.0, Ktor 3.5.1, Kotest 6.2.1, readingbat-core 3.2.1, common-utils 2.9.3, kotlin-logging 8.0.4, kotlinter 5.5.0, detekt 2.0.0-alpha.5. Rename the `gradle` catalog key to `gradle-wrapper`. Build and Makefile: - Refactor build.gradle.kts into per-concern helper functions, build the fat jar via Ktor's fatJar task, run the Kotlin unused-return-value checker over production code, and reject pre-release dependencyUpdates candidates for stable dependencies. - Remove the Makefile heroku and logs targets. Docs: - Update CHANGELOG.md, RELEASE_NOTES.md, README.md, CLAUDE.md, and llms.txt to reflect the Java 25 toolchain, the GitHub Actions CI workflow, the versioncheck -> versions target rename, and the current dependency set. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
The Kotest/readingbat-core bump turned `correctAnswers` from a property into a function, breaking `:compileTestKotlin`. Invoke it as `correctAnswers()`. 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.
Summary
Upgrades the JVM toolchain, Gradle wrapper, and dependencies, and refreshes the project documentation to match. Also includes the out-of-band
build.gradle.ktsrefactor and Makefile cleanup that were already in the working tree.Toolchain & dependencies
gradleversion-catalog key togradle-wrapper.Build & Makefile
build.gradle.ktsinto per-concern helper functions, build the fat jar via Ktor'sfatJartask, run the Kotlin unused-return-value checker over production code, and reject pre-releasedependencyUpdatescandidates for stable dependencies.herokuandlogstargets.Docs
CHANGELOG.md,RELEASE_NOTES.md,README.md,CLAUDE.md, andllms.txtto reflect the Java 25 toolchain, the GitHub Actions CI workflow, theversioncheck→versionstarget rename, and the current dependency set.Test plan
make lint+make tests) runs on this PR with JDK 25; confirm both jobs pass.🤖 Generated with Claude Code