From 0af05db392e3e165f7f25e31ce7e056f6269ee76 Mon Sep 17 00:00:00 2001 From: Ahmad Ragab Date: Sun, 17 Mar 2024 17:22:13 -0400 Subject: [PATCH] Scala Steward Changes Cumulative 03/17/2024 (#66) * Update cats-effect to 3.5.4 in steward (#65) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update async-http-client-backend-zio, ... to 3.9.4 in steward (#64) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update scalatest to 3.2.18 in steward (#56) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update scala3-library to 3.3.3 in steward (#62) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update scalafmt-core to 3.8.0 in steward (#60) * Update scalafmt-core to 3.8.0 in steward * Reformat with scalafmt 3.8.0 Executed command: scalafmt --non-interactive * Add 'Reformat with scalafmt 3.8.0' to .git-blame-ignore-revs --------- Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update sbt to 1.9.9 in steward (#59) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update zio-logging-slf4j to 2.1.17 in steward (#53) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> Co-authored-by: Ahmad Ragab * Update paradox-material-theme, ... to 0.7.0 in steward (#58) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> * Update logback-classic to 1.5.3 in steward (#63) Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> Co-authored-by: Ahmad Ragab --------- Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com> --- .git-blame-ignore-revs | 3 +++ .scalafmt.conf | 2 +- build.sbt | 2 +- project/Dependencies.scala | 18 +++++++++--------- project/build.properties | 2 +- project/plugins.sbt | 20 ++++++++++---------- 6 files changed, 25 insertions(+), 22 deletions(-) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 49ae577..0df00ff 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -1,2 +1,5 @@ # Scala Steward: Reformat with scalafmt 3.7.12 0c3e403a353afe9d4decad5021bc1b41904c9dd8 + +# Scala Steward: Reformat with scalafmt 3.8.0 +39d1ed02d11f08eff8bc7d7f1761e4e2314f8eee diff --git a/.scalafmt.conf b/.scalafmt.conf index e708d2b..855dd13 100644 --- a/.scalafmt.conf +++ b/.scalafmt.conf @@ -1,4 +1,4 @@ -version="3.7.17" +version="3.8.0" runner.dialect=scala3 align.preset=most maxColumn=120 diff --git a/build.sbt b/build.sbt index 8ead013..e180f71 100644 --- a/build.sbt +++ b/build.sbt @@ -4,7 +4,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges Global / excludeLintKeys ++= Set(ThisBuild / pomIncludeRepository, unstructured4s / paradox / sourceDirectory) -ThisBuild / scalaVersion := "3.3.1" +ThisBuild / scalaVersion := "3.3.3" ThisBuild / mimaFailOnNoPrevious := false diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 5e16b64..c378192 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -3,16 +3,16 @@ import sbt.* object V { lazy val zio = "2.0.21" lazy val zioCats = "23.0.0.8" - lazy val sttp = "3.9.0" + lazy val sttp = "3.9.4" lazy val circe = "0.14.6" } object Dependencies { lazy val cats = "org.typelevel" %% "cats-core" % "2.10.0" - lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.2" + lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.4" lazy val catsEffectTesting = "org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test - lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.17" % Test + lazy val scalaTest = "org.scalatest" %% "scalatest" % "3.2.18" % Test lazy val scalaCheck = "org.scalacheck" %% "scalacheck" % "1.17.0" % Test lazy val sttpFs2 = "com.softwaremill.sttp.client3" %% "fs2" % V.sttp @@ -24,12 +24,12 @@ object Dependencies { lazy val circeGeneric = "io.circe" %% "circe-generic" % V.circe lazy val circeParser = "io.circe" %% "circe-parser" % V.circe - lazy val zioTest = "dev.zio" %% "zio-test" % V.zio - lazy val zio = "dev.zio" %% "zio" % V.zio - lazy val zioTestSbt = "dev.zio" %% "zio-test-sbt" % V.zio - lazy val zioCats = "dev.zio" %% "zio-interop-cats" % V.zioCats - lazy val zioSlf4j = "dev.zio" %% "zio-logging-slf4j" % "2.1.16" - lazy val loggingFrontend = "ch.qos.logback" % "logback-classic" % "1.4.14" + lazy val zioTest = "dev.zio" %% "zio-test" % V.zio + lazy val zio = "dev.zio" %% "zio" % V.zio + lazy val zioTestSbt = "dev.zio" %% "zio-test-sbt" % V.zio + lazy val zioCats = "dev.zio" %% "zio-interop-cats" % V.zioCats + lazy val loggingFrontend = "ch.qos.logback" % "logback-classic" % "1.5.3" + lazy val zioSlf4j = "dev.zio" %% "zio-logging-slf4j" % "2.1.17" lazy val core: Seq[ModuleID] = Seq( cats, diff --git a/project/build.properties b/project/build.properties index 99e003f..a9edab7 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1,2 +1,2 @@ -sbt.version = 1.9.8 +sbt.version = 1.9.9 diff --git a/project/plugins.sbt b/project/plugins.sbt index 3ffb63d..00d044f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,10 +1,10 @@ -addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0") -addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") -addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0") -addSbtPlugin("io.github.jonas" % "sbt-paradox-material-theme" % "0.6.0") -addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0") -addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3") -addSbtPlugin("nl.gn0s1s" % "sbt-dotenv" % "3.0.0") -addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0") +addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.10.0") +addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") +addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0") +addSbtPlugin("com.github.sbt" % "sbt-paradox-material-theme" % "0.7.0") +addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0") +addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3") +addSbtPlugin("nl.gn0s1s" % "sbt-dotenv" % "3.0.0") +addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")