- BREAKING CHANGE: mapstruct users should now add a dependency to lombok-mapstruct-binding. This solves compiling modules with lombok (and mapstruct).
- FEATURE: Similar to
@Builder, you can now configure a @SuperBuilder's 'setter' prefixes via @SuperBuilder(setterPrefix = "set") for example. We still discourage doing this. Pull Request #2357.
- FEATURE: If using
@Synchronized("lockVar"), if lockVar is referring to a static field, the code lombok generates no longer causes a warning about accessing a static entity incorrectly.
- BUGFIX: Using
val in combination with values whose generics include wildcards that reference themselves would cause a StackOverflowError in javac. .
- BUGFIX: Using
@SuperBuilder on a class that has some fairly convoluted generics usage would fail with 'Wrong number of type arguments'. Pull Request #2362
- BUGFIX: Various lombok annotations on classes nested inside enums or interfaces would cause errors in eclipse.
- BUGFIX: Trying to add
@ExtensionMethods with exactly 2 arguments would fail in eclipse. Pull Request #2376 thanks to @Rawi01.
- FEATURE:
@Jacksonized on a @Builder or @SuperBuilder will configure Jackson to use this builder when deserializing. Pull Request #2387 thanks to @JanRieke. @Jacksonized documentation.