fs2-grpc icon indicating copy to clipboard operation
fs2-grpc copied to clipboard

gRPC implementation for FS2/cats-effect

Results 22 fs2-grpc issues
Sort by recently updated
recently updated
newest added

## About this PR 📦 Updates [org.typelevel:sbt-typelevel](https://github.com/typelevel/sbt-typelevel) from `0.7.0` to `0.7.1` 📜 [GitHub Release Notes](https://github.com/typelevel/sbt-typelevel/releases/tag/v0.7.1) - [Version Diff](https://github.com/typelevel/sbt-typelevel/compare/v0.7.0...v0.7.1) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## About this PR 📦 Updates [org.scala-sbt:sbt](https://github.com/sbt/sbt) from `1.9.9` to `1.10.0` 📜 [GitHub Release Notes](https://github.com/sbt/sbt/releases/tag/v1.10.0) - [Version Diff](https://github.com/sbt/sbt/compare/v1.9.9...v1.10.0) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve...

## Summary This merge request introduces the capability for servers to send custom metadata (trailers) in responses for unaryToUnary and clientStreaming methods using the fs2.grpc library. Prior to this change,...

Hi, I'm moving a project from `sbt` to `mill` and did not find a way to use the codegen outside of `sbt`. Is it possible to run the fs2-grpc codegen...

I correctly understand that there is no possibility to send metadata with response?

Initial draft for #668 Example output for TestServiceFs2Grpc ```scala package hello.world import _root_.cats.syntax.all._ trait TestServiceFs2Grpc[F[_], A] { def noStreaming(request: hello.world.TestMessage, ctx: A): F[hello.world.TestMessage] def clientStreaming(request: _root_.fs2.Stream[F, hello.world.TestMessage], ctx: A): F[hello.world.TestMessage]...

When we update our project to `sbt-fs2-grpc:2.7.10` and use it with `sbt-version-policy`, we suddenly get incompatible version change errors: ```console [error] Incompatibilities with dependencies of grpc:1.1.0 [error] com.google.guava:guava: incompatible version...

Grpc has support for interceptors on both client and server. Having such tools in this library could facilitate improvements in usage (for instance tracing and authorization). The ideas proposed here...

This PR adds service descriptor in the code generator for gRPC services. The service descriptor is useful to get general information about the service. For instance, in our case, we...