aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2017-12-11 21:28:05 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2017-12-11 21:28:05 +0100
commit9cf3c8f8baeaba18ca2d18ad60a6d4c3485c6988 (patch)
tree022852d93c2f4dbc86abd5979cb0b3c434a62dc1
parent7176ebc6c6a2fcaaa574f2d79aac4903c99055f3 (diff)
downloadlombok-9cf3c8f8baeaba18ca2d18ad60a6d4c3485c6988.tar.gz
lombok-9cf3c8f8baeaba18ca2d18ad60a6d4c3485c6988.tar.bz2
lombok-9cf3c8f8baeaba18ca2d18ad60a6d4c3485c6988.zip
[changelog] Add a note about changing the behaviour of ConstructorProperties in this release.
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index f4b71e4f..951f579f 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -5,6 +5,7 @@ Lombok Changelog
* v1.16.18 is the latest stable release of Project Lombok.
* PLATFORM: Possible support for jdk9 in the new IntelliJ, Netbeans and for Gradle.
* BREAKING CHANGE: _lombok config_ key `lombok.addJavaxGeneratedAnnotation` now defaults to `false` instead of true. Oracle broke this annotation with the release of JDK9, necessitating this breaking change.
+* BREAKING CHANGE: _lombok config_ key `lombok.anyConstructor.suppressConstructorProperties` is now deprecated and defaults to `true`, that is, by default lombok no longer automatically generates `@ConstructorProperties` annotations. New config key `lombok.anyConstructor.addConstructorProperties` now exists; set it to `code` true if you want the old behaviour. Oracle more or less broke this annotation with the release of JDK9, necessitating this breaking change.
* DEVELOPMENT: Compiling lombok on JDK1.9 is now possible.
* BUGFIX: The generated hashCode would break the contract if `callSuper=true,of={}`. [Issue #1505](https://github.com/rzwitserloot/lombok/issues/1505)
* BUGFIX: `delombok` no longer prints the synthetic outer-class parameter. [Issue #1521](https://github.com/rzwitserloot/lombok/issues/1521)