diff options
author | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2022-01-16 03:42:11 +0100 |
---|---|---|
committer | Reinier Zwitserloot <r.zwitserloot@projectlombok.org> | 2022-01-16 03:42:11 +0100 |
commit | 97f7d98cdbc044223d8198a20890d25c34721747 (patch) | |
tree | 1ccbdaa2e26614e74199e59a27781a999b4de621 | |
parent | ee85c0b2bcc376e81380c9c01c3556feaadca69e (diff) | |
download | lombok-97f7d98cdbc044223d8198a20890d25c34721747.tar.gz lombok-97f7d98cdbc044223d8198a20890d25c34721747.tar.bz2 lombok-97f7d98cdbc044223d8198a20890d25c34721747.zip |
[log4j] one more log4j update. Again, lombok is not and never was vulnerable, just ensuring your vulnerability scanners dont give off false positives.
-rw-r--r-- | buildScripts/ivy.xml | 2 | ||||
-rw-r--r-- | doc/changelog.markdown | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/buildScripts/ivy.xml b/buildScripts/ivy.xml index 736f3eb1..d12f8867 100644 --- a/buildScripts/ivy.xml +++ b/buildScripts/ivy.xml @@ -45,7 +45,7 @@ <!-- test deps --> <dependency org="junit" name="junit" rev="4.8.2" conf="test->default; sources" /> <dependency org="log4j" name="log4j" rev="1.2.17" conf="test->default; sources" /> - <dependency org="org.apache.logging.log4j" name="log4j-api" rev="2.17.0" conf="test->default; sources" /> + <dependency org="org.apache.logging.log4j" name="log4j-api" rev="2.17.1" conf="test->default; sources" /> <dependency org="commons-logging" name="commons-logging" rev="1.2" conf="test->default; sources" /> <dependency org="org.slf4j" name="slf4j-api" rev="1.8.0-beta2" conf="test->default; sources" /> <dependency org="org.slf4j" name="slf4j-ext" rev="1.8.0-beta2" conf="test->default; sources" /> diff --git a/doc/changelog.markdown b/doc/changelog.markdown index c94d90be..0119f8b2 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -7,7 +7,7 @@ Lombok Changelog * FEATURE: Turning a field named `uShape` into a getter is tricky: `getUShape` or `getuShape`? The community is split on which style to use. Lombok does `getUShape`, but if you prefer the `getuShape` style, add to `lombok.config`: `lombok.accessors.capitalization = beanspec`. [Issue #2693](https://github.com/projectlombok/lombok/issues/2693) [Pull Request #2996](https://github.com/projectlombok/lombok/pull/2996). Thanks __@YonathanSherwin__! * BUGFIX: Various save actions and refactor scripts in eclipse work better. [Issue #2995](https://github.com/projectlombok/lombok/issues/2995) [Issue #1309](https://github.com/projectlombok/lombok/issues/1309) [Issue #2985](https://github.com/projectlombok/lombok/issues/2985) [Issue #2509](https://github.com/projectlombok/lombok/issues/2509) * BUGFIX: Eclipse projects using the jasperreports-plugin will now compile [Issue #1036](https://github.com/projectlombok/lombok/issues/1036) -* SECURITY: A widely reported security issue with log4j2 ([CVE-2021-44228](https://www.randori.com/blog/cve-2021-44228/)) has absolutely no effect on either lombok itself nor does usage of lombok on its own, or even the usage of lombok's `@Log4j2`, cause any issues whatsoever: You have to ship your own log4j2 dependency in your app - update that to 2.17 or otherwise mitigate this issue (see the CVE page). To avoid unneccessary warnings from dependency checkers, our dep on log4j2, which is used solely for testing, isn't shipped by us, and cannot be exploited in any way, has been updated to 2.17.0. [Issue #3063](https://github.com/projectlombok/lombok/issues/3063) +* SECURITY: A widely reported security issue with log4j2 ([CVE-2021-44228](https://www.randori.com/blog/cve-2021-44228/)) has absolutely no effect on either lombok itself nor does usage of lombok on its own, or even the usage of lombok's `@Log4j2`, cause any issues whatsoever: You have to ship your own log4j2 dependency in your app - update that to 2.17 or otherwise mitigate this issue (see the CVE page). To avoid unneccessary warnings from dependency checkers, our dep on log4j2, which is used solely for testing, isn't shipped by us, and cannot be exploited in any way, has been updated to 2.17.1. [Issue #3063](https://github.com/projectlombok/lombok/issues/3063) ### v1.18.22 (October 6th, 2021) * PLATFORM: JDK17 support added. [Issue #2898](https://github.com/projectlombok/lombok/issues/2898). |