You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: buildScripts/tests.ant.xml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -148,10 +148,14 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
148
148
<test.javacX version="17" />
149
149
</target>
150
150
151
+
<targetname="test.javac21"depends="test.compile, test.formatter.compile"description="runs the tests on your default VM, using javac21 as underlying compiler">
152
+
<test.javacX version="21" />
153
+
</target>
154
+
151
155
<!-- For non-LTS versions, feel free to aggressively update these to the current non-LTS openjdk version, and delete them once they roll out of the 6 month window. -->
152
156
153
-
<targetname="test.javac20"depends="test.compile, test.formatter.compile"description="runs the tests on your default VM, using javac20 as underlying compiler">
154
-
<test.javacX version="20" />
157
+
<targetname="test.javac23"depends="test.compile, test.formatter.compile"description="runs the tests on your default VM, using javac23 as underlying compiler">
158
+
<test.javacX version="23" />
155
159
</target>
156
160
157
161
<targetname="test.javacCurrent"depends="test.compile, test.formatter.compile"description="runs the tests on your default VM, using its javac as underlying compiler">
@@ -368,5 +372,5 @@ This buildfile is part of projectlombok.org. It takes care of compiling and runn
368
372
</target>
369
373
370
374
<targetname="test"depends="test.javacCurrent, test.eclipse-202212"description="runs the tests against the default JVM, javac, and eclipse" />
371
-
<targetname="test.broad"depends="test.javac8, test.javac17, test.javac20, test.eclipse-oxygen, test.eclipse-202212, test.eclipse-202006-jdk8"description="runs the tests against the default JVM, javac, and eclipse" />
375
+
<targetname="test.broad"depends="test.javac8, test.javac17, test.javac21, test.javac23, test.eclipse-oxygen, test.eclipse-202212, test.eclipse-202006-jdk8"description="runs the tests against the default JVM, javac, and eclipse" />
Copy file name to clipboardExpand all lines: doc/changelog.markdown
+1-2Lines changed: 1 addition & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,9 @@ Lombok Changelog
2
2
----------------
3
3
4
4
### v1.18.35 "Edgy Guinea Pig"
5
-
*We recently released v1.18.34; there is no edge release since then.
5
+
*PLATFORM: JDK23 support added.
6
6
* BUGFIX: Eclipse projects using the `com.pro-crafting.tools:jasperreports-maven-plugin` will now compile.
7
7
8
-
9
8
### v1.18.34 (June 28th, 2024)
10
9
* PLATFORM: Added support for Eclipse 2024-06; you'd get some `NoSuchMethodError` traces in your logs if using `@Builder` or `@Singular` prior to this fix. [Issue #3638](https://github.com/projectlombok/lombok/issues/3638).
11
10
* IMPROBABLE BREAKING CHANGE: Lombok now adds `@lombok.Generated` by default to methods and types it generates. This may result in accidentally increasing your test coverage percentage. [Issue #3667](https://github.com/projectlombok/lombok/issues/3667).
0 commit comments