diff --git a/README.md b/README.md index 175d7def..2156f8f5 100755 --- a/README.md +++ b/README.md @@ -25,6 +25,10 @@ Java platform. Among other things, the SDK: For more information about the Java SDK and how to use it, please see the Javadocs at http://salesforce-marketingcloud.github.io/FuelSDK-Java/. +New Features in Version 1.6.0 +------------ +* This version upgrades the SDK to use Log4j version 2.3.2 which contains a fix for [Security Vulnerability CVE-2021-44832](https://logging.apache.org/log4j/2.x/security.html#CVE-2021-44832). The Log4j upgrade introduces breaking changes to the way Log4j is configured. This version of the SDK is using the Log4j2 bridge to help with version migration. If you override Log4j properties they might need to be converted to the new Log4j2 format. Please see this link for more details on migrating to Log4j v2: https://logging.apache.org/log4j/log4j-2.3.2/manual/migration.html. + New Features in Version 1.5.1 ------------ * Added Support for Java 11 diff --git a/pom.xml b/pom.xml index fedab43a..59eb19bd 100755 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.github.salesforce-marketingcloud fuelsdk - 1.5.1 + 1.6.0 Salesforce Marketing Cloud Java SDK Salesforce Marketing Cloud Java SDK https://github.com/salesforce-marketingcloud/FuelSDK-Java @@ -37,7 +37,7 @@ 2.3.1 4.12 2.6 - 1.2.17 + 2.3.2 2.3.0 2.3.0 1.5.0 @@ -133,8 +133,8 @@ ${lang.version} - log4j - log4j + org.apache.logging.log4j + log4j-1.2-api ${log4j.version} diff --git a/src/main/resources/log4j2.xml b/src/main/resources/log4j2.xml new file mode 100644 index 00000000..766e5081 --- /dev/null +++ b/src/main/resources/log4j2.xml @@ -0,0 +1,62 @@ + + + + + + + + + + + + + %d %-5p %c: %m%n + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + --> + + + + + + + + \ No newline at end of file