Skip to content

Commit 2b5a967

Browse files
committed
fix: vulnerability
1 parent 913be98 commit 2b5a967

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [1.23.1] - 2024-04-03
11+
12+
- Fixes vulnerability in dependencies
13+
1014
## [1.23.0] - 2023-04-05
1115

1216
- Adds support for plugin inteface version 2.23

build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "1.23.0"
5+
version = "1.23.1"
66

77
repositories {
88
mavenCentral()
@@ -17,13 +17,13 @@ dependencies {
1717
implementation group: 'org.mongodb', name: 'mongodb-driver-sync', version: '4.0.0'
1818

1919
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
20-
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.14.0'
20+
compileOnly group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'
2121

2222
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
23-
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.0'
23+
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
2424

2525
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
26-
compileOnly group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
26+
compileOnly group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
2727

2828
// https://mvnrepository.com/artifact/com.google.code.gson/gson
2929
compileOnly group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
@@ -37,10 +37,10 @@ dependencies {
3737
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.1.0'
3838

3939
// https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core
40-
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.1'
40+
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.18'
4141

4242
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
43-
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
43+
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
4444

4545
// https://mvnrepository.com/artifact/com.google.code.gson/gson
4646
testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.3.1'

0 commit comments

Comments
 (0)