Releases: loopholelabs/frpc-go
Releases · loopholelabs/frpc-go
v0.7.0
Features
- fRPC now uses the
VarInt
encoding format under the hood (added in polyglot-go v0.5.0) which should help reduce the number of bytes an RPC call is serialized to - A new
CloseError
type has been added which, when returned by an RPC call, causes the connection to be closed after the message is written. This can be useful for authentication or connection management. - Streaming is now available! The API matches gRPC's so it should be a drop-in replacement!
Changes
- The polyglot-go dependency has been bumped to
v0.5.0
- The frisbee-go dependency has been b umped to
v0.7.0
v0.6.0
Changes
- Refactoring the generated code to use the polyglot-go library to generate message encode/decode functions. (#3)
Fixes
- Fixed an issue with the generated code that caused compilation issues when the names of two methods in different services
were the same (#5)