This is an automated email from the ASF dual-hosted git repository.
yuxuan pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git
from baa0daa47 THRIFT-5653: Update TType.uuid raw value to 16 (#2717)
add 19c13b4cc THRIFT-5650: Implement UUID in Go library
No new revisions were added by this update.
Summary of changes:
.github/workflows/build.yml | 16 +-
LANGUAGES.md | 2 +-
build/docker/ubuntu-bionic/Dockerfile | 4 +-
build/docker/ubuntu-jammy/Dockerfile | 4 +-
go.mod | 9 +-
go.sum | 24 +-
lib/go/test/tests/protocol_mock.go | 602 ++++++++++++++++++++++------------
lib/go/thrift/binary_protocol.go | 14 +
lib/go/thrift/compact_protocol.go | 20 ++
lib/go/thrift/debug_protocol.go | 16 +
lib/go/thrift/duplicate_protocol.go | 12 +
lib/go/thrift/header_protocol.go | 8 +
lib/go/thrift/json_protocol.go | 1 -
lib/go/thrift/pointerize.go | 1 +
lib/go/thrift/protocol.go | 5 +
lib/go/thrift/protocol_test.go | 56 ++++
lib/go/thrift/simple_json_protocol.go | 15 +-
lib/go/thrift/type.go | 7 +-
lib/go/thrift/uuid.go | 130 ++++++++
lib/go/thrift/uuid_test.go | 290 ++++++++++++++++
20 files changed, 1009 insertions(+), 227 deletions(-)
create mode 100644 lib/go/thrift/uuid.go
create mode 100644 lib/go/thrift/uuid_test.go