Skip to content

Commit

Permalink
Bump postgres and other dependencies (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
geir-waagboe authored Feb 28, 2024
1 parent eb7325e commit 0046934
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,22 +8,22 @@ version = "1.0-SNAPSHOT"
object Versions {
const val confluent = "7.5.1"
const val flyway = "9.22.3"
const val hikari = "5.0.1"
const val hikari = "5.1.0"
const val isdialogmoteSchema = "1.0.5"
const val jacksonDataType = "2.15.3"
const val jedis = "5.0.1"
const val json = "20231013"
const val kafka = "3.6.1"
const val kafkaEmbedded = "3.2.3"
const val kluent = "1.73"
const val ktor = "2.3.7"
const val ktor = "2.3.8"
const val logback = "1.4.14"
const val logstashEncoder = "7.4"
const val mockk = "1.13.8"
const val micrometerRegistry = "1.12.0"
const val micrometerRegistry = "1.12.2"
const val nimbusjosejwt = "9.37.2"
val postgresEmbedded = if (Os.isFamily(Os.FAMILY_MAC)) "1.0.0" else "0.13.4"
const val postgres = "42.6.0"
const val postgres = "42.7.2"
const val redisEmbedded = "0.7.3"
const val spek = "2.0.19"
}
Expand Down Expand Up @@ -105,14 +105,20 @@ dependencies {
require("1.11.3")
}
}
implementation("org.apache.commons:commons-compress") {
because("org.apache.commons:commons-compress:1.22 -> https://www.cve.org/CVERecord?id=CVE-2012-2098")
version {
require("1.26.0")
}
}
}
implementation("no.nav.syfo.dialogmote.avro:isdialogmote-schema:${Versions.isdialogmoteSchema}")
testImplementation("no.nav:kafka-embedded-env:${Versions.kafkaEmbedded}", excludeLog4j)
constraints {
implementation("org.eclipse.jetty.http2:http2-server") {
because("no.nav:kafka-embedded-env:${Versions.kafkaEmbedded} -> https://advisory.checkmarx.net/advisory/vulnerability/CVE-2022-2048/")
version {
require("9.4.48.v20220622")
require("9.4.54.v20240208")
}
}
}
Expand Down

0 comments on commit 0046934

Please sign in to comment.