Skip to content

Commit ba5a2b3

Browse files
committed
Update grpc-netty, grpc-services to 1.64.2
1 parent 03d623d commit ba5a2b3

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

examples/fullapp/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ ThisBuild / cancelable := true
66

77
ThisBuild / connectInput := true
88

9-
val grpcVersion = "1.64.0"
9+
val grpcVersion = "1.64.2"
1010

1111
lazy val protos = crossProject(JSPlatform, JVMPlatform)
1212
.in(file("protos"))
1313
.settings(
14-
Compile / PB.targets := Seq(
15-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
14+
Compile / PB.targets := Seq(
15+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
1616
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1717
),
1818
Compile / PB.protoSources := Seq(

examples/helloworld/build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ scalaVersion := "2.13.14"
22

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

5-
val grpcVersion = "1.64.0"
5+
val grpcVersion = "1.64.2"
66

77
Compile / PB.targets := Seq(
8-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
8+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
99
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1010
)
1111

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

examples/routeguide/build.sbt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ scalaVersion := "2.13.14"
22

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

5-
val grpcVersion = "1.64.0"
5+
val grpcVersion = "1.64.2"
66

77
Compile / PB.targets := Seq(
8-
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
8+
scalapb.gen(grpc = true) -> (Compile / sourceManaged).value,
99
scalapb.zio_grpc.ZioCodeGenerator -> (Compile / sourceManaged).value
1010
)
1111

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

1818
run / fork := true

project/Versions.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
object Version {
22
val zio = "2.0.22"
3-
val grpc = "1.64.0"
3+
val grpc = "1.64.2"
44
}

0 commit comments

Comments
 (0)