From 98c93cd21ce7533a85f13caddfd4edac338e5683 Mon Sep 17 00:00:00 2001 From: "http4s-steward[bot]" <106843772+http4s-steward[bot]@users.noreply.github.com> Date: Wed, 6 Jul 2022 20:23:32 +0000 Subject: [PATCH] Update http4s-circe, http4s-client, ... to 1.0.0-M34 in main --- build.sbt | 48 ++++++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/build.sbt b/build.sbt index 14c491944..b3a762fe2 100644 --- a/build.sbt +++ b/build.sbt @@ -3,7 +3,7 @@ import Dependencies._ val Scala213 = "2.13.8" val Scala3 = "3.1.2" -val http4sVersion = "1.0.0-M33" +val http4sVersion = "1.0.0-M34" val munitCatsEffectVersion = "1.0.7" ThisBuild / resolvers += @@ -22,20 +22,20 @@ ThisBuild / developers ++= List( "bryce-anderson", "Bryce L. Anderson", "bryce.anderson22@gamil.com", - url("https://github.com/bryce-anderson") + url("https://github.com/bryce-anderson"), ), Developer( "rossabaker", "Ross A. Baker", "ross@rossabaker.com", - url("https://github.com/rossabaker") + url("https://github.com/rossabaker"), ), Developer( "ChristopherDavenport", "Christopher Davenport", "chris@christopherdavenport.tech", - url("https://github.com/ChristopherDavenport") - ) + url("https://github.com/ChristopherDavenport"), + ), ) ThisBuild / startYear := Some(2014) @@ -54,7 +54,7 @@ lazy val commonSettings = Seq( }, run / fork := true, scalafmtConfig := file(".scalafmt.blaze.conf"), - scalafixConfig := Some(file(".scalafix.blaze.conf")) + scalafixConfig := Some(file(".scalafix.blaze.conf")), ) // currently only publishing tags @@ -64,7 +64,7 @@ ThisBuild / githubWorkflowPublishTargetBranches := ThisBuild / githubWorkflowBuild ++= Seq( WorkflowStep.Sbt( List("${{ matrix.ci }}", "javafmtCheckAll"), - name = Some("Check Java formatting") + name = Some("Check Java formatting"), ) ) @@ -92,7 +92,7 @@ lazy val core = Project("blaze-core", file("core")) buildInfoKeys := Seq[BuildInfoKey]( version, scalaVersion, - git.gitHeadCommit + git.gitHeadCommit, ), buildInfoOptions += BuildInfoOption.BuildTime, mimaBinaryIssueFilters ++= Seq( @@ -100,7 +100,7 @@ lazy val core = Project("blaze-core", file("core")) ProblemFilters.exclude[DirectMissingMethodProblem]( "org.http4s.blaze.channel.nio1.NIO1SocketServerGroup.this" ) - ) + ), ) .dependsOn(testkit % Test) @@ -122,8 +122,8 @@ lazy val http = Project("blaze-http", file("http")) ), ProblemFilters.exclude[MissingClassProblem]( "org.http4s.blaze.http.http2.server.ALPNServerSelector$ServerProvider" - ) - ) + ), + ), ) .dependsOn(testkit % Test, core % "test->test;compile->compile") @@ -135,7 +135,7 @@ lazy val blazeCore = project startYear := Some(2014), libraryDependencies ++= Seq( "org.http4s" %% "http4s-core" % http4sVersion, - "org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectVersion % Test + "org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectVersion % Test, ), mimaBinaryIssueFilters := { if (tlIsScala3.value) @@ -164,11 +164,11 @@ lazy val blazeCore = project ProblemFilters .exclude[DirectMissingMethodProblem]("org.http4s.blazecore.util.IdentityWriter.this"), ProblemFilters - .exclude[DirectMissingMethodProblem]("org.http4s.blazecore.util.IdentityWriter.ec") + .exclude[DirectMissingMethodProblem]("org.http4s.blazecore.util.IdentityWriter.ec"), ) else Seq.empty }, - Test / scalafixConfig := Some(file(".scalafix.test.conf")) + Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) .dependsOn(http) @@ -180,7 +180,7 @@ lazy val blazeServer = project startYear := Some(2014), libraryDependencies ++= Seq( "org.http4s" %% "http4s-server" % http4sVersion, - "org.http4s" %% "http4s-dsl" % http4sVersion % Test + "org.http4s" %% "http4s-dsl" % http4sVersion % Test, ), mimaBinaryIssueFilters := Seq( ProblemFilters.exclude[DirectMissingMethodProblem]( @@ -210,7 +210,7 @@ lazy val blazeServer = project ProblemFilters .exclude[DirectMissingMethodProblem]("org.http4s.blaze.server.BlazeServerBuilder.this"), ProblemFilters - .exclude[DirectMissingMethodProblem]("org.http4s.blaze.server.WebSocketDecoder.this") + .exclude[DirectMissingMethodProblem]("org.http4s.blaze.server.WebSocketDecoder.this"), ) ++ { if (tlIsScala3.value) Seq( @@ -227,11 +227,11 @@ lazy val blazeServer = project ), ProblemFilters.exclude[ReversedMissingMethodProblem]( "org.http4s.blaze.server.WebSocketSupport.webSocketKey" - ) + ), ) else Seq.empty, }, - Test / scalafixConfig := Some(file(".scalafix.test.conf")) + Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) .dependsOn(blazeCore % "compile;test->test") @@ -243,7 +243,7 @@ lazy val blazeClient = project startYear := Some(2014), libraryDependencies ++= Seq( "org.http4s" %% "http4s-client" % http4sVersion, - "org.http4s" %% "http4s-client-testkit" % http4sVersion % Test + "org.http4s" %% "http4s-client-testkit" % http4sVersion % Test, ), mimaBinaryIssueFilters ++= Seq( // private constructor @@ -318,7 +318,7 @@ lazy val blazeClient = project ProblemFilters .exclude[IncompatibleResultTypeProblem]("org.http4s.blaze.client.Connection.isRecyclable"), ProblemFilters - .exclude[ReversedMissingMethodProblem]("org.http4s.blaze.client.Connection.isRecyclable") + .exclude[ReversedMissingMethodProblem]("org.http4s.blaze.client.Connection.isRecyclable"), ) ++ { if (tlIsScala3.value) Seq( @@ -328,7 +328,7 @@ lazy val blazeClient = project ) else Seq.empty }, - Test / scalafixConfig := Some(file(".scalafix.test.conf")) + Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) .dependsOn(blazeCore % "compile;test->test") @@ -340,9 +340,9 @@ lazy val examples = Project("blaze-examples", file("examples")) libraryDependencies ++= Seq( "org.http4s" %% "http4s-dsl" % http4sVersion, "org.http4s" %% "http4s-circe" % http4sVersion, - "io.circe" %% "circe-generic" % "0.14.2" + "io.circe" %% "circe-generic" % "0.14.2", ), - Test / scalafixConfig := Some(file(".scalafix.test.conf")) + Test / scalafixConfig := Some(file(".scalafix.test.conf")), ) .dependsOn(blazeServer, blazeClient) @@ -351,5 +351,5 @@ lazy val examples = Project("blaze-examples", file("examples")) // use it in the local development process addCommandAlias( "validate", - ";scalafmtCheckAll ;scalafmtSbtCheck ;javafmtCheckAll ;+test:compile ;test ;unusedCompileDependenciesTest ;mimaReportBinaryIssues" + ";scalafmtCheckAll ;scalafmtSbtCheck ;javafmtCheckAll ;+test:compile ;test ;unusedCompileDependenciesTest ;mimaReportBinaryIssues", )