Skip to content

Commit e3715cf

Browse files
authored
Add JAVA_25 to JRE enum
Add `JRE.JAVA_25` constant and introduce JDK 25-ea CI build Closes #4177
1 parent 293c178 commit e3715cf

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/cross-version.yml

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
- version: 24
3232
type: ea
3333
release: leyden
34+
- version: 25
35+
type: ea
3436
name: "OpenJDK ${{ matrix.jdk.version }} (${{ matrix.jdk.release || matrix.jdk.type }})"
3537
runs-on: ubuntu-latest
3638
steps:

documentation/src/docs/asciidoc/release-notes/release-notes-5.11.4.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ JUnit repository on GitHub.
4848
[[release-notes-5.11.4-junit-jupiter-new-features-and-improvements]]
4949
==== New Features and Improvements
5050

51-
*
51+
* `JAVA_25` has been added to the `JRE` enum for use with JRE-based execution conditions.
5252

5353

5454
[[release-notes-5.11.4-junit-vintage]]

documentation/src/docs/asciidoc/release-notes/release-notes-5.12.0-M1.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ JUnit repository on GitHub.
118118
thread dump to `System.out` prior to interrupting a test thread due to a timeout.
119119
* `TestReporter` now allows publishing files for a test method or test class which can be
120120
used to include them in test reports, such as the Open Test Reporting format.
121-
121+
* `JAVA_25` has been added to the `JRE` enum for use with JRE-based execution conditions.
122122

123123
[[release-notes-5.12.0-M1-junit-vintage]]
124124
=== JUnit Vintage

gradle/base/code-generator-model/src/main/resources/jre.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,5 @@
2828
since: '5.11'
2929
- version: 24
3030
since: '5.11'
31+
- version: 25
32+
since: '5.11.4'

0 commit comments

Comments
 (0)