v0.0.44
What's Changed
This version has breaking changes between the generated code and the runtime. Run yarn twirspcript
to update your generated .pb.ts
when updating to this version.
TwirpScript now ships with JSON serializers and supports the json_name
option described here. This enables clients to specify custom JSON field names.
Breaking change: int64 types were previously encoded as strings, but are now encoded as bigint.
Changes:
- add json_name support by @tatethurston in #116
- use bigint for int64 types by @tatethurston in #118
Full Changelog: v0.0.43...v0.0.44