Skip to content

Commit

Permalink
Update grpc-netty, grpc-services to 1.64.2
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Jul 14, 2024
1 parent 03d623d commit ba5a2b3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions examples/fullapp/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ ThisBuild / cancelable := true

ThisBuild / connectInput := true

val grpcVersion = "1.64.0"
val grpcVersion = "1.64.2"

lazy val protos = crossProject(JSPlatform, JVMPlatform)
.in(file("protos"))
.settings(
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
),
Compile / PB.protoSources := Seq(
Expand Down
6 changes: 3 additions & 3 deletions examples/helloworld/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ scalaVersion := "2.13.14"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.64.0"
val grpcVersion = "1.64.2"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion
)

Expand Down
8 changes: 4 additions & 4 deletions examples/routeguide/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ scalaVersion := "2.13.14"

resolvers ++= Resolver.sonatypeOssRepos("snapshots")

val grpcVersion = "1.64.0"
val grpcVersion = "1.64.2"

Compile / PB.targets := Seq(
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
)

libraryDependencies ++= Seq(
"io.grpc" % "grpc-netty" % grpcVersion,
"io.grpc" % "grpc-netty" % grpcVersion,
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion,
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
"com.thesamet.scalapb" %% "scalapb-json4s" % "0.12.0"
)

run / fork := true
2 changes: 1 addition & 1 deletion project/Versions.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
object Version {
val zio = "2.0.22"
val grpc = "1.64.0"
val grpc = "1.64.2"
}

0 comments on commit ba5a2b3

Please sign in to comment.