aboutsummaryrefslogtreecommitdiff
path: root/doc/changelog.markdown
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-09-29 15:25:17 +0200
committerReinier Zwitserloot <r.zwitserloot@projectlombok.org>2021-09-29 15:25:17 +0200
commit2c5754e32a07a70ccec705ced623dce7ce6eb1a0 (patch)
tree8ac8254920e0176d3fec628329c475dcfedeebea /doc/changelog.markdown
parent891ae75962bc15d081eea2dbfd99fe14b70f8b20 (diff)
downloadlombok-2c5754e32a07a70ccec705ced623dce7ce6eb1a0.tar.gz
lombok-2c5754e32a07a70ccec705ced623dce7ce6eb1a0.tar.bz2
lombok-2c5754e32a07a70ccec705ced623dce7ce6eb1a0.zip
[doc] Added some docs on how to debug lombok for various platforms, also updated changelog with recent changes
Diffstat (limited to 'doc/changelog.markdown')
-rw-r--r--doc/changelog.markdown3
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 9f240033..83e965b5 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -5,6 +5,9 @@ Lombok Changelog
* PLATFORM: JDK17 support added. [Issue #2898](https://github.com/projectlombok/lombok/issues/2898).
* FEATURE: Added the `@StandardException` feature. [Pull Request #2702](https://github.com/projectlombok/lombok/pull/2702).
* IMPROBABLE BREAKING CHANGE: If the underlying compiler and `--release` / `--source` option is 10 or higher, lombok's `val` is now replaced by `final var`. That means compound declarations such as `val x = 10, y = 12;` now fail (lombok's old `val` implementation supported it, javac's `var` does not), but IDE support in particular is more reliable. We decided it was worth the tradeoff.
+* BUGFIX: Syntax highlighting in VSCode now works reliably when using lombok. [Issue #2950](https://github.com/projectlombok/lombok/issues/2950).
+* BUGFIX: Eclipse's _organize imports_ feature would sometimes remove your `lombok.val` import. [Issue #2972](https://github.com/projectlombok/lombok/issues/2972).
+
### v1.18.20 (April 2nd, 2021)
* PLATFORM: JDK16 support added. [Issue #2681](https://github.com/projectlombok/lombok/issues/2681).