diff --git a/build.sbt b/build.sbt index 85efa1cc2..49a488f48 100644 --- a/build.sbt +++ b/build.sbt @@ -40,48 +40,48 @@ lazy val psforeverSettings = Seq( classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat, resolvers += "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots", libraryDependencies ++= Seq( - "com.typesafe.akka" %% "akka-actor" % "2.6.20", - "com.typesafe.akka" %% "akka-slf4j" % "2.6.20", - "com.typesafe.akka" %% "akka-protobuf-v3" % "2.6.20", - "com.typesafe.akka" %% "akka-stream" % "2.6.20", - "com.typesafe.akka" %% "akka-testkit" % "2.6.20" % "test", - "com.typesafe.akka" %% "akka-actor-typed" % "2.6.20", - "com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.6.20" % "test", - "com.typesafe.akka" %% "akka-slf4j" % "2.6.20", - "com.typesafe.akka" %% "akka-cluster-typed" % "2.6.20", - "com.typesafe.akka" %% "akka-coordination" % "2.6.20", - "com.typesafe.akka" %% "akka-cluster-tools" % "2.6.20", - "com.typesafe.akka" %% "akka-http" % "10.2.6", - "com.typesafe.scala-logging" %% "scala-logging" % "3.9.4", + "com.typesafe.akka" %% "akka-actor" % "2.8.0", + "com.typesafe.akka" %% "akka-slf4j" % "2.8.0", + "com.typesafe.akka" %% "akka-protobuf-v3" % "2.8.0", + "com.typesafe.akka" %% "akka-stream" % "2.8.0", + "com.typesafe.akka" %% "akka-testkit" % "2.8.0" % "test", + "com.typesafe.akka" %% "akka-actor-typed" % "2.8.0", + "com.typesafe.akka" %% "akka-actor-testkit-typed" % "2.8.0" % "test", + "com.typesafe.akka" %% "akka-slf4j" % "2.8.0", + "com.typesafe.akka" %% "akka-cluster-typed" % "2.8.0", + "com.typesafe.akka" %% "akka-coordination" % "2.8.0", + "com.typesafe.akka" %% "akka-cluster-tools" % "2.8.0", + "com.typesafe.akka" %% "akka-http" % "10.5.0", + "com.typesafe.scala-logging" %% "scala-logging" % "3.9.5", "org.specs2" %% "specs2-core" % "4.20.0" % "test", "org.scalatest" %% "scalatest" % "3.2.15" % "test", - "org.scodec" %% "scodec-core" % "1.11.9", - "ch.qos.logback" % "logback-classic" % "1.2.6", + "org.scodec" %% "scodec-core" % "1.11.10", + "ch.qos.logback" % "logback-classic" % "1.2.12", "org.log4s" %% "log4s" % "1.10.0", "org.fusesource.jansi" % "jansi" % "2.4.0", - "com.github.nscala-time" %% "nscala-time" % "2.30.0", + "com.github.nscala-time" %% "nscala-time" % "2.32.0", "com.github.t3hnar" %% "scala-bcrypt" % "4.3.0", - "org.scala-graph" %% "graph-core" % "1.13.3", - "io.kamon" %% "kamon-bundle" % "2.3.1", - "io.kamon" %% "kamon-apm-reporter" % "2.3.1", - "org.json4s" %% "json4s-native" % "4.0.3", + "org.scala-graph" %% "graph-core" % "1.13.5", + "io.kamon" %% "kamon-bundle" % "2.6.1", + "io.kamon" %% "kamon-apm-reporter" % "2.6.0", + "org.json4s" %% "json4s-native" % "4.0.6", "io.getquill" %% "quill-jasync-postgres" % "3.18.0", - "org.flywaydb" % "flyway-core" % "9.0.0", - "org.postgresql" % "postgresql" % "42.3.1", - "com.typesafe" % "config" % "1.4.1", - "com.github.pureconfig" %% "pureconfig" % "0.17.0", - "com.beachape" %% "enumeratum" % "1.7.0", - "commons-io" % "commons-io" % "2.11.0", + "org.flywaydb" % "flyway-core" % "9.16.0", + "org.postgresql" % "postgresql" % "42.5.4", + "com.typesafe" % "config" % "1.4.2", + "com.github.pureconfig" %% "pureconfig" % "0.17.4", + "com.beachape" %% "enumeratum" % "1.7.2", + "commons-io" % "commons-io" % "2.13.0", "com.github.scopt" %% "scopt" % "4.1.0", - "io.sentry" % "sentry-logback" % "6.16.0", + "io.sentry" % "sentry-logback" % "6.19.0", "io.circe" %% "circe-core" % "0.14.5", "io.circe" %% "circe-generic" % "0.14.5", "io.circe" %% "circe-parser" % "0.14.5", "org.scala-lang.modules" %% "scala-parallel-collections" % "1.0.4", - "org.bouncycastle" % "bcprov-jdk15on" % "1.69" + "org.bouncycastle" % "bcprov-jdk15on" % "1.70" ), dependencyOverrides ++= Seq( - "com.github.jasync-sql" % "jasync-postgresql" % "1.1.7", + "com.github.jasync-sql" % "jasync-postgresql" % "1.2.3", "org.scala-lang.modules" %% "scala-java8-compat" % "1.0.2" ) // TODO(chord): remove exclusion when SessionActor is refactored: https://github.com/psforever/PSF-LoginServer/issues/279