From b1db7325099c2f18743947662818837be4b0f5af Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:25 +0000 Subject: [PATCH 01/19] Update sbt-scalafix to 0.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ded6636..4b1240f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") From 044b7e9539609a47b44f863ff76fe8f826cdc465 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:25 +0000 Subject: [PATCH 02/19] Update logback-classic to 1.5.16 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 89afb0d..5023745 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ lazy val `http4s-munit` = module .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Optional) .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.9") - .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.7" % Test) + .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.16" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.27" % Test) .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.4" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Test) From 65374f6978f8177f042abba9ed5ba3de13dde50e Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:25 +0000 Subject: [PATCH 03/19] Update sbt-ci to 2.16.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 4b1240f..e83af86 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") -addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") +addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.16.0") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") From ff4eeea3a79ceb5e1dee756dd522bb31c73c010d Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 04/19] Run `sbt generateCiFiles` Executed command: sbt generateCiFiles --- .github/workflows/ci.yml | 13 ++++++++----- .github/workflows/release.yml | 8 ++++---- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e47a1cf..f59a117 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,17 +59,20 @@ jobs: - 17 steps: - name: Checkout project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: ref: ${{ github.head_ref }} repository: ${{ github.event.pull_request.head.repo.full_name }} fetch-depth: 0 - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + - name: Run Coursier Cache Action + uses: coursier/cache-action@142d2738bd29f0eb9d44610828acb3a19809feab # v6.4.6 + + - name: Run Coursier Setup Action + uses: coursier/setup-action@62c1c28a0e03df3de0680172df8b829bd80d07a0 # v1.3.7 with: - distribution: "liberica" - java-version: ${{ matrix.jdk }} - cache: "sbt" + jvm: liberica:${{ matrix.jdk }} + apps: sbt - name: Run `sbt ci-test` run: sbt ci-test diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 87f08e6..d4117f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 @@ -37,7 +37,7 @@ jobs: if: github.event_name == 'push' uses: alejandrohdezma/actions/check-semver-tag@v1 - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 with: distribution: "liberica" java-version: "11" @@ -59,13 +59,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: fetch-depth: 0 ref: main token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 + - uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 with: distribution: "liberica" java-version: "17" From b2f304ccaaf71fe66332f312ca53befb9f6ca1ee Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 05/19] Update testcontainers-scala-munit to 0.41.5 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 5023745..7464bdc 100644 --- a/build.sbt +++ b/build.sbt @@ -23,7 +23,7 @@ lazy val `http4s-munit` = module .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.9") .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.16" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.27" % Test) - .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.4" % Test) + .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.5" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Test) .settings(libraryDependencies ++= scalaVersion.value.on(2)(kindProjector)) From a0a99debbf8416d6ce21019454d9d1f29197d24e Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 06/19] Update sbt-ci-release to 1.9.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index e83af86..c3cdff1 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,7 +8,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.1") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.1") addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2") addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4") From b2b33c72a7371e9d1cb60a48d71e3b1cb9681dde Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 07/19] Update circe-parser to 0.14.10 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 7464bdc..905a365 100644 --- a/build.sbt +++ b/build.sbt @@ -20,7 +20,7 @@ lazy val `http4s-munit` = module .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.27") .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Optional) .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") - .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.9") + .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10") .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.16" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.27" % Test) .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.5" % Test) From 76ccc2e9f9ad0fa2b14c698644ab0d1ee51c0926 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 08/19] Update http4s-blaze-client to 0.23.17 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 905a365..9b05e6d 100644 --- a/build.sbt +++ b/build.sbt @@ -11,7 +11,7 @@ addCommandAlias("ci-publish", "versionCheck; github; ci-release") lazy val documentation = project .enablePlugins(MdocPlugin) .dependsOn(`http4s-munit` % "compile->test") - .settings(libraryDependencies += "org.http4s" %% "http4s-blaze-client" % "0.23.16") + .settings(libraryDependencies += "org.http4s" %% "http4s-blaze-client" % "0.23.17") lazy val `http4s-munit` = module .settings(Test / fork := true) From 1c8db4d7d2bdb87005f3a39cf57b7f405f24cc54 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 09/19] Update http4s-circe to 0.23.30 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 9b05e6d..a5f1e93 100644 --- a/build.sbt +++ b/build.sbt @@ -22,7 +22,7 @@ lazy val `http4s-munit` = module .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10") .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.16" % Test) - .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.27" % Test) + .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.30" % Test) .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.5" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Test) .settings(libraryDependencies ++= scalaVersion.value.on(2)(kindProjector)) From 139bb73f78e5c7a50e2b4a2cf30ef6ee14bd609d Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 10/19] Update http4s-client to 0.23.30 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index a5f1e93..a775bb8 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ lazy val documentation = project lazy val `http4s-munit` = module .settings(Test / fork := true) .settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.1") - .settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.27") + .settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.30") .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.27") .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Optional) .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") From a1f9131b48559b2e33378e49b9f017acb3cd0eb4 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 11/19] Update http4s-dsl to 0.23.30 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index a775bb8..eb9234d 100644 --- a/build.sbt +++ b/build.sbt @@ -17,7 +17,7 @@ lazy val `http4s-munit` = module .settings(Test / fork := true) .settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.1") .settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.30") - .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.27") + .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.30") .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Optional) .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10") From 1cf6ef1ea1dc001d2d270eb1081840621c348cf4 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:38 +0000 Subject: [PATCH 12/19] Update http4s-ember-client to 0.23.30 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index eb9234d..3092127 100644 --- a/build.sbt +++ b/build.sbt @@ -18,13 +18,13 @@ lazy val `http4s-munit` = module .settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.1") .settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.30") .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.30") - .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Optional) + .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.30" % Optional) .settings(libraryDependencies += "org.typelevel" %% "munit-cats-effect" % "2.0.0") .settings(libraryDependencies += "io.circe" %% "circe-parser" % "0.14.10") .settings(libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.5.16" % Test) .settings(libraryDependencies += "org.http4s" %% "http4s-circe" % "0.23.30" % Test) .settings(libraryDependencies += "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.5" % Test) - .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.27" % Test) + .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.30" % Test) .settings(libraryDependencies ++= scalaVersion.value.on(2)(kindProjector)) def kindProjector = compilerPlugin("org.typelevel" % "kind-projector" % "0.13.3").cross(CrossVersion.full) From 8f26f1b91aa4ac1459e678691662389f8eb7724b Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 13/19] Update scala-library to 2.12.20 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 3092127..ecc70cb 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ ThisBuild / scalaVersion := "2.13.14" -ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.14", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.3") ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible ThisBuild / organization := "com.alejandrohdezma" From 78c625402830fcf6e548ca4c35a5a6d4fd9cc898 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 14/19] Update scala-library to 2.13.15 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index ecc70cb..1e923c4 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ -ThisBuild / scalaVersion := "2.13.14" -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.3") +ThisBuild / scalaVersion := "2.13.15" +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.3") ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible ThisBuild / organization := "com.alejandrohdezma" From e9acbc2d3ecd644835f5895ce68276773a66ccb0 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 15/19] Update scala3-compiler to 3.3.4 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1e923c4..b026984 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ ThisBuild / scalaVersion := "2.13.15" -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.4") ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible ThisBuild / organization := "com.alejandrohdezma" From ff9a698311876c792046bba522657837bde202db Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 16/19] Update sbt to 1.10.7 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index cb409aa..0a832a2 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.1 \ No newline at end of file +sbt.version=1.10.7 \ No newline at end of file From f9413df9ae54c6ca7908e05905e3d9f4e86d28f1 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 17/19] Update munit to 1.0.3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index b026984..d874ddc 100644 --- a/build.sbt +++ b/build.sbt @@ -15,7 +15,7 @@ lazy val documentation = project lazy val `http4s-munit` = module .settings(Test / fork := true) - .settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.1") + .settings(libraryDependencies += "org.scalameta" %% "munit" % "1.0.3") .settings(libraryDependencies += "org.http4s" %% "http4s-client" % "0.23.30") .settings(libraryDependencies += "org.http4s" %% "http4s-dsl" % "0.23.30") .settings(libraryDependencies += "org.http4s" %% "http4s-ember-client" % "0.23.30" % Optional) From 143d9468b9171dd04abc15ae5cb58fee7c8ab109 Mon Sep 17 00:00:00 2001 From: "alejandrohdezma-steward[bot]" <80571129+alejandrohdezma-steward[bot]@users.noreply.github.com> Date: Mon, 6 Jan 2025 07:11:39 +0000 Subject: [PATCH 18/19] Update sbt-mdoc to 2.6.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index c3cdff1..18f9a19 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -11,5 +11,5 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.2") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.2") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") From f7c4b26d222b08a743a38f425b97c4e5092ea271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Hern=C3=A1ndez?= Date: Mon, 6 Jan 2025 08:24:12 +0100 Subject: [PATCH 19/19] Run `sbt fix` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alejandro Hernández --- .../src/main/scala/munit/Http4sMUnitSyntax.scala | 2 +- .../src/main/scala/munit/Http4sSuite.scala | 11 ++++++++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/modules/http4s-munit/src/main/scala/munit/Http4sMUnitSyntax.scala b/modules/http4s-munit/src/main/scala/munit/Http4sMUnitSyntax.scala index 488b51c..3874889 100644 --- a/modules/http4s-munit/src/main/scala/munit/Http4sMUnitSyntax.scala +++ b/modules/http4s-munit/src/main/scala/munit/Http4sMUnitSyntax.scala @@ -105,7 +105,7 @@ trait Http4sMUnitSyntax extends Http4sDsl[IO] with Http4sClientDsl[IO] with AllS } - case class ContextNotFound(request: Request[IO]) + case class ContextNotFound(request: Request[IO]) // scalafix:ok extends RuntimeException(s"Auth context not found on request $request, remember to add one with `.context()`") with NoStackTrace diff --git a/modules/http4s-munit/src/main/scala/munit/Http4sSuite.scala b/modules/http4s-munit/src/main/scala/munit/Http4sSuite.scala index 1b31c48..1540f0a 100644 --- a/modules/http4s-munit/src/main/scala/munit/Http4sSuite.scala +++ b/modules/http4s-munit/src/main/scala/munit/Http4sSuite.scala @@ -81,9 +81,14 @@ trait Http4sSuite extends CatsEffectSuite with Http4sMUnitSyntax { followingRequests: List[String], testOptions: TestOptions, config: Http4sMUnitConfig - ): String = Http4sMUnitDefaults.http4sMUnitNameCreator( - request, followingRequests, testOptions, config, http4sMUnitNameCreatorReplacements() - ) + ): String = + Http4sMUnitDefaults.http4sMUnitNameCreator( + request, + followingRequests, + testOptions, + config, + http4sMUnitNameCreatorReplacements() + ) /** List of replacements that will be applied to the result of `http4sMUnitNameCreator` using `String#replaceAll` */ @deprecated(