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

[dubbo-go] branch 3.0 updated (a9e9f9a -> a32573b)

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

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


    from a9e9f9a  add properties resolver (#1496)
     add 9220fa4  feat(config): add root config api builder (#1491)
     add 929b2f4  fix: finish api
     add f294899  fix: pass ut
     add e6afd57  fix: update uuid version
     add 0d03ae4  fix: change to IDs
     add 5d79305  fix: change API to IDs
     add b1fa50a  fix: add SetSerialization api
     add f7ecfb6  fix: add more api
     new a32573b  Merge pull request #1499 from apache/config-api

The 1 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:
 common/url.go                                      |   2 +-
 config/application_config.go                       |  69 ++-
 config/config_center_config.go                     | 143 ++---
 config/config_loader.go                            |  14 +-
 config/config_loader_test.go                       | 593 ---------------------
 config/consumer_config.go                          | 165 ++----
 config/dubbo_bootstrap.go                          | 110 ----
 config/graceful_shutdown_config.go                 |  37 ++
 config/graceful_shutdown_test.go                   |   6 +-
 config/logger_config.go                            |  35 +-
 config/metadata_report_config.go                   |  59 +-
 config/metric_config.go                            |  57 +-
 config/protocol_config.go                          |  72 +--
 config/provider_config.go                          | 127 +++--
 config/provider_config_test.go                     |  10 +-
 config/reference_config.go                         | 100 ++--
 config/registry_config.go                          | 109 +++-
 config/remote_config.go                            |  80 ++-
 config/root_config.go                              | 336 +++++++-----
 config/router_config.go                            |  93 +++-
 config/service_config.go                           | 191 +++----
 config/service_discovery_config.go                 |  34 +-
 config/testdata/application.yaml                   |   4 +-
 config/testdata/config/app/application.yaml        |   2 +-
 config/testdata/config/provider/application.yaml   |   4 +-
 .../config/provider/registry_application.yaml      |   4 +-
 config/testdata/consumer_config.yml                |   2 +-
 .../testdata/consumer_config_with_configcenter.yml |   2 +-
 .../testdata/consumer_config_withoutProtocol.yml   |   2 +-
 config/testdata/provider_config.yml                |   2 +-
 .../testdata/provider_config_withoutProtocol.yml   |   2 +-
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 metadata/service/exporter/configurable/exporter.go |  29 +-
 .../service/exporter/configurable/exporter_test.go |   7 +-
 metrics/prometheus/reporter.go                     |   1 +
 protocol/dubbo3/internal/server.go                 |  29 +-
 protocol/grpc/grpc_protocol_test.go                |   4 +-
 registry/protocol/protocol.go                      |   2 +-
 remoting/nacos/builder_test.go                     |   2 +-
 40 files changed, 1051 insertions(+), 1495 deletions(-)
 delete mode 100644 config/config_loader_test.go
 delete mode 100644 config/dubbo_bootstrap.go

[dubbo-go] 01/01: Merge pull request #1499 from apache/config-api

Posted by zh...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zhaoyunxing pushed a commit to branch 3.0
in repository https://gitbox.apache.org/repos/asf/dubbo-go.git

commit a32573b7479ec87c65136b5f75aac32f98355819
Merge: a9e9f9a f7ecfb6
Author: zhaoyunxing <zh...@apache.org>
AuthorDate: Mon Oct 4 15:48:50 2021 +0800

    Merge pull request #1499 from apache/config-api
    
    New Config API support

 common/url.go                                      |   2 +-
 config/application_config.go                       |  69 ++-
 config/config_center_config.go                     | 143 ++---
 config/config_loader.go                            |  14 +-
 config/config_loader_test.go                       | 593 ---------------------
 config/consumer_config.go                          | 165 ++----
 config/dubbo_bootstrap.go                          | 110 ----
 config/graceful_shutdown_config.go                 |  37 ++
 config/graceful_shutdown_test.go                   |   6 +-
 config/logger_config.go                            |  35 +-
 config/metadata_report_config.go                   |  59 +-
 config/metric_config.go                            |  57 +-
 config/protocol_config.go                          |  72 +--
 config/provider_config.go                          | 127 +++--
 config/provider_config_test.go                     |  10 +-
 config/reference_config.go                         | 100 ++--
 config/registry_config.go                          | 109 +++-
 config/remote_config.go                            |  80 ++-
 config/root_config.go                              | 336 +++++++-----
 config/router_config.go                            |  93 +++-
 config/service_config.go                           | 191 +++----
 config/service_discovery_config.go                 |  34 +-
 config/testdata/application.yaml                   |   4 +-
 config/testdata/config/app/application.yaml        |   2 +-
 config/testdata/config/provider/application.yaml   |   4 +-
 .../config/provider/registry_application.yaml      |   4 +-
 config/testdata/consumer_config.yml                |   2 +-
 .../testdata/consumer_config_with_configcenter.yml |   2 +-
 .../testdata/consumer_config_withoutProtocol.yml   |   2 +-
 config/testdata/provider_config.yml                |   2 +-
 .../testdata/provider_config_withoutProtocol.yml   |   2 +-
 go.mod                                             |   2 +-
 go.sum                                             |   4 +-
 metadata/service/exporter/configurable/exporter.go |  29 +-
 .../service/exporter/configurable/exporter_test.go |   7 +-
 metrics/prometheus/reporter.go                     |   1 +
 protocol/dubbo3/internal/server.go                 |  29 +-
 protocol/grpc/grpc_protocol_test.go                |   4 +-
 registry/protocol/protocol.go                      |   2 +-
 remoting/nacos/builder_test.go                     |   2 +-
 40 files changed, 1051 insertions(+), 1495 deletions(-)