Type everything! #74
thesayyn
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
With this release, we have covered every inch of the generated code to be type-safe.
In #48, we introduced a new union type, that ensures one of the "one-of-fields" is present at most.
In #72, we introduced a new way to implement grpc services and fully typed service clients.
We introduced a few breaking changes to the generated service classes that would require some small changes in your codebase to comply with the breaking changes.
Breaking changes
interface
I{ServiceName}Service
is not generated anymore. Usetypeof Unimplemented{ServiceName}Service.definition
as a replacement.interface
I{ServiceName}Server
is not generated anymore. UseUnimplemented{ServiceName}Service
abstract class and extend your concrete service implementation from it. For further information see rpc.constant
{ServiceName}
is not generated anymore. UseUnimplemented{ServiceName}Service.definition
as a replacement.Features
{ServiceName}Client
is now fully typed. Including the rpcs inside the service not matterclient_streaming
,server_streaming
,bidi
orunary
.This discussion was created from the release Type everything!.
Beta Was this translation helpful? Give feedback.
All reactions