Skip to content

Commit

Permalink
Revert "Upgrade the postgres lib to prevent CVE-2024-1597 (conductor-…
Browse files Browse the repository at this point in the history
…oss#94)"

This reverts commit 1f99f23.
  • Loading branch information
matiasbur committed May 2, 2024
1 parent 1f99f23 commit 3bd39c4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,7 @@ ext {
revGrpc = '1.57.2'
revGuava = '30.0-jre'
revHamcrestAllMatchers = '1.8'
revHealth = '1.1.4'
revPostgres = '42.7.2'
revHealth = '1.1.+'
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:${revPostgres}"
implementation 'org.postgresql:postgresql'
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:${revPostgres}"
implementation "org.postgresql:postgresql:42.3.8"
implementation "org.springframework.boot:spring-boot-starter-jdbc"
implementation "org.flywaydb:flyway-core"

Expand Down
1 change: 0 additions & 1 deletion server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ 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'

Expand Down

0 comments on commit 3bd39c4

Please sign in to comment.