Skip to content

Commit eb3a9d0

Browse files
Merge pull request #253 from splunk/release-1.11.5
Dependencies version changes
2 parents 9ba8da5 + db14a52 commit eb3a9d0

File tree

3 files changed

+25
-11
lines changed

3 files changed

+25
-11
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
11
# Splunk Logging for Java Changelog
22

3+
## Version 1.11.5
4+
5+
### Critical Security Update
6+
* Bump Log4J version to latest 2.17.2 @see [CVE-2021-44832 Log4j<2.17.1](https://nvd.nist.gov/vuln/detail/CVE-2021-44832)
7+
* Bump Logback version to latest 1.2.11 @see [CVE-2021-42550 Logback<1.2.8](https://nvd.nist.gov/vuln/detail/CVE-2021-42550)
8+
### Minor Changes
9+
* Bump org.slf4j:slf4j-api version to latest [1.7.36](https://github.com/qos-ch/slf4j/releases/tag/v_1.7.36)
10+
* Bump com.squareup.okhttp3:okhttp to latest [4.9.3](https://square.github.io/okhttp/changelogs/changelog_4x/#version-493)
11+
* Bump com.google.code.gson:gson to latest [2.9.0](https://github.com/google/gson/releases/tag/gson-parent-2.9.0)
12+
313
## Version 1.11.4
414

515
### Critical Security Update
6-
Update Logback to version 1.2.9 per CVE-2021-42550.
16+
* Update Logback to version 1.2.9 per CVE-2021-42550.
717

818
## Version 1.11.3
919

1020
### Critical Security Update
11-
Upgrade Log4J again v2.17.0 related to CVE-2021-45046 & CVE-2021-44228
21+
* Upgrade Log4J again v2.17.0 related to CVE-2021-45046 & CVE-2021-44228
1222

1323
## Version 1.11.2
1424

README.md

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

3-
#### Version 1.11.4
3+
#### Version 1.11.5
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

@@ -33,9 +33,9 @@ You'll need Java version 8 or higher, from [OpenJDK](https://openjdk.java.net) o
3333
#### Logging frameworks
3434

3535
If you're using the Log4j 2, Simple Logging Facade for Java (SLF4J), or Logback logging frameworks in conjunction with Splunk logging for Java there are additional compatibility requirements. For more about logging framework requirements, see [Enable logging to HEC](https://dev.splunk.com/enterprise/docs/devtools/java/logging-java/howtouseloggingjava/enableloghttpjava/) and [Enable logging to TCP inputs](https://dev.splunk.com/enterprise/docs/devtools/java/logging-java/howtouseloggingjava/enablelogtcpjava). These frameworks require:
36-
* Log4j version 2.17.0
37-
* SLF4J version 1.7.30
38-
* Logback version 1.2.9
36+
* Log4j version 2.17.2
37+
* SLF4J version 1.7.36
38+
* Logback version 1.2.11
3939

4040
## Documentation and resources
4141

pom.xml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@
2323

2424
<!-- CVE-2021-44228: https://nvd.nist.gov/vuln/detail/CVE-2021-44228 -->
2525
<!-- CVE-2021-45046: https://nvd.nist.gov/vuln/detail/CVE-2021-45046 -->
26-
<log4j2.version>2.17.0</log4j2.version>
26+
<!-- CVE-2021-45105 (Log4j<2.17.0): https://nvd.nist.gov/vuln/detail/CVE-2021-45105 -->
27+
<!-- CVE-2021-44832 (Log4j<2.17.1): https://nvd.nist.gov/vuln/detail/CVE-2021-44832 -->
28+
<log4j2.version>2.17.2</log4j2.version>
2729

2830
<!-- CVE-2021-42550: https://nvd.nist.gov/vuln/detail/CVE-2021-42550 -->
29-
<logback.version>1.2.9</logback.version>
31+
<logback.version>1.2.11</logback.version>
3032
</properties>
3133
<profiles>
3234
<profile>
@@ -191,7 +193,7 @@
191193
<dependency>
192194
<groupId>org.slf4j</groupId>
193195
<artifactId>slf4j-api</artifactId>
194-
<version>1.7.30</version>
196+
<version>1.7.36</version>
195197
<scope>test</scope>
196198
</dependency>
197199
<dependency>
@@ -243,7 +245,7 @@
243245
<dependency>
244246
<groupId>com.google.code.gson</groupId>
245247
<artifactId>gson</artifactId>
246-
<version>2.8.9</version>
248+
<version>2.9.0</version>
247249
</dependency>
248250

249251
<dependency>
@@ -291,7 +293,9 @@
291293
</goals>
292294
<configuration>
293295
<source>8</source>
294-
<additionalOptions>-Xdoclint:syntax</additionalOptions>
296+
<additionalOptions>
297+
<additionalOption>-Xdoclint:syntax</additionalOption>
298+
</additionalOptions>
295299
</configuration>
296300
</execution>
297301
</executions>

0 commit comments

Comments
 (0)