Skip to content

Commit

Permalink
Upgrace grpc lib (#127)
Browse files Browse the repository at this point in the history
* Upgrace grpc lib

* Remove dependency

* Fix grpc netty version
  • Loading branch information
ghostdogpr authored May 8, 2024
1 parent 91713e8 commit 2254777
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ val scala213 = "2.13.13"
val scala3 = "3.3.3"
val allScala = Seq(scala213, scala3)

val zioVersion = "2.0.21"
val zioGrpcVersion = "0.6.0"
val zioVersion = "2.0.22"
val zioGrpcVersion = "0.6.2"
val grpcNettyVersion = "1.63.0"
val zioK8sVersion = "2.1.1"
val zioCacheVersion = "0.2.3"
val zioCatsInteropVersion = "23.1.0.0"
Expand Down Expand Up @@ -167,8 +168,7 @@ lazy val grpcProtocol = project
"com.thesamet.scalapb" %% "scalapb-runtime" % scalapb.compiler.Version.scalapbVersion % "protobuf",
"com.thesamet.scalapb" %% "scalapb-runtime-grpc" % scalapb.compiler.Version.scalapbVersion,
"com.thesamet.scalapb.zio-grpc" %% "zio-grpc-core" % zioGrpcVersion,
"io.grpc" % "grpc-netty" % scalapb.compiler.Version.grpcJavaVersion,
"io.grpc" % "grpc-services" % scalapb.compiler.Version.grpcJavaVersion
"io.grpc" % "grpc-netty" % grpcNettyVersion
)
)

Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")

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

libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.10"
libraryDependencies += "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.0"
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.15"
libraryDependencies += "com.thesamet.scalapb.zio-grpc" %% "zio-grpc-codegen" % "0.6.2"

0 comments on commit 2254777

Please sign in to comment.