Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -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")
Expand Down
16 changes: 8 additions & 8 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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")