Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ kotlin = "1.9.22"
spotless = "8.5.1"

# Testing
junit = "5.14.3"
junit = "6.1.0"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Keep test framework compatible with Java 8/11 jobs

Bumping junit to 6.1.0 upgrades Jupiter to JUnit 6, which requires a Java 17 runtime, but this repo still executes tests on Java 8/11 in CI (.github/workflows/test_workflow.yml matrix includes 8, 8-orcl, 8-j9, 8-ibm, 11, 11-j9 at lines 39-42 and musl 8-librca/11-librca at line 174). Those jobs will fail when loading JUnit classes (class version mismatch), so this dependency change breaks the current supported test matrix.

Useful? React with 👍 / 👎.

junit-platform = "1.14.3" # JUnit Platform version corresponding to JUnit Jupiter 5.9.2
junit-pioneer = "1.9.1"
slf4j = "2.0.18"
Expand Down
Loading