Skip to content

Commit 7f40c71

Browse files
authored
fix: vulnerability fix (backport to 5.0) (#194)
* fix: vulnerability fix * fix: vulnerability fix * fix: deps
1 parent b6b1b55 commit 7f40c71

File tree

3 files changed

+20
-16
lines changed

3 files changed

+20
-16
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
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+
## [3.0.1] - 2024-02-20
11+
12+
- Fixes vulnerabilities in dependencies
13+
1014
## [3.0.0] - 2023-04-05
1115

1216
- Adds `use_static_key` `BOOLEAN` column into `session_info`

build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id 'java-library'
33
}
44

5-
version = "3.0.0"
5+
version = "3.0.1"
66

77
repositories {
88
mavenCentral()
@@ -17,16 +17,16 @@ dependencies {
1717
implementation group: 'com.zaxxer', name: 'HikariCP', version: '3.4.1'
1818

1919
// https://mvnrepository.com/artifact/org.postgresql/postgresql
20-
implementation group: 'org.postgresql', name: 'postgresql', version: '42.2.10'
20+
implementation group: 'org.postgresql', name: 'postgresql', version: '42.7.2'
2121

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

2525
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
26-
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.0'
26+
compileOnly group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
2727

2828
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
29-
compileOnly group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
29+
compileOnly group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
3030

3131
// https://mvnrepository.com/artifact/com.google.code.findbugs/jsr305
3232
compileOnly group: 'com.google.code.findbugs', name: 'jsr305', version: '3.0.2'
@@ -43,21 +43,21 @@ dependencies {
4343
testImplementation group: 'org.mockito', name: 'mockito-core', version: '3.1.0'
4444

4545
// https://mvnrepository.com/artifact/org.apache.tomcat.embed/tomcat-embed-core
46-
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.1'
46+
testImplementation group: 'org.apache.tomcat.embed', name: 'tomcat-embed-core', version: '10.1.18'
4747

4848
// https://mvnrepository.com/artifact/ch.qos.logback/logback-classic
49-
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.3'
49+
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.4.14'
5050

5151
// https://mvnrepository.com/artifact/com.google.code.gson/gson
5252
testImplementation group: 'com.google.code.gson', name: 'gson', version: '2.3.1'
5353

5454
testImplementation 'com.tngtech.archunit:archunit-junit4:0.22.0'
5555

5656
// https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml
57-
testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.14.0'
57+
testImplementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-yaml', version: '2.16.1'
5858

5959
// https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core
60-
testImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.14.0'
60+
testImplementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.16.1'
6161
}
6262

6363
jar {

implementationDependencies.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
"_comment": "Contains list of implementation dependencies URL for this project",
33
"list": [
44
{
5-
"jar": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.10/postgresql-42.2.10.jar",
6-
"name": "PostgreSQL JDBC Driver 4.2",
7-
"src": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.2.10/postgresql-42.2.10-sources.jar"
5+
"jar": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.7.2/postgresql-42.7.2.jar",
6+
"name": "PostgreSQL JDBC Driver 42.7.2",
7+
"src": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.7.2/postgresql-42.7.2-sources.jar"
88
},
99
{
1010
"jar": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar",
1111
"name": "HikariCP 3.4.1",
1212
"src": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1-sources.jar"
1313
},
1414
{
15-
"jar": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar",
16-
"name": "SLF4j API 1.7.25",
17-
"src": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25-sources.jar"
15+
"jar": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7.jar",
16+
"name": "SLF4j API 2.0.7",
17+
"src": "https://repo1.maven.org/maven2/org/slf4j/slf4j-api/2.0.7/slf4j-api-2.0.7-sources.jar"
1818
}
1919
]
20-
}
20+
}

0 commit comments

Comments
 (0)