diff options
author | Roel Spilker <r.spilker@gmail.com> | 2018-05-28 22:00:57 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-05-28 22:00:57 +0200 |
commit | d4388781271a3b0ae1ab42a0250e6b6f0c8219b0 (patch) | |
tree | 5976528b34bdda48591f9757ad0dfa9d7fc597f9 /doc | |
parent | 6045c1b8f524064a492b0dae9fbfbe89a1dca232 (diff) | |
download | lombok-d4388781271a3b0ae1ab42a0250e6b6f0c8219b0.tar.gz lombok-d4388781271a3b0ae1ab42a0250e6b6f0c8219b0.tar.bz2 lombok-d4388781271a3b0ae1ab42a0250e6b6f0c8219b0.zip |
Update docs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/changelog.markdown | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index d6e8af33..11e61d3a 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -3,6 +3,7 @@ Lombok Changelog ### v1.16.21 "Edgy Guinea Pig" * v1.16.20 is the latest stable release of Project Lombok. +* FEATURE: Private no-args constructor for `@Data` and `@Value` to enable deserialization frameworks (like Jackson) to operate out-of-the-box. Use `lombok.noArgsConstructor.extraPrivate = false` to disable this behavior. * FEATURE: Methods can now be marked for inclusion in `toString`, `equals`, and `hashCode` generation. There is a new mechanism to mark which fields (and now, methods) are to be included or excluded for the generation of these methods: mark the relevant member with for example `@ToString.Include` or `@EqualsAndHashCode.Exclude`. [ToString documentation](https://projectlombok.org/features/ToString) [EqualsAndHashCode documentation](https://projectlombok.org/features/EqualsAndHashCode) * FEATURE: `@Getter` and `@Setter` also allow `onMethod` and `onParam` when put on a type. [Issue #1653](https://github.com/rzwitserloot/lombok/issues/1653) * FEATURE: `@FieldNameConstants` is a new feature that generates string constants for your field names. [Docs on @FieldNameConstants](https://projectlombok.org/features/experimental/FieldNameConstants). |