From ba5a2b394977a7fc4f48d752c0c0593d97a054a8 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 14 Jul 2024 19:35:34 +0000 Subject: [PATCH] Update grpc-netty, grpc-services to 1.64.2 --- examples/fullapp/build.sbt | 6 +++--- examples/helloworld/build.sbt | 6 +++--- examples/routeguide/build.sbt | 8 ++++---- project/Versions.scala | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/examples/fullapp/build.sbt b/examples/fullapp/build.sbt index 99b551c8..18cff292 100644 --- a/examples/fullapp/build.sbt +++ b/examples/fullapp/build.sbt @@ -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( diff --git a/examples/helloworld/build.sbt b/examples/helloworld/build.sbt index b029b193..661eba8a 100644 --- a/examples/helloworld/build.sbt +++ b/examples/helloworld/build.sbt @@ -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 ) diff --git a/examples/routeguide/build.sbt b/examples/routeguide/build.sbt index 9048a3e4..582884c4 100644 --- a/examples/routeguide/build.sbt +++ b/examples/routeguide/build.sbt @@ -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 diff --git a/project/Versions.scala b/project/Versions.scala index ac4ae2c9..8ea957ce 100644 --- a/project/Versions.scala +++ b/project/Versions.scala @@ -1,4 +1,4 @@ object Version { val zio = "2.0.22" - val grpc = "1.64.0" + val grpc = "1.64.2" }