Skip to content

Commit 15be5e8

Browse files
authored
fix: vulnerability fix (#192)
* fix: vulnerability fix * fix: vulnerability fix
1 parent ae8ce1a commit 15be5e8

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
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+
## [5.0.8] - 2024-02-19
11+
12+
- Fixes vulnerabilities in dependencies
13+
1014
## [5.0.7] - 2024-01-25
1115

1216
- Fixes the issue where passwords were inadvertently logged in the logs.

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 = "5.0.7"
5+
version = "5.0.8"
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.1'
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.14.2'
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.14.2'
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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.1/postgresql-42.7.1.jar",
6+
"name": "PostgreSQL JDBC Driver 42.7.1",
7+
"src": "https://repo1.maven.org/maven2/org/postgresql/postgresql/42.7.1/postgresql-42.7.1-sources.jar"
88
},
99
{
1010
"jar": "https://repo1.maven.org/maven2/com/zaxxer/HikariCP/3.4.1/HikariCP-3.4.1.jar",

0 commit comments

Comments
 (0)