From 1d0c4f24bca19c3bd54df6c50073e957156c3ed1 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:55:46 +0200 Subject: [PATCH 1/8] Update sbt to 1.10.2 (#543) --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index 136f452e..23f7d979 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.10.1 +sbt.version = 1.10.2 From 794fe347147da68325e343bf8e7652a1a4d78733 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:55:59 +0200 Subject: [PATCH 2/8] Update sbt-scoverage to 2.1.1 (#538) --- project/project/PluginVersions.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/project/PluginVersions.scala b/project/project/PluginVersions.scala index 2ebc3f6a..d55cdbc7 100644 --- a/project/project/PluginVersions.scala +++ b/project/project/PluginVersions.scala @@ -1,6 +1,6 @@ object PV { val izumi = "1.2.12" - val sbt_scoverage = "2.1.0" + val sbt_scoverage = "2.1.1" val sbt_pgp = "2.2.1" } From 319c2910346babc4226f3b2efc040ee077c52c50 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:56:14 +0200 Subject: [PATCH 3/8] Update http4s-circe, http4s-dsl to 0.23.28 (#540) --- project/Versions.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Versions.scala b/project/Versions.scala index 25d4e95c..8c9795b9 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -3,7 +3,7 @@ object V { val scalatest = "3.2.19" - val http4s = "0.23.27" + val http4s = "0.23.28" val http4s_blaze = "0.23.16" val scalameta = "4.9.9" // Not available for Scala 3 yet From 7525be65bf86ff2be10c90531e7770ccf75e3a6b Mon Sep 17 00:00:00 2001 From: Kai <450507+neko-kai@users.noreply.github.com> Date: Tue, 15 Oct 2024 14:57:03 +0100 Subject: [PATCH 4/8] Update sbtgen to 0.0.104 --- build.sbt | 2 +- project/Deps.sc | 2 +- project/plugins.sbt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sbt b/build.sbt index a1ba7a92..541fe1e5 100644 --- a/build.sbt +++ b/build.sbt @@ -1843,7 +1843,7 @@ lazy val `idealingua-v1` = (project in file(".")) ThisBuild / scalacOptions += """-Xmacro-settings:sbt-js-version=1.0.2""", ThisBuild / scalacOptions += """-Xmacro-settings:crossproject-version=1.3.2""", ThisBuild / scalacOptions += s"-Xmacro-settings:is-ci=${insideCI.value}", - libraryDependencies += "io.7mind.izumi.sbt" % "sbtgen_2.13" % "0.0.102" % Provided, + libraryDependencies += "io.7mind.izumi.sbt" % "sbtgen_2.13" % "0.0.104" % Provided, ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always ) .enablePlugins(IzumiPlugin) diff --git a/project/Deps.sc b/project/Deps.sc index a93a06e0..1bf74221 100644 --- a/project/Deps.sc +++ b/project/Deps.sc @@ -1,4 +1,4 @@ -import $ivy.`io.7mind.izumi.sbt:sbtgen_2.13:0.0.102` +import $ivy.`io.7mind.izumi.sbt:sbtgen_2.13:0.0.104` import izumi.sbtgen._ import izumi.sbtgen.model._ diff --git a/project/plugins.sbt b/project/plugins.sbt index 6c658e58..bfe83af0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -15,7 +15,7 @@ addSbtPlugin("org.scala-js" % "sbt-jsdependencies" % "1.0.2") //////////////////////////////////////////////////////////////////////////////// -addSbtPlugin("io.7mind.izumi.sbt" % "sbt-izumi" % "0.0.102") +addSbtPlugin("io.7mind.izumi.sbt" % "sbt-izumi" % "0.0.104") addSbtPlugin("com.github.sbt" % "sbt-pgp" % PV.sbt_pgp) From 8fe85930dc1da3f07f3a4c8296c9a49cf14c63da Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:58:00 +0200 Subject: [PATCH 5/8] Update scala-library, scala-reflect to 2.12.20 (#539) --- project/Deps.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Deps.sc b/project/Deps.sc index 1bf74221..044b36f4 100644 --- a/project/Deps.sc +++ b/project/Deps.sc @@ -135,7 +135,7 @@ object Idealingua { import Deps._ // DON'T REMOVE, these variables are read from CI build (build.sh) - final val scala212 = ScalaVersion("2.12.19") + final val scala212 = ScalaVersion("2.12.20") final val scala213 = ScalaVersion("2.13.14") final val scala300 = ScalaVersion("3.3.4-RC1") From 0a04f1c09ecb643ff3706ac25daf5f604d5570e8 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 15:59:43 +0200 Subject: [PATCH 6/8] Update scala-library, scala-reflect to 2.13.15 (#549) Co-authored-by: Kai <450507+neko-kai@users.noreply.github.com> --- project/Deps.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Deps.sc b/project/Deps.sc index 044b36f4..cf1e25f4 100644 --- a/project/Deps.sc +++ b/project/Deps.sc @@ -136,7 +136,7 @@ object Idealingua { // DON'T REMOVE, these variables are read from CI build (build.sh) final val scala212 = ScalaVersion("2.12.20") - final val scala213 = ScalaVersion("2.13.14") + final val scala213 = ScalaVersion("2.13.15") final val scala300 = ScalaVersion("3.3.4-RC1") object Groups { From 7a7ac7880b1a7e542402bfb29c030ef2bfbc7f80 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:00:21 +0200 Subject: [PATCH 7/8] Update scala3-library, ... to 3.3.4 (#552) Co-authored-by: Kai <450507+neko-kai@users.noreply.github.com> --- project/Deps.sc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Deps.sc b/project/Deps.sc index cf1e25f4..ed5abd8f 100644 --- a/project/Deps.sc +++ b/project/Deps.sc @@ -137,7 +137,7 @@ object Idealingua { // DON'T REMOVE, these variables are read from CI build (build.sh) final val scala212 = ScalaVersion("2.12.20") final val scala213 = ScalaVersion("2.13.15") - final val scala300 = ScalaVersion("3.3.4-RC1") + final val scala300 = ScalaVersion("3.3.4") object Groups { final val idealingua = Set(Group("idealingua")) From 86104efedd0f4a06a18230ae45f1a8e935aabbc6 Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:01:36 +0200 Subject: [PATCH 8/8] Update scalameta to 4.10.2 (#554) --- project/Versions.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Versions.scala b/project/Versions.scala index 8c9795b9..9dd54daa 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -6,7 +6,7 @@ object V { val http4s = "0.23.28" val http4s_blaze = "0.23.16" - val scalameta = "4.9.9" // Not available for Scala 3 yet + val scalameta = "4.10.2" // Not available for Scala 3 yet val fastparse = "3.1.1" // 3.0.0 is available for Scala 3 val scala_xml = "2.3.0"