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

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


    from 59bef4dd1 fix service discovery, generate url for each service.
     add 9846844d9 build(deps): bump github.com/apache/dubbo-getty (#2228)
     add 91a0465ce build(deps): bump github.com/envoyproxy/go-control-plane 
(#2229)
     add 1034562f5 support java wrapper types (#2222)
     add b492dba48 build(deps): bump github.com/stretchr/testify from 1.8.1 to 
1.8.2 (#2232)
     add b4ad6a383 feat: expose TLSConfig for config api (#2245)
     add a5ebff74b [ISSUE #2216] fix register instance protocol info to polaris 
when use tripe (#2238)
     add 60127ccfc tablewrite cli show (#2237)
     add 5302d5f06 build(deps): bump google.golang.org/protobuf from 1.28.1 to 
1.30.0 (#2255)
     add edf89ae7c build(deps): bump github.com/go-playground/validator/v10 
(#2254)
     add 44827e1dd [Bugfix] Custom triple server message size (#2246)
     add 02a1d5b93 add serviceMappingListener for application service discovery 
(#2205)
     add 6c26c9912 feat: implement RemoveConfig API for nacos and zookeeper 
(#2234)
     add 830fd4aba build(deps): bump github.com/dustin/go-humanize from 1.0.0 
to 1.0.1 (#2270)
     new 01ac8a5ca Merge branch '3.0' into 3.1
     new c1558f1a6 fix conflicts

The 2 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/constant/default.go                         |  10 +
 common/constant/key.go                             |   1 +
 common/url.go                                      |   2 +
 config/instance/metadata_report_test.go            |   7 +-
 config/metric_config.go                            |   1 +
 config/protocol_config.go                          |  16 +
 config/protocol_config_test.go                     |   3 +
 config/root_config.go                              |  13 +
 config/service_config.go                           |   9 +-
 config/testdata/config/protocol/application.yaml   |   7 +-
 config/tls_config.go                               |  52 ++
 ...discovery_config_test.go => tls_config_test.go} |  21 +-
 config_center/nacos/impl.go                        |  16 +
 config_center/zookeeper/impl.go                    |  10 +
 go.mod                                             |  26 +-
 go.sum                                             | 697 +++++++++++++++++++--
 metadata/mapping/memory/service_name_mapping.go    |   7 +-
 metadata/mapping/metadata/service_name_mapping.go  |  11 +-
 metadata/mapping/mock_service_name_mapping.go      |   7 +-
 metadata/mapping/service_name_mapping.go           |   4 +-
 metadata/report/etcd/report.go                     |   7 +-
 metadata/report/nacos/report.go                    |  51 +-
 metadata/report/report.go                          |   6 +-
 metadata/report/zookeeper/report.go                |   7 +-
 metadata/service/remote/service_test.go            |   7 +-
 protocol/dubbo3/dubbo3_invoker.go                  |  17 +-
 protocol/dubbo3/dubbo3_protocol.go                 |  18 +-
 protocol/grpc/client.go                            |  17 +-
 protocol/grpc/client_test.go                       |   7 +
 protocol/grpc/grpc_protocol.go                     |   4 -
 protocol/grpc/server.go                            |  15 +-
 registry/event.go                                  |  27 +
 registry/nacos/service_discovery_test.go           |   4 +-
 registry/polaris/registry.go                       |   2 +-
 registry/polaris/service_discovery.go              |  11 +-
 registry/polaris/utils.go                          |   4 -
 ...{doc.go => service_mapping_changed_listener.go} |  10 +-
 .../servicediscovery/service_discovery_registry.go |  77 ++-
 .../service_instances_changed_listener_impl.go     |   2 +-
 .../service_mapping_change_listener_impl.go        | 108 ++++
 remoting/zookeeper/listener.go                     |   5 +
 tools/dubbogo-cli/cmd/show.go                      |  15 +-
 tools/dubbogo-cli/go.mod                           |  35 +-
 tools/dubbogo-cli/go.sum                           |   3 +-
 44 files changed, 1194 insertions(+), 185 deletions(-)
 copy config/{service_discovery_config_test.go => tls_config_test.go} (66%)
 copy registry/{doc.go => service_mapping_changed_listener.go} (86%)
 rename registry/{event => 
servicediscovery}/service_instances_changed_listener_impl.go (99%)
 create mode 100644 
registry/servicediscovery/service_mapping_change_listener_impl.go

Reply via email to