aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorJacob Middag <jacob@gaddim.nl>2019-08-08 21:14:58 +0200
committerJacob Middag <jacob@gaddim.nl>2019-08-08 21:14:58 +0200
commit819d1956761f6077fdf897e77c4f6ac47e92104e (patch)
tree9dcde5edd2c5fc7d17c83b97ad46fda28c5964d1 /doc/changelog.markdown
parentff1c01d9e9e66d898c30939b497490b04fe6163c (diff)
downloadlombok-819d1956761f6077fdf897e77c4f6ac47e92104e.tar.gz
lombok-819d1956761f6077fdf897e77c4f6ac47e92104e.tar.bz2
lombok-819d1956761f6077fdf897e77c4f6ac47e92104e.zip
[Fixes #2189] Clone type to correctly set annotated type on constructor, getter and setter.
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 07b1b0aa..13fc18d6 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -12,6 +12,7 @@ Lombok Changelog
* BUGFIX: Javac would generate the wrong equals and hashCode if a type-use annotation was put on an array type field [Issue #2165](https://github.com/rzwitserloot/lombok/issues/2165)
* BUGFIX: Eclipse 2019-06 + JDK-12 compatibility + an `@Singular` builder entry would produce a cascade of error dialogs. [Issue #2169](https://github.com/rzwitserloot/lombok/issues/2169)
* BUGFIX: Javac would throw a NullPointerException if the package-info.java did not contain a package declaration. [Issue #2184](https://github.com/rzwitserloot/lombok/issues/2184)
+* BUGFIX: Javac sets incorrect annotated type on constructor, getter and setter. [Issue #2189](https://github.com/rzwitserloot/lombok/issues/2189)
* IMPROBABLE BREAKING CHANGE: Stricter validation of configuration keys dealing with identifiers and types (`lombok.log.fieldName`, `lombok.fieldNameConstants.innerTypeName`, `lombok.copyableAnnotations`).
* IMPROBABLE BREAKING CHANGE: The fields generated inside builders for fields with defaults (with `@Builder` on a class with fields marked `@Default`) now have `$value` as the name; direct manipulation of these fields is not advised because there is an associated `$set` variable that also needs to be taken into account. [Issue #2115](https://github.com/rzwitserloot/lombok/issues/2115)