- v1.16.22 is the latest stable release of Project Lombok.
- BREAKING CHANGE: The in 1.16.22 introduced configuration key
lombok.noArgsConstructor.extraPrivate
is now false
by default.
- BUGFIX: Do not generate a private no-args constructor if that breaks the code. , ,
- BUGFIX: Using boolean parameters in lombok annotations would fail.
- BUGFIX: Delombok would give an error message.
- BUGFIX: Eclipse java10 var support didn't work if lombok was installed in your eclipse.
- FEATURE: Google's Flogger (a.k.a. FluentLogger) is now available via
@Flogger
.
- FEATURE:
@FieldNameConstants
has been extended to support prefixes and suffixes. By default, the generated constants are prefixed with FIELD_
. Docs on @FieldNameConstants.