From f850be7ef9484f056e7d825efdfba641eae5a1f9 Mon Sep 17 00:00:00 2001 From: yoshinorin Date: Wed, 8 May 2024 23:00:27 +0900 Subject: [PATCH] chore(deps): update dependencies --- project/Dependencies.scala | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index e1756bfa..702bec7d 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -2,12 +2,12 @@ import sbt.* object Dependencies { - val jsoniterVersion = "2.28.4" + val jsoniterVersion = "2.28.5" val doobieVersion = "1.0.0-RC5" - val jwtScalaVersion = "10.0.0" - val flywayVersion = "10.10.0" + val jwtScalaVersion = "10.0.1" + val flywayVersion = "10.12.0" val http4sVersion = "1.0.0-M41" - val log4catsVersion = "2.6.0" + val log4catsVersion = "2.7.0" val dependencies = Seq( "com.typesafe" % "config" % "1.4.3", @@ -25,16 +25,16 @@ object Dependencies { "org.mariadb.jdbc" % "mariadb-java-client" % "3.3.3", "org.tpolecat" %% "doobie-core" % doobieVersion, // "org.tpolecat" %% "doobie-scalatest" % doobieVersion % Test, - "org.wvlet.airframe" %% "airframe-ulid" % "24.3.0", + "org.wvlet.airframe" %% "airframe-ulid" % "24.5.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.5.3", + "ch.qos.logback" % "logback-classic" % "1.5.6", "net.logstash.logback" % "logstash-logback-encoder" % "7.4", "org.codehaus.janino" % "janino" % "3.1.12", "org.springframework.security" % "spring-security-core" % "6.2.2", "org.slf4j" % "slf4j-api" % "2.0.12", "org.scalatest" %% "scalatest" % "3.2.18" % "test", - "org.mockito" % "mockito-core" % "5.10.0" % "test" + "org.mockito" % "mockito-core" % "5.11.0" % "test" ) }