Skip to content

Commit 267475b

Browse files
authored
Merge pull request #232 from ranma2913/main
Upgrade Log4J again v2.17.0 related to CVE-2021-45046 & CVE-2021-44228 & CVE-2021-45105
2 parents 01cc589 + d265b28 commit 267475b

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Splunk Logging for Java Changelog
22

3+
## Version 1.11.3
4+
5+
### Critical Security Update
6+
Upgrade Log4J again v2.17.0 related to CVE-2021-45046 & CVE-2021-44228
7+
38
## Version 1.11.2
49

510
### Critical Security Update

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Splunk Logging for Java
22

3-
#### Version 1.11.0
3+
#### Version 1.11.3
44

55
Splunk logging for Java enables you to log events to HTTP Event Collector or to a TCP input on a Splunk Enterprise instance within your Java applications. You can use three major Java logging frameworks: [Logback](http://logback.qos.ch), [Log4j 2](http://logging.apache.org/log4j/2.x/), and [java.util.logging](https://docs.oracle.com/javase/7/docs/api/java/util/logging/package-summary.html). Splunk logging for Java is also enabled for [Simple Logging Facade for Java (SLF4J)](http://www.slf4j.org).
66

pom.xml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,23 @@
55

66
<groupId>com.splunk.logging</groupId>
77
<artifactId>splunk-library-javalogging</artifactId>
8-
<version>1.11.2</version>
8+
<version>1.11.3</version>
99
<packaging>jar</packaging>
1010

1111
<name>Splunk Logging for Java</name>
12-
<url>http://dev.splunk.com/goto/sdk-slj</url>
12+
<url>https://dev.splunk.com/goto/sdk-slj</url>
1313

14-
<description>Library for structured, semantic logging of Common Information Model compliant events, meant for use
15-
with SLF4J.
14+
<description>
15+
Library for structured, semantic logging of Common Information Model compliant events, meant for use with SLF4J.
1616
</description>
1717

1818
<properties>
1919
<maven.resources.overwrite>true</maven.resources.overwrite>
2020
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
21+
22+
<!-- CVE-2021-44228: https://nvd.nist.gov/vuln/detail/CVE-2021-44228 -->
23+
<!-- CVE-2021-45046: https://nvd.nist.gov/vuln/detail/CVE-2021-45046 -->
24+
<log4j2.version>2.17.0</log4j2.version>
2125
</properties>
2226
<profiles>
2327
<profile>
@@ -214,14 +218,14 @@
214218
<groupId>org.apache.logging.log4j</groupId>
215219
<artifactId>log4j-api</artifactId>
216220
<scope>provided</scope>
217-
<version>2.16.0</version>
221+
<version>${log4j2.version}</version>
218222
</dependency>
219223

220224
<dependency>
221225
<groupId>org.apache.logging.log4j</groupId>
222226
<artifactId>log4j-core</artifactId>
223227
<scope>provided</scope>
224-
<version>2.16.0</version>
228+
<version>${log4j2.version}</version>
225229
</dependency>
226230

227231
<dependency>

0 commit comments

Comments
 (0)