Skip to content

Commit

Permalink
Upgrade dependencies to fix some vulnerabilites
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Oct 14, 2024
1 parent 8a82f30 commit 598d722
Showing 1 changed file with 19 additions and 10 deletions.
29 changes: 19 additions & 10 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ object Dependencies {
val reactor = "1.0.39" // Version override
val snappy = "1.1.10.4" // Version override
val nimbusJwt = "9.37.2" // Version override
val jackson = "2.15.0" // Version override
val protobuf = "3.25.5" // Version override

// Snowplow
val streams = "0.7.0"
Expand All @@ -51,16 +53,19 @@ object Dependencies {
val doobie = "org.tpolecat" %% "doobie-core" % V.doobie

// java
val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j
val azureIdentity = "com.azure" % "azure-identity" % V.azureSdk
val sentry = "io.sentry" % "sentry" % V.sentry
val snowflakeIngest = "net.snowflake" % "snowflake-ingest-sdk" % V.snowflake
val jaxb = "javax.xml.bind" % "jaxb-api" % V.jaxb
val stsSdk2 = "software.amazon.awssdk" % "sts" % V.awsSdk2
val nettyCodecHttp = "io.netty" % "netty-codec-http2" % V.netty
val reactorNetty = "io.projectreactor.netty" % "reactor-netty-http" % V.reactor
val snappyJava = "org.xerial.snappy" % "snappy-java" % V.snappy
val nimbusJoseJwt = "com.nimbusds" % "nimbus-jose-jwt" % V.nimbusJwt
val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j
val azureIdentity = "com.azure" % "azure-identity" % V.azureSdk
val sentry = "io.sentry" % "sentry" % V.sentry
val snowflakeIngest = "net.snowflake" % "snowflake-ingest-sdk" % V.snowflake
val jaxb = "javax.xml.bind" % "jaxb-api" % V.jaxb
val stsSdk2 = "software.amazon.awssdk" % "sts" % V.awsSdk2
val nettyCodecHttp = "io.netty" % "netty-codec-http2" % V.netty
val reactorNetty = "io.projectreactor.netty" % "reactor-netty-http" % V.reactor
val snappyJava = "org.xerial.snappy" % "snappy-java" % V.snappy
val nimbusJoseJwt = "com.nimbusds" % "nimbus-jose-jwt" % V.nimbusJwt
val jacksonCore = "com.fasterxml.jackson.core" % "jackson-core" % V.jackson
val protobufJava = "com.google.protobuf" % "protobuf-java" % V.protobuf
val protobufUtil = "com.google.protobuf" % "protobuf-java-util" % V.protobuf

val streamsCore = "com.snowplowanalytics" %% "streams-core" % V.streams
val kinesis = "com.snowplowanalytics" %% "kinesis" % V.streams
Expand All @@ -86,6 +91,7 @@ object Dependencies {
snowflakeIngest,
doobie,
circeGenericExtra,
jacksonCore,
specs2,
catsEffectSpecs2,
catsEffectTestkit,
Expand All @@ -107,6 +113,8 @@ object Dependencies {

val pubsubDependencies = Seq(
pubsub,
protobufJava,
protobufUtil,
jaxb % Runtime,
slf4j % Runtime,
specs2,
Expand All @@ -115,6 +123,7 @@ object Dependencies {

val kinesisDependencies = Seq(
kinesis,
protobufJava,
jaxb % Runtime,
slf4j % Runtime,
stsSdk2 % Runtime,
Expand Down

0 comments on commit 598d722

Please sign in to comment.