From 41d53150e3fee7d91d6c67fda3511e02644e38e3 Mon Sep 17 00:00:00 2001 From: Balduin Landolt <33053745+BalduinLandolt@users.noreply.github.com> Date: Mon, 24 Oct 2022 14:44:31 +0200 Subject: [PATCH] chore: update dependencies (#2264) --- .scalafmt.conf | 2 +- project/Dependencies.scala | 12 ++++++------ project/plugins.sbt | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.scalafmt.conf b/.scalafmt.conf index 51f1cd7f05..55db8c874b 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version = "3.5.9" +version = "3.6.0" runner.dialect = scala213 maxColumn = 120 align.preset = most diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 77a3bee9d9..2a71a3bb15 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -58,12 +58,12 @@ object Dependencies { // logging val scalaLogging = "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5" // Scala 3 compatible val slf4jApi = "org.slf4j" % "slf4j-api" % "2.0.3" // the logging interface - val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.3" // the logging implementation + val logbackClassic = "ch.qos.logback" % "logback-classic" % "1.4.4" // the logging implementation // Metrics val aspectjweaver = "org.aspectj" % "aspectjweaver" % "1.9.9.1" - val kamonCore = "io.kamon" %% "kamon-core" % "2.5.8" // Scala 3 compatible - val kamonScalaFuture = "io.kamon" %% "kamon-scala-future" % "2.5.8" // Scala 3 incompatible + val kamonCore = "io.kamon" %% "kamon-core" % "2.5.9" // Scala 3 compatible + val kamonScalaFuture = "io.kamon" %% "kamon-scala-future" % "2.5.9" // Scala 3 incompatible // input validation val commonsValidator = @@ -73,12 +73,12 @@ object Dependencies { val jwtSprayJson = "com.github.jwt-scala" %% "jwt-spray-json" % "9.0.2" // jwtSprayJson -> 9.0.2 is the latest version that's compatible with spray-json; if it wasn't for spray, this would be Scala 3 compatible val springSecurityCore = - "org.springframework.security" % "spring-security-core" % "5.7.3" exclude ("commons-logging", "commons-logging") exclude ("org.springframework", "spring-aop") + "org.springframework.security" % "spring-security-core" % "5.7.4" exclude ("commons-logging", "commons-logging") exclude ("org.springframework", "spring-aop") val bouncyCastle = "org.bouncycastle" % "bcprov-jdk15to18" % "1.72" // caching val ehcache = "net.sf.ehcache" % "ehcache" % "2.10.9.2" - val jedis = "redis.clients" % "jedis" % "4.3.0" + val jedis = "redis.clients" % "jedis" % "4.3.1" // serialization val chill = "com.twitter" %% "chill" % "0.10.0" // Scala 3 incompatible @@ -86,7 +86,7 @@ object Dependencies { // other val diff = "com.sksamuel.diff" % "diff" % "1.1.11" val gwtServlet = "com.google.gwt" % "gwt-servlet" % "2.10.0" - val icu4j = "com.ibm.icu" % "icu4j" % "71.1" + val icu4j = "com.ibm.icu" % "icu4j" % "72.1" val jakartaJSON = "org.glassfish" % "jakarta.json" % "2.0.1" val jodd = "org.jodd" % "jodd" % "3.2.7" val rdf4jClient = "org.eclipse.rdf4j" % "rdf4j-client" % "4.2.0" diff --git a/project/plugins.sbt b/project/plugins.sbt index 0710ef9efa..7a06ac8354 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -9,7 +9,7 @@ addSbtPlugin("com.github.sbt" % "sbt-git" % "2.0.0") addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.9") addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2") addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.5.1") -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.2.0") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "2.0.0") addSbtPlugin("com.lightbend.sbt" % "sbt-javaagent" % "0.1.6") addSbtPlugin("io.gatling" % "gatling-sbt" % "2.2.2") addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.9.3")