aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRoel Spilker <Roels@topdesk.com>2019-07-08 22:00:03 +0200
committerRoel Spilker <Roels@topdesk.com>2019-07-08 23:17:38 +0200
commit2ccd3f5f5d089f5525f6b219df35a1200596f0a8 (patch)
tree76f11afe3648b22520a65a115058dd7fd4fe61fe /doc
parent11065b564f3fc1cee2c540a33b7ed1b3774816e2 (diff)
downloadlombok-2ccd3f5f5d089f5525f6b219df35a1200596f0a8.tar.gz
lombok-2ccd3f5f5d089f5525f6b219df35a1200596f0a8.tar.bz2
lombok-2ccd3f5f5d089f5525f6b219df35a1200596f0a8.zip
Fixes #2165: Generated equals fails on annotated array type
Diffstat (limited to 'doc')
-rw-r--r--doc/changelog.markdown1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index e9564eb0..f7c62c2c 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -5,6 +5,7 @@ Lombok Changelog
* ENHANCEMENT: Thanks to Mark Haynes, the `staticConstructor` will now also be generated if a (private) constructor already exists. [Issue #2100](https://github.com/rzwitserloot/lombok/issues/2100)
* ENHANCEMENT: `val` is now capable of decoding the type of convoluted expressions (particularly if the right hand side involves lambdas and conditional (ternary) expressions). [Pull Request #2109](https://github.com/rzwitserloot/lombok/pull/2109) with thanks to Alexander Bulgakov.
* BUGFIX: Delombok would turn something like `List<byte[]>...` in a method parameter to `List<byte...>...` [Issue #2140](https://github.com/rzwitserloot/lombok/issues/2140)
+* 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)
### v1.18.8 (May 7th, 2019)
* FEATURE: You can now configure `@FieldNameConstants` to `CONSTANT_CASE` the generated constants, using a `lombok.config` option. See the [FieldNameConstants documentation](https://projectlombok.org/features/experimental/FieldNameConstants). [Issue #2092](https://github.com/rzwitserloot/lombok/issues/2092).