You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2022/02/17 11:10:27 UTC

[dubbo-go] branch develop updated (591a305 -> 4e52b9f)

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

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


    from 591a305  format imports 3.0 (#1740)
     add 3f2d6ba  build(deps): bump go.etcd.io/etcd/client/v3 from 3.5.0 to 3.5.2 (#1743)
     add c5063dd  build(deps): bump go.etcd.io/etcd/api/v3 from 3.5.1 to 3.5.2 (#1742)
     add 58eef8b  build(deps): bump go.etcd.io/etcd/server/v3 from 3.5.0-alpha.0 to 3.5.2 (#1741)
     add 2cf7424  fix(config): fix the type of reject request (#1749)
     add 4e70d93  add exist flag to extensions.GetXX methods (#1733)
     add 74eb62e  feat: add tools v1.0.9 introduction (#1746)
     add 1cc4bcc  fix(adasvc): do not use adaptive service filter if disabled on the client side (#1748)
     add b087b84  refine client name id (#1751)
     add 8aea261  fix tps filter panic bug(pre-check the configuration of tps at the st… (#1604)
     add 418d9d8  build(deps): bump go.uber.org/zap from 1.20.0 to 1.21.0 (#1752)
     add 1ec510b  Release 3.0.1 CHANGELOG
     add af27183  Release 3.0.1 CHANGELOG
     add 4e52b9f  Merge pull request #1753 from PhilYue/changelog3.0

No new revisions were added by this update.

Summary of changes:
 CHANGELOG.md                                     |  26 +++
 README.md                                        |   3 +-
 README_CN.md                                     |   3 +-
 cluster/cluster/adaptivesvc/cluster_invoker.go   |   1 +
 common/constant/cluster.go                       |   4 +
 common/constant/key.go                           |   7 +-
 common/extension/auth.go                         |   6 +-
 common/extension/cluster.go                      |  15 +-
 common/extension/config_center.go                |  15 +-
 common/extension/config_center_factory.go        |  12 +-
 common/extension/filter.go                       |  10 +-
 common/extension/tps_limit.go                    |  16 +-
 config/config_center_config.go                   |  14 +-
 config/config_utils.go                           |   6 +
 config/config_utils_test.go                      |  20 ++
 config/graceful_shutdown_config.go               |   4 +-
 config/graceful_shutdown_config_test.go          |   2 +-
 config/metadata_report_config.go                 |  11 +-
 config/method_config.go                          |  52 ++++-
 config/reference_config.go                       |  14 +-
 config/registry_config.go                        |   9 +-
 config/remote_config.go                          |   8 +-
 config/service_config.go                         | 237 ++++++++++++++---------
 config_center/file/impl_test.go                  |   4 +-
 filter/adaptivesvc/filter.go                     |   9 +
 filter/auth/default_authenticator.go             |   9 +-
 filter/exec_limit/filter.go                      |   7 +-
 filter/graceful_shutdown/procider_filter_test.go |   2 +-
 filter/graceful_shutdown/provider_filter.go      |  21 +-
 filter/tps/filter.go                             |  14 +-
 filter/tps/limiter/method_service.go             |  21 +-
 filter/tps/limiter/method_service_test.go        |   3 +-
 go.mod                                           |   8 +-
 go.sum                                           |  79 ++++++--
 registry/directory/directory.go                  |  10 +-
 registry/protocol/protocol.go                    |   6 +-
 36 files changed, 465 insertions(+), 223 deletions(-)