You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by la...@apache.org on 2021/10/27 03:48:58 UTC

[dubbo-go] branch ftr/metrics updated (ed7be3e -> e4723f4)

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

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


    from ed7be3e  fix: import relise to pass ut
     add 1c38c03  Format: add blank/space
     add 6cd738c  Fix: heartbeat's timeout will modify consumer's timeout (#1532)
     add b1a1617  Support Apollo secret (#1533)
     add d35f7cb  Merge branch '3.0' of https://github.com/apache/dubbo-go into 3.0
     add a15f72a  Fix: set default  refernce check to true (#1531)
     add e551945  add dynamic route config (#1519)
     add e9e8b25  build(deps): bump github.com/knadh/koanf from 1.2.4 to 1.3.0
     add ce1b4ed  Merge pull request #1534 from apache/dependabot/go_modules/3.0/github.com/knadh/koanf-1.3.0
     add 68ac846  build(deps): bump github.com/dubbogo/gost from 1.11.18 to 1.11.19
     add a45fd29  Merge pull request #1535 from apache/dependabot/go_modules/3.0/github.com/dubbogo/gost-1.11.19
     add e4723f4  Merge remote-tracking branch 'upstream/3.0' into ftr/metrics

No new revisions were added by this update.

Summary of changes:
 CONTRIBUTING.md                                    |  16 +-
 cluster/directory/base/directory_test.go           |   2 +-
 cluster/directory/static/directory.go              |   3 +-
 cluster/router/chain/chain.go                      |  21 +-
 cluster/router/router.go                           |  13 +-
 cluster/router/v3router/dubbo_rule.go              |  61 ------
 cluster/router/v3router/factory.go                 |   9 +-
 cluster/router/v3router/factory_test.go            |  35 ----
 .../v3router/k8s_api/listener_handler_impl.go      |   2 +-
 cluster/router/v3router/k8s_crd/client.go          |   2 +-
 cluster/router/v3router/router_chain.go            | 214 ++++++++++-----------
 cluster/router/v3router/router_chain_test.go       |  65 +++----
 cluster/router/v3router/uniform_route.go           |  26 ++-
 cluster/router/v3router/uniform_rule.go            |  27 +--
 common/constant/key.go                             |  27 +--
 common/extension/router_factory.go                 |   7 +-
 config/config_center_config.go                     |  61 +++---
 ...config_test.go => config_center_config_test.go} |  12 +-
 config/reference_config.go                         |   2 +-
 config/testdata/config/center/apollo.yaml          |   8 +
 config/uniform_router_config.go                    |  21 +-
 config_center/apollo/impl.go                       |  28 +--
 config_center/apollo/impl_test.go                  |   2 +-
 config_center/mock_dynamic_config.go               |   4 +-
 config_center/zookeeper/impl.go                    |  28 ++-
 config_center/zookeeper/listener.go                |  13 +-
 go.mod                                             |   6 +-
 go.sum                                             |  29 ++-
 imports/imports.go                                 |   1 +
 registry/directory/directory.go                    |   6 +-
 registry/protocol/protocol.go                      |   4 +-
 remoting/getty/listener.go                         |   2 +-
 remoting/zookeeper/listener.go                     |   9 +-
 33 files changed, 354 insertions(+), 412 deletions(-)
 delete mode 100644 cluster/router/v3router/dubbo_rule.go
 delete mode 100644 cluster/router/v3router/factory_test.go
 copy config/{application_config_test.go => config_center_config_test.go} (78%)
 create mode 100644 config/testdata/config/center/apollo.yaml