aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorRoel Spilker <r.spilker@gmail.com>2018-06-04 22:32:44 +0200
committerRoel Spilker <r.spilker@gmail.com>2018-06-04 22:40:24 +0200
commitfb5a5530148614e8d0c423077d9043e2d58f453b (patch)
treed008d4eb56aefc817f4c96c3fd4ab08c5a463e6f /doc/changelog.markdown
parent370705e7e154309a6678b83322e243b7a32e2575 (diff)
downloadlombok-fb5a5530148614e8d0c423077d9043e2d58f453b.tar.gz
lombok-fb5a5530148614e8d0c423077d9043e2d58f453b.tar.bz2
lombok-fb5a5530148614e8d0c423077d9043e2d58f453b.zip
Do not generate a private no-args constructor if:
- The class has a parent class - There is an explicit XxxArgsConstructor annotation that would generate a no-args constructor Fixes #1703, fixes #1704, fixes #1712
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 e54ab2e4..771ccc55 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -3,6 +3,7 @@ Lombok Changelog
### v1.16.23 "Edgy Guinea Pig"
* v1.16.22 is the latest stable release of Project Lombok.
+* BUGFIX: Do not generate a private no-args constructor if that breaks the code. [Issue #1703](https://github.com/rzwitserloot/lombok/issues/1703), [Issue #1704](https://github.com/rzwitserloot/lombok/issues/1704), [Issue #1712](https://github.com/rzwitserloot/lombok/issues/1712)
* BUGFIX: Using boolean parameters in lombok annotations would fail. [Issue #1709](https://github.com/rzwitserloot/lombok/issues/1709)
* BUGFIX: Delombok would give an error message. [Issue #1705](https://github.com/rzwitserloot/lombok/issues/1705)
* FEATURE: Google's [Flogger (a.k.a. FluentLogger)](https://google.github.io/flogger/) is now available via `@Flogger`. [Issue #1697](https://github.com/rzwitserloot/lombok/issues/1697)