Skip to content

Commit

Permalink
update pgjdbc to fix SQL injection vuln
Browse files Browse the repository at this point in the history
  • Loading branch information
skovati committed Feb 21, 2024
1 parent 5ed6a26 commit 4d12705
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion db-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ task e2eTest(type: Test) {
}

dependencies {
testImplementation 'org.postgresql:postgresql:42.6.0'
testImplementation 'org.postgresql:postgresql:42.6.1'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.10.0'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.10.0'
testImplementation 'com.zaxxer:HikariCP:5.0.1'
Expand Down
2 changes: 1 addition & 1 deletion merlin-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dependencies {
implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'org.glassfish:javax.json:1.1.4'

implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.6.1'
implementation 'com.zaxxer:HikariCP:5.0.1'

testImplementation project(':examples:foo-missionmodel')
Expand Down
2 changes: 1 addition & 1 deletion merlin-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ dependencies {

implementation 'io.javalin:javalin:5.6.3'
implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.6.1'
implementation 'com.zaxxer:HikariCP:5.0.1'
}
2 changes: 1 addition & 1 deletion scheduler-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
implementation 'io.javalin:javalin:5.6.3'
implementation 'org.eclipse:yasson:3.0.3'

implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.6.1'
implementation 'com.zaxxer:HikariCP:5.0.1'

testImplementation project(':examples:foo-missionmodel')
Expand Down
2 changes: 1 addition & 1 deletion scheduler-worker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ dependencies {
implementation 'io.javalin:javalin:5.6.3'
implementation 'org.slf4j:slf4j-simple:2.0.7'
implementation 'org.eclipse:yasson:3.0.3'
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.6.1'
implementation 'com.zaxxer:HikariCP:5.0.1'

testImplementation project(':examples:foo-missionmodel')
Expand Down

0 comments on commit 4d12705

Please sign in to comment.