diff --git a/build.sbt b/build.sbt index 58e27c6..6e16c2e 100644 --- a/build.sbt +++ b/build.sbt @@ -1,7 +1,7 @@ ThisBuild / scalaVersion := "2.13.17" ThisBuild / crossScalaVersions := Seq("2.13.17", "3.3.7") ThisBuild / organization := "com.permutive" -ThisBuild / versionPolicyIntention := Compatibility.BinaryCompatible +ThisBuild / versionPolicyIntention := Compatibility.None addCommandAlias("ci-test", "fix --check; versionPolicyCheck; mdoc; publishLocal; +test") addCommandAlias("ci-docs", "github; mdoc; headerCreateAll") diff --git a/project/Dependencies.scala b/project/Dependencies.scala index b2af39f..027d0b4 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -9,15 +9,15 @@ object Dependencies { ExclusionRule(organization = "com.thesamet.scalapb", name = "scalapb-runtime_2.13") ), "com.permutive" %% "gcp-auth" % "2.1.0", - "org.http4s" %% "http4s-ember-client" % "0.23.32" + "org.http4s" %% "http4s-ember-client" % "0.23.33" ) lazy val `http4s-grpc` = "io.chrisdavenport" %% "http4s-grpc" % "0.0.4" lazy val grpc = Seq( - "com.google.api.grpc" % "proto-google-cloud-pubsub-v1" % "1.125.0", - "com.google.api.grpc" % "proto-google-common-protos" % "2.62.0", - "com.google.protobuf" % "protobuf-java" % "4.33.0" + "com.google.api.grpc" % "proto-google-cloud-pubsub-v1" % "1.125.1", + "com.google.api.grpc" % "proto-google-common-protos" % "2.63.1", + "com.google.protobuf" % "protobuf-java" % "3.25.8" // scala-steward:off ).map(_ % "protobuf-src" intransitive ()) ++ Seq( "com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf" ) @@ -26,13 +26,13 @@ object Dependencies { "co.fs2" %% "fs2-core" % "3.12.2", "com.permutive" %% "common-types-gcp-http4s" % "1.2.1", "io.circe" %% "circe-parser" % "0.14.15", - "org.http4s" %% "http4s-circe" % "0.23.32", - "org.http4s" %% "http4s-client" % "0.23.32", - "org.http4s" %% "http4s-dsl" % "0.23.32" + "org.http4s" %% "http4s-circe" % "0.23.33", + "org.http4s" %% "http4s-client" % "0.23.33", + "org.http4s" %% "http4s-dsl" % "0.23.33" ) ++ Seq( "com.dimafeng" %% "testcontainers-scala-munit" % "0.43.6", "com.permutive" %% "gcp-auth" % "2.1.0", - "org.http4s" %% "http4s-ember-client" % "0.23.32", + "org.http4s" %% "http4s-ember-client" % "0.23.33", "org.slf4j" % "slf4j-nop" % "2.0.17", "org.typelevel" %% "munit-cats-effect" % "2.1.0" ).map(_ % Test) diff --git a/project/plugins.sbt b/project/plugins.sbt index ca0f4a5..d57c8ac 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -13,5 +13,5 @@ addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5. addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.8.0") -addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5") +addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6") addSbtPlugin("io.chrisdavenport" % "sbt-http4s-grpc" % "0.0.4")