Evgenii Stratonikov
08f43106fe
In protobuf 3.12 they have added an support for `optional` keyword, which has made it into the main branch in 3.15. https://github.com/protocolbuffers/protobuf/blob/main/docs/implementing_proto3_presence.md https://github.com/protocolbuffers/protobuf/blob/v3.12.0/docs/field_presence.md#presence-in-proto3-apis This means that without an explicit `optional` keyword field presence for scalars is not tracked, thus empty string in JSON should be unmarshaled to a nil byte slice. Relevant decoding code and tests from protojson: |
||
---|---|---|
.. | ||
service_frostfs.pb.go | ||
service_frostfs_fuzz.go | ||
service_frostfs_test.go | ||
service_grpc.pb.go | ||
types_frostfs.pb.go | ||
types_frostfs_fuzz.go | ||
types_frostfs_test.go |