Releases: join-com/protoc-gen-ts
Releases · join-com/protoc-gen-ts
2.3.1
2.3.0
New features
- Add field masks support
2.2.1
Fixes
- Fixes duplicated type in Root error when locally generated files (without custom Root) are imported after the ones from another package (with custom Root)
2.2.0
New features
- Generates new client interface with error handler and without a custom trace.
- Removed custom decorator for common types. Requires to define a new Root instance when a new gRPC package is registered.
2.1.1
Fixes
- Error
can not read property encode of undefined
when google.protobuf.Empty class is used multiple times
2.1.0
2.0.5
2.0.4
2.0.3
Fixes
- Under some circumstances, missing values in nested objects might be mistakenly decoded as the "zero value" for their correspondent type. This was due to an optimization that tried to avoid calling the internal method
.asInterface()
when possible. In an ideal world, that would be OK, but the desired behavior goes against how proto3 is supposed to work, so calling.asInterface
seems to be unavoidable.