From 2c5754e32a07a70ccec705ced623dce7ce6eb1a0 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Wed, 29 Sep 2021 15:25:17 +0200 Subject: [doc] Added some docs on how to debug lombok for various platforms, also updated changelog with recent changes --- doc/changelog.markdown | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc/changelog.markdown') 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). -- cgit