This is an automated email from the ASF dual-hosted git repository.
alexstocks pushed a change to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git.
from 9119d58 Merge pull request #1076 from wenxuwan/move_etcd_to_gost
new 789d3b0 ftr: add triple support
new 8ebf52e fix: change name
new b0bd3d8 Fix: delete unused replace
new e0e2993 fix: go fmt
new 72ae2c1 fix
new 72e91db fix: dependency bug
new 3aa8f1c fix: dependency bug
new e930603 fix: add gen-dubbo3 go mod to pass ci
new c5fcc1f Fix: fix ci lint
new 956e382 fix: change ci go-version
new a96927f fix: add liscense
new 3466d14 Fix: change gost version
new 83ff336 fix: fix cr
new 7553e83 fix: destroy invoker smoothly
new 57b92f9 fix: change triple struct
new 53799e8 Fix: change triple api and add test file
new bbc9af2 fix: fix ci
new c1f9073 fix: change ctx key type
new 98100e8 fix: fix linter
new c5e638d fix: fix linter
new 1d0f9fc fix: add liscense
new 95e0460 Fix: fix test
new 90e3a32 fix: change port
new b37dd9f fix: change port
new 25cdffb fix: change port
new 31d9cd2 fix: change lock range
new e4f7549 Fix: delete debug
new 5a359fa fix: restart ci
new 4152114 fix: fix test
new a7a2c30 fix: add serializer option
new fb540d9 fix: change triple
new 3452103 fixï: add hessian support
new d785615 feat: add triple hessian support
new 6a76922 fix: change go mod
new 69136b3 fix: change consul
new 00ae936 fix: triple finish
new e8bad05 fix: fix import block
new 8b5ac5d fix: restart ci
new 5a5103b fix: restart ci
new 36fc244 fix: restart ci
new 9202654 fix: update golang ci
new 6ff62af fix: fix conflict
new 72abb01 fix: fix zk import
new 9b0e5ea fix: change ci lint vesion
new 2d54f5c fix: conflict
new ca7f3a8 Merge pull request #1071 from LaurenceLiZhixin/Ftr/triple
The 3916 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/workflows/github-actions.yml | 2 +-
config/config_api_test.go | 1 -
go.mod | 17 +-
go.sum | 84 ++++--
protocol/{grpc => dubbo3}/common_test.go | 11 +-
.../dubbo3_exporter.go} | 24 +-
.../dubbo_invoker.go => dubbo3/dubbo3_invoker.go} | 149 +++++-----
.../dubbo3_invoker_test.go} | 24 +-
protocol/dubbo3/dubbo3_protocol.go | 205 +++++++++++++
.../dubbo3_protocol_test.go} | 74 +++--
protocol/{grpc => dubbo3}/internal/client.go | 10 +-
.../examples => dubbo3/internal}/helloworld.pb.go | 108 +++----
.../dubbo3/internal/helloworld.proto | 36 +--
protocol/dubbo3/internal/server.go | 65 ++++
.../protoc-gen-dubbo3}/examples/Makefile | 4 +-
.../protoc-gen-dubbo3}/examples/helloworld.pb.go | 71 +++--
.../protoc-gen-dubbo3/examples/helloworld.proto | 32 +-
protocol/dubbo3/protoc-gen-dubbo3/go.mod | 10 +
.../dubbo3/protoc-gen-dubbo3}/go.sum | 295 +++++++++++++++----
.../protoc-gen-dubbo3}/main.go | 4 +-
.../protoc-gen-dubbo3/plugin/dubbo3/dubbo3.go} | 73 ++++-
registry/zookeeper/listener.go | 3 +-
registry/zookeeper/listener_test.go | 1 +
test/integrate/dubbo/go-client/go.mod | 2 +-
.../integrate/dubbo/go-client}/go.sum | 326 ++++++++++++++++-----
test/integrate/dubbo/go-server/go.mod | 2 +-
.../integrate/dubbo/go-server}/go.sum | 326 ++++++++++++++++-----
27 files changed, 1444 insertions(+), 515 deletions(-)
copy protocol/{grpc => dubbo3}/common_test.go (93%)
copy protocol/{dubbo/dubbo_exporter.go => dubbo3/dubbo3_exporter.go} (69%)
copy protocol/{dubbo/dubbo_invoker.go => dubbo3/dubbo3_invoker.go} (56%)
copy protocol/{grpc/grpc_invoker_test.go => dubbo3/dubbo3_invoker_test.go}
(78%)
create mode 100644 protocol/dubbo3/dubbo3_protocol.go
copy protocol/{grpc/grpc_invoker_test.go => dubbo3/dubbo3_protocol_test.go}
(52%)
copy protocol/{grpc => dubbo3}/internal/client.go (85%)
copy protocol/{grpc/protoc-gen-dubbo/examples =>
dubbo3/internal}/helloworld.pb.go (76%)
copy metadata/definition/mock.go => protocol/dubbo3/internal/helloworld.proto
(60%)
create mode 100644 protocol/dubbo3/internal/server.go
copy protocol/{grpc/protoc-gen-dubbo =>
dubbo3/protoc-gen-dubbo3}/examples/Makefile (91%)
copy protocol/{grpc/protoc-gen-dubbo =>
dubbo3/protoc-gen-dubbo3}/examples/helloworld.pb.go (88%)
copy config/mock_rpcservice.go =>
protocol/dubbo3/protoc-gen-dubbo3/examples/helloworld.proto (61%)
create mode 100644 protocol/dubbo3/protoc-gen-dubbo3/go.mod
copy {tools/cli/example/server => protocol/dubbo3/protoc-gen-dubbo3}/go.sum
(80%)
copy protocol/{grpc/protoc-gen-dubbo => dubbo3/protoc-gen-dubbo3}/main.go (93%)
copy protocol/{grpc/protoc-gen-dubbo/plugin/dubbo/dubbo.go =>
dubbo3/protoc-gen-dubbo3/plugin/dubbo3/dubbo3.go} (74%)
copy {tools/cli/example/server => test/integrate/dubbo/go-client}/go.sum (78%)
copy {tools/cli/example/server => test/integrate/dubbo/go-server}/go.sum (78%)