Conversation
…equired version - Updated build.gradle to set sourceCompatibility and targetCompatibility to Java 17 - Updated GitHub Actions workflow to test on Java 17 and 21 only - Removed Java 11 from CI/CD test matrix - Updated all workflow jobs to use Java 17 as the base version
|
Important Review skippedAuto incremental reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Use the checkbox below for a quick retry:
WalkthroughThis PR removes Java 11 from the CI matrix, making Java 17 the minimum supported version, and upgrades the Spotless Gradle plugin from 7.2.1 to 8.2.1 with corresponding Java compatibility updates in the build configuration. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #285 +/- ##
=========================================
Coverage 37.70% 37.70%
Complexity 1236 1236
=========================================
Files 197 197
Lines 7609 7609
Branches 880 880
=========================================
Hits 2869 2869
Misses 4601 4601
Partials 139 139 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Pull request overview
Upgrades the Gradle Spotless plugin and updates the project’s Java baseline/CI matrix, aligning builds and publishing to run on newer JDKs.
Changes:
- Bump
com.diffplug.spotlessGradle plugin from7.2.1to8.2.1. - Change Gradle
sourceCompatibility/targetCompatibilityfrom Java 11 to Java 17. - Update GitHub Actions workflow to test on Java 17/21 only and run publish jobs on Java 17.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| build.gradle | Updates Spotless plugin version; raises Java compilation target to 17. |
| .github/workflows/main.yaml | Removes Java 11 from CI matrix; standardizes coverage/publish jobs around Java 17+. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In `@build.gradle`:
- Around line 29-30: The project now requires Java 17
(sourceCompatibility/targetCompatibility set to JavaVersion.VERSION_17); update
documentation accordingly by (1) changing README.md’s "minimum JDK version"
statement to Java 17 and adding a short note about the change, (2) adding a
Breaking Change entry in CHANGELOG.md that follows existing breakage formatting
(mention Java 17 requirement and affected versions), and (3) creating a brief
migration note (can be a new section in README.md or a separate MIGRATION.md)
that explains steps for users on Java 11 or earlier to upgrade their JDK or
toolchain and any build/tooling adjustments required.
chore: upgrade Spotless plugin from 7.2.1 to 8.2.1
Updates the Spotless code formatting plugin to the latest version. This upgrade provides better Gradle compatibility and prepares the codebase for future Java version support.
Summary by CodeRabbit