From cd49677ef86aee4a3ca9b25ace06039031085217 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Mon, 26 Feb 2024 08:19:40 +0000 Subject: [PATCH 1/4] Update armeria to 1.27.2 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 1428517..1c75dc3 100644 --- a/build.sbt +++ b/build.sbt @@ -21,7 +21,7 @@ ThisBuild / resolvers += Resolver.mavenLocal ThisBuild / Test / javaOptions += "-Dcom.linecorp.armeria.verboseResponses=true -Dcom.linecorp.armeria.verboseExceptions=always" val versions = new { - val armeria = "1.27.1" + val armeria = "1.27.2" val fs2 = "3.9.4" val http4s = "0.23.25" val logback = "1.2.13" From e95bf4778c89e771fc7cf4332620587de0ad04a9 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 01:07:01 +0000 Subject: [PATCH 2/4] Update scala-library to 2.12.19 --- build.sbt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 1428517..8dd660b 100644 --- a/build.sbt +++ b/build.sbt @@ -10,7 +10,7 @@ ThisBuild / developers := List( url("https://github.com/ikhoon") ) ) -ThisBuild / crossScalaVersions := Seq("2.13.12", "2.12.18", "3.3.1") +ThisBuild / crossScalaVersions := Seq("2.13.12", "2.12.19", "3.3.1") ThisBuild / scalaVersion := crossScalaVersions.value.head ThisBuild / tlVersionIntroduced := Map("3" -> "0.5.0") ThisBuild / tlCiReleaseBranches := Seq("main") @@ -72,7 +72,7 @@ lazy val exampleArmeriaHttp4s = project .in(file("examples/armeria-http4s")) .settings( name := "examples-armeria-http4s", - crossScalaVersions := Seq("2.13.12", "2.12.18"), + crossScalaVersions := Seq("2.13.12", "2.12.19"), scalaVersion := crossScalaVersions.value.head, libraryDependencies ++= List( "ch.qos.logback" % "logback-classic" % versions.logback % Runtime, @@ -88,7 +88,7 @@ lazy val exampleArmeriaScalaPB = project .in(file("examples/armeria-scalapb")) .settings( name := "examples-armeria-scalapb", - crossScalaVersions := Seq("2.13.12", "2.12.18"), + crossScalaVersions := Seq("2.13.12", "2.12.19"), scalaVersion := crossScalaVersions.value.head, libraryDependencies ++= List( "ch.qos.logback" % "logback-classic" % versions.logback % Runtime, @@ -112,7 +112,7 @@ lazy val exampleArmeriaFs2Grpc = project .in(file("examples/armeria-fs2grpc")) .settings( name := "examples-armeria-fs2grpc", - crossScalaVersions := Seq("2.13.12", "2.12.18"), + crossScalaVersions := Seq("2.13.12", "2.12.19"), scalaVersion := crossScalaVersions.value.head, libraryDependencies ++= List( "ch.qos.logback" % "logback-classic" % versions.logback % Runtime, From 0de3377ae1eb9653375de65807eabeeea2b5e9db Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:20:29 +0000 Subject: [PATCH 3/4] Update sbt-http4s-org to 0.16.3 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ba1db46..657b66c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ // http4s organization -addSbtPlugin("org.http4s" % "sbt-http4s-org" % "0.16.2") +addSbtPlugin("org.http4s" % "sbt-http4s-org" % "0.16.3") // ScalaDoc API mapping addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") From 92d2b5008e515950cb4229af2554a1007ff5d43f Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:20:53 +0000 Subject: [PATCH 4/4] Run prePR with sbt-typelevel Executed command: sbt tlPrePrBotHook --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a618c77..93bed0a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,7 +123,7 @@ jobs: - name: Upload target directories if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main') - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }} path: targets.tar @@ -183,7 +183,7 @@ jobs: run: sbt +update - name: Download target directories (2.13) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.java }}-2.13 @@ -193,7 +193,7 @@ jobs: rm targets.tar - name: Download target directories (2.12) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.java }}-2.12 @@ -203,7 +203,7 @@ jobs: rm targets.tar - name: Download target directories (3) - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: target-${{ matrix.os }}-${{ matrix.java }}-3