From 15998f13327ab3b9de37201977d70d66466b5487 Mon Sep 17 00:00:00 2001 From: Scala Steward Date: Sun, 30 Jun 2024 16:18:18 +0000 Subject: [PATCH] Update grpc-netty, grpc-services to 1.64.1 --- 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..4ec7f862 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.1" 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..6e263d6c 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.1" 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..5c6b0531 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.1" 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..96ee6bb2 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.1" }