From 36c4a93a6bed13c2c846706e4b2c1df07e53b171 Mon Sep 17 00:00:00 2001 From: Benjamin Benoist Date: Fri, 18 Feb 2022 17:55:56 +0100 Subject: [PATCH] Set protobuf-java transitive dependency to 3.19.4 (close #561) --- build.sbt | 1 + project/Dependencies.scala | 8 +++++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index 56fde28a5..8cec0deab 100644 --- a/build.sbt +++ b/build.sbt @@ -64,6 +64,7 @@ lazy val common = project Dependencies.Libraries.sprayJson, Dependencies.Libraries.nettyAll, Dependencies.Libraries.nettyCodec, + Dependencies.Libraries.protobuf, Dependencies.Libraries.specs2, Dependencies.Libraries.specs2Cats, Dependencies.Libraries.specs2Scalacheck, diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 17c0756a2..6b1984570 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -46,6 +46,7 @@ object Dependencies { val thrift = "0.15.0" // override transitive dependency to mitigate security vulnerabilities val sprayJson = "1.3.6" // override transitive dependency to mitigate security vulnerabilities val netty = "4.1.68.Final" // override transitive dependency to mitigate security vulnerabilities + val protobuf = "3.19.4" // override transitive dependency to mitigate security vulnerabilities val refererParser = "1.1.0" val maxmindIplookups = "0.7.1" @@ -139,10 +140,11 @@ object Dependencies { val iabClient = "com.snowplowanalytics" % "iab-spiders-and-robots-client" % V.iabClient val thrift = "org.apache.thrift" % "libthrift" % V.thrift val sprayJson = "io.spray" %% "spray-json" % V.sprayJson - val nettyAll = "io.netty" % "netty-all" % V.netty - val nettyCodec = "io.netty" % "netty-codec" % V.netty - val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j + val nettyAll = "io.netty" % "netty-all" % V.netty + val nettyCodec = "io.netty" % "netty-codec" % V.netty + val slf4j = "org.slf4j" % "slf4j-simple" % V.slf4j val sentry = "io.sentry" % "sentry" % V.sentry + val protobuf = "com.google.protobuf" % "protobuf-java" % V.protobuf val specs2 = "org.specs2" %% "specs2-core" % V.specs2 % Test val specs2Cats = "org.specs2" %% "specs2-cats" % V.specs2 % Test