aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-09 14:13:33 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2019-05-09 14:13:39 +0200
commit1a5363cc5b3fe24eb259b082e94ced9fc37fa326 (patch)
treed04f92c02826d200d3d8f6e4ed51b4d0bfaa29fc
parentd3ae4d994880a1a087108275e101ab4fbb43f071 (diff)
downloadlombok-1a5363cc5b3fe24eb259b082e94ced9fc37fa326.tar.gz
lombok-1a5363cc5b3fe24eb259b082e94ced9fc37fa326.tar.bz2
lombok-1a5363cc5b3fe24eb259b082e94ced9fc37fa326.zip
[trivial] updating changelog retroactively to list an improbable breaking change about the generated parameter is null exception
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 561db859..09a33367 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -15,6 +15,7 @@ Lombok Changelog
* BUGFIX: `@SuperBuilder` together with `@Singular` on non-lists would produce an erroneous `emptyList` call. [Issue #2104](https://github.com/rzwitserloot/lombok/issues/2104).
* IMPROBABLE BREAKING CHANGE: For fields and parameters marked non-null, if the method body starts with an assert statement to ensure the value isn't null, no code to throw an exception will be generated.
* IMPROBABLE BREAKING CHANGE: When using `ecj` to compile java code with `@Builder` or `@SuperBuilder` in it, and a builder setter method was generated for a `@NonNull`-marked method, no explicit null check would be present. However, running `javac` on the exact same file _would_ produce the null check. Now ecj also produces this null check. [Issue #2120](https://github.com/rzwitserloot/lombok/issues/2120).
+* IMPROBABLE BREAKING CHANGE: We slightly changed the message of the exception lombok generates to handle `@NonNull` marked parameters. [Issue #2122](https://github.com/rzwitserloot/lombok/issues/2122).
### v1.18.6 (February 12th, 2019)
* FEATURE: Javadoc on fields will now also be copied to the Builders' setters. Thanks for the contribution, Emil Lundberg. [Issue #2008](https://github.com/rzwitserloot/lombok/issues/2008)