Skip to content

Commit

Permalink
Upgrade the postgres lib to prevent CVE-2024-1597
Browse files Browse the repository at this point in the history
  • Loading branch information
bjpirt committed Mar 1, 2024
1 parent 2b86a87 commit edbbce9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ext {
revGuava = '30.0-jre'
revHamcrestAllMatchers = '1.8'
revHealth = '1.1.4'
revPostgres = '42.7.2'
revProtoBuf = '3.21.12'
revJakartaAnnotation = '2.1.1'
revJAXB = '4.0.1'
Expand Down
2 changes: 1 addition & 1 deletion postgres-external-storage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ dependencies {
compileOnly 'org.springframework.boot:spring-boot-starter'
compileOnly 'org.springframework.boot:spring-boot-starter-web'

implementation 'org.postgresql:postgresql'
implementation "org.postgresql:postgresql:${revPostgres}"
implementation 'org.springframework.boot:spring-boot-starter-jdbc'
implementation 'org.flywaydb:flyway-core'
implementation "org.springdoc:springdoc-openapi-starter-webmvc-ui:${revSpringDoc}"
Expand Down
2 changes: 1 addition & 1 deletion postgres-persistence/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-core"

implementation "org.apache.commons:commons-lang3"
implementation "org.postgresql:postgresql:42.3.8"
implementation "org.postgresql:postgresql:${revPostgres}"
implementation "org.springframework.boot:spring-boot-starter-jdbc"
implementation "org.flywaydb:flyway-core"

Expand Down
1 change: 1 addition & 0 deletions server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-log4j2'
implementation 'org.apache.logging.log4j:log4j-web'
implementation "redis.clients:jedis:${revJedis}"
implementation "org.postgresql:postgresql:${revPostgres}"

implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation ("io.orkes.queues:orkes-conductor-queues:${revOrkesQueues}") {
Expand Down

0 comments on commit edbbce9

Please sign in to comment.