diff --git a/build.sbt b/build.sbt index 0897ab81..7a33f751 100644 --- a/build.sbt +++ b/build.sbt @@ -47,9 +47,9 @@ val jacksonCbor: String = "2.17.2" val jacksonScalaModule: String = "2.17.2" val simpleConfigurationVersion: String = "1.5.7" val googleOAuthClient: String = "1.36.0" -val nettyVersion: String = "4.1.112.Final" +val nettyVersion: String = "4.1.113.Final" val slf4jVersion: String = "1.7.36" -val logbackVersion: String = "1.5.7" +val logbackVersion: String = "1.5.8" val standardSettings = Seq[Setting[_]]( // We should remove this when all transitive dependencies use the same version of scala-xml diff --git a/project/plugins.sbt b/project/plugins.sbt index 08c559f5..60636155 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -26,7 +26,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") /* Without setting VersionScheme.Always here on `scala-xml`, sbt 1.8.0 will raise fatal 'version conflict' errors when used with sbt plugins like `sbt-native-packager`, which currently use sort-of-incompatible versions of the `scala-xml` - library. sbt 1.8.0 has upgraded to Scala 2.12.19, which has itself upgraded to `scala-xml` 2.1.0 + library. sbt 1.8.0 has upgraded to Scala 2.12.20, which has itself upgraded to `scala-xml` 2.1.0 (see https://github.com/sbt/sbt/releases/tag/v1.8.0), but `sbt-native-packager` is currently using `scala-xml` 1.1.1, and the `scala-xml` library declares that it uses specifically 'early-semver' version compatibility (see https://www.scala-lang.org/blog/2021/02/16/preventing-version-conflicts-with-versionscheme.html#versionscheme-librarydependencyschemes-and-sbt-150 ),