diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 611db66f..7f1a7e97 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,15 +2,15 @@ import sbt.* object Dependencies { - val jsoniterVersion = "2.24.1" + val jsoniterVersion = "2.24.2" val doobieVersion = "1.0.0-RC4" - val jwtScalaVersion = "9.4.3" - val flywayVersion = "9.22.2" + val jwtScalaVersion = "9.4.4" + val flywayVersion = "9.22.3" val http4sVersion = "1.0.0-M40" val log4catsVersion = "2.6.0" val dependencies = Seq( - "com.typesafe" % "config" % "1.4.2", + "com.typesafe" % "config" % "1.4.3", // NOTE: doobie 1.0.0-RC4 and http4s 1.0.0-M40 dependes on cats-effect 3.5.1 "org.typelevel" %% "cats-effect" % "3.5.2", "org.typelevel" %% "log4cats-core" % log4catsVersion, @@ -25,16 +25,16 @@ object Dependencies { "org.mariadb.jdbc" % "mariadb-java-client" % "3.2.0", "org.tpolecat" %% "doobie-core" % doobieVersion, "org.tpolecat" %% "doobie-scalatest" % doobieVersion % Test, - "org.wvlet.airframe" %% "airframe-ulid" % "23.9.3", + "org.wvlet.airframe" %% "airframe-ulid" % "23.10.0", "com.github.ben-manes.caffeine" % "caffeine" % "3.1.8", "org.flywaydb" % "flyway-core" % flywayVersion, "org.flywaydb" % "flyway-mysql" % flywayVersion, "ch.qos.logback" % "logback-classic" % "1.4.11", "net.logstash.logback" % "logstash-logback-encoder" % "7.4", "org.codehaus.janino" % "janino" % "3.1.10", - "org.springframework.security" % "spring-security-core" % "6.1.4", + "org.springframework.security" % "spring-security-core" % "6.1.5", "org.slf4j" % "slf4j-api" % "2.0.9", - "org.scalatest" %% "scalatest" % "3.2.16" % "test", + "org.scalatest" %% "scalatest" % "3.2.17" % "test", "org.mockito" % "mockito-core" % "5.6.0" % "test" ) }