This is an automated email from the ASF dual-hosted git repository.

alexstocks pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git


    from 5b3c17933 fix(test): register custom parser with concurrent safety for 
unit test (#2999)
     new 2eea3eace build(go): upgrade protoc-gen-triple-openapi go verison 
(#2995)
     new ddc6c60ee test(logger): add logger unit tests (#2993)
     new 1a25a630c fix(test): refactor variable names for clarity and 
consistency in tests (#2997)
     new f6795ffdf feat(protoc): move back protoc-gen-go-triple (#3003)

The 4 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:
 filter/README.md                                   |   2 +-
 filter/accesslog/filter_test.go                    |  14 +-
 filter/active/filter_test.go                       |   4 +-
 filter/auth/accesskey_storage.go                   |   4 +-
 filter/auth/accesskey_storage_test.go              |  10 +-
 filter/auth/default_authenticator.go               |   6 +-
 filter/auth/default_authenticator_test.go          |  74 +--
 filter/auth/provider_auth_filter_test.go           |   8 +-
 filter/auth/sign_util_test.go                      |  11 +-
 filter/exec_limit/filter_test.go                   |   1 +
 filter/generic/filter_test.go                      |   8 +-
 filter/generic/generalizer/protobuf_json_test.go   |  22 +-
 filter/generic/service_filter_test.go              |  18 +-
 filter/graceful_shutdown/consumer_filter_test.go   |  14 +-
 filter/graceful_shutdown/provider_filter_test.go   |  48 +-
 filter/hystrix/filter_test.go                      |  26 +-
 filter/seata/filter_test.go                        |   4 +-
 filter/sentinel/filter_test.go                     |   8 +-
 filter/token/filter_test.go                        |   4 +-
 filter/tps/filter_test.go                          |  18 +-
 logger/core/file_test.go                           |  62 +++
 logger/core/logrus/logrus_test.go                  |  55 ++
 logger/core/zap/zap_test.go                        |  53 ++
 logger/logger_test.go                              |  60 +++
 logger/options_test.go                             |  62 +++
 LICENSE => tools/protoc-gen-go-triple/LICENSE      | 408 ++++++++-------
 tools/protoc-gen-go-triple/README.md               | 101 ++++
 .../gen/generator/gen.go}                          |   5 +-
 .../gen/generator/genTriple.go                     | 139 +++++
 .../gen/generator/tripleTpl.go                     | 517 +++++++++++++++++++
 tools/protoc-gen-go-triple/go.mod                  |   8 +
 tools/protoc-gen-go-triple/go.sum                  |   8 +
 .../internal/old_triple/oldTriple.go               | 567 +++++++++++++++++++++
 .../internal/version/version.go                    |   4 +-
 tools/protoc-gen-go-triple/main.go                 | 100 ++++
 .../protoc-gen-go-triple/test.sh                   |  34 +-
 .../test/correctly/multiple_services/go.mod        |   3 +
 .../test/correctly/multiple_services/go.sum        |   0
 .../correctly/multiple_services/proto}/greet.proto |  17 +-
 .../test/correctly/one_service/go.mod              |   3 +
 .../test/correctly/one_service/go.sum              |   0
 .../test/correctly/one_service/proto}/greet.proto  |  15 +-
 .../tool.go => protoc-gen-go-triple/util/exec.go}  |  33 +-
 .../protoc-gen-go-triple/util/fmt.go               |   7 +-
 .../protoc-gen-go-triple/util/module.go            |  14 +-
 .../protoc-gen-go-triple/util/strings.go           |  26 +-
 tools/protoc-gen-triple-openapi/go.mod             |   4 +-
 tools/protoc-gen-triple-openapi/go.sum             |  18 -
 48 files changed, 2175 insertions(+), 452 deletions(-)
 create mode 100644 logger/core/file_test.go
 create mode 100644 logger/core/logrus/logrus_test.go
 create mode 100644 logger/core/zap/zap_test.go
 create mode 100644 logger/logger_test.go
 create mode 100644 logger/options_test.go
 copy LICENSE => tools/protoc-gen-go-triple/LICENSE (96%)
 create mode 100644 tools/protoc-gen-go-triple/README.md
 copy tools/{protoc-gen-triple-openapi/version.go => 
protoc-gen-go-triple/gen/generator/gen.go} (94%)
 create mode 100644 tools/protoc-gen-go-triple/gen/generator/genTriple.go
 create mode 100644 tools/protoc-gen-go-triple/gen/generator/tripleTpl.go
 create mode 100644 tools/protoc-gen-go-triple/go.mod
 create mode 100644 tools/protoc-gen-go-triple/go.sum
 create mode 100644 tools/protoc-gen-go-triple/internal/old_triple/oldTriple.go
 copy protocol/grpc/internal/doc.go => 
tools/protoc-gen-go-triple/internal/version/version.go (95%)
 create mode 100644 tools/protoc-gen-go-triple/main.go
 copy integrate_test.sh => tools/protoc-gen-go-triple/test.sh (56%)
 mode change 100755 => 100644
 create mode 100644 
tools/protoc-gen-go-triple/test/correctly/multiple_services/go.mod
 create mode 100644 
tools/protoc-gen-go-triple/test/correctly/multiple_services/go.sum
 copy tools/{protoc-gen-triple-openapi/example => 
protoc-gen-go-triple/test/correctly/multiple_services/proto}/greet.proto (77%)
 create mode 100644 tools/protoc-gen-go-triple/test/correctly/one_service/go.mod
 create mode 100644 tools/protoc-gen-go-triple/test/correctly/one_service/go.sum
 copy tools/{protoc-gen-triple-openapi/example => 
protoc-gen-go-triple/test/correctly/one_service/proto}/greet.proto (79%)
 copy tools/{dubbogo-cli/internal/common/tool.go => 
protoc-gen-go-triple/util/exec.go} (64%)
 copy config/config_setter.go => tools/protoc-gen-go-triple/util/fmt.go (88%)
 copy cluster/loadbalance/loadbalance.go => 
tools/protoc-gen-go-triple/util/module.go (79%)
 copy filter/adaptivesvc/limiter/utils.go => 
tools/protoc-gen-go-triple/util/strings.go (72%)

Reply via email to