Skip to content

Commit

Permalink
Upgrade hadoop to avoid CVE-2022-25168 (#1049)
Browse files Browse the repository at this point in the history
* Upgrade hadoop to avoid CVE-2022-25168

* Further dep upgrades

* Remove comment, it no longer applies
  • Loading branch information
davidsloan committed Mar 19, 2024
1 parent 302a6e1 commit bc4647b
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@ object Dependencies {

object Versions {
// libraries versions
val scalatestVersion = "3.2.15" // Higher versions result in org.scala-lang.modules:scala-xml conflicts
val scalatestVersion = "3.2.17"
val scalaCheckPlusVersion = "3.1.0.0"
val scalatestPlusScalaCheckVersion = "3.1.0.0-RC2"
val scalaCheckVersion = "1.17.0"
val randomDataGeneratorVersion = "2.8"

val enumeratumVersion = "1.7.2"
val enumeratumVersion = "1.7.3"

val http4sVersion = "1.0.0-M32"
val http4sJdkVersion = "1.0.0-M1"
val avroVersion = "1.11.0"
val avro4sVersion = "4.1.0"
val avroVersion = "1.11.3"
val avro4sVersion = "4.1.1"

val catsVersion = "2.9.0"
val catsEffectVersion = "3.4.8"
val `cats-effect-testing` = "1.4.0"
val `cats-effect-testing` = "1.5.0"

val antlr4Version: String = "4.13.1"

Expand Down Expand Up @@ -89,9 +89,9 @@ object Dependencies {
val guavaVersion = "31.0.1-jre"
val javaxBindVersion = "2.3.1"

val jacksonVersion = "2.15.3"
val jacksonVersion = "2.16.2"
val json4sVersion = "4.0.6"
val mockitoScalaVersion = "1.17.12"
val mockitoScalaVersion = "1.17.30"
val snakeYamlVersion = "2.0"
val openCsvVersion = "5.7.1"

Expand Down Expand Up @@ -140,7 +140,7 @@ object Dependencies {
val gsonVersion = "2.10.1"

val nimbusJoseJwtVersion = "9.30.2"
val hadoopVersion = "3.3.2"
val hadoopVersion = "3.3.6"

trait ElasticVersions {
val elastic4sVersion, elasticSearchVersion, jnaVersion: String
Expand Down Expand Up @@ -181,9 +181,9 @@ object Dependencies {
val logback = "ch.qos.logback" % "logback-classic" % logbackVersion
lazy val logbackCore = "ch.qos.logback" % "logback-core" % logbackVersion
val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % scalaLoggingVersion
val log4jToSlf4j = "org.slf4j" % "log4j-over-slf4j" % "2.0.6"
val jclToSlf4j = "org.slf4j" % "jcl-over-slf4j" % "2.0.6"
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.6"
val log4jToSlf4j = "org.slf4j" % "log4j-over-slf4j" % "2.0.9"
val jclToSlf4j = "org.slf4j" % "jcl-over-slf4j" % "2.0.9"
val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.9"

// testing
val scalatest = "org.scalatest" %% "scalatest" % scalatestVersion
Expand Down

0 comments on commit bc4647b

Please sign in to comment.