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/01/08 03:21:24 UTC

[dubbo-go] branch master updated (8ebe119 -> 9f3f92c)

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

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


    from 8ebe119  Merge branch 'develop'
     add 5dac598  build(deps): bump github.com/dubbogo/gost from 1.11.20 to 1.11.21
     add 80cc266  fix: ut
     add 2c281fe  build(deps): bump github.com/dubbogo/grpc-go (#1681)
     add 61db3f1  build(deps): bump google.golang.org/grpc from 1.42.0 to 1.43.0 (#1678)
     add 20700ab  Fix: conflict
     add 0e195d1  Merge pull request #1680 from apache/dependabot/go_modules/3.0/github.com/dubbogo/gost-1.11.21
     add 6710138  test(loadbalance): add unittests for p2c (#1686)
     add f578cd6  fix: reference_config add consumer category (#1659) (#1672)
     add 37a40a6  build(deps): bump github.com/apache/dubbo-go-hessian2 (#1690)
     add 5af8e93  build(deps): bump github.com/dubbogo/gost from 1.11.21 to 1.11.22 (#1691)
     add 096a854  update readme (#1694)
     add b6deca6  build(deps): bump github.com/knadh/koanf from 1.3.3 to 1.4.0 (#1699)
     add e95b9b3  build(deps): bump github.com/go-playground/validator/v10 (#1698)
     add d9d2cc5  build(deps): bump github.com/dubbogo/grpc-go from 1.42.6 to 1.42.7 (#1697)
     add dd99cd4  build(deps): bump github.com/dubbogo/triple from 1.1.6 to 1.1.7 (#1696)
     add 3ba5271  fix: revert https://github.com/apache/dubbo-go/pull/1700
     add c4fa4a0  Merge pull request #1701 from LaurenceLiZhixin/3.0
     add 9374686  fix: fix issue #1687
     add 73413da  refactor: fix cr issue
     add 241e239  style: fix code style
     add 7801449  Fix: nacos -> polaris
     add 66b43aa  Merge pull request #1688 from chuntaojun/fix_issue_1687
     add 60ba78d  proxy err log fix
     add a73c7e6  Merge remote-tracking branch 'upstream/3.0' into proxy-errlog
     add d7bccf7  Merge remote-tracking branch 'sanxun/20211102_nacos' into proxy-errlog
     add de4ed3b  Merge remote-tracking branch 'upstream/3.0' into proxy-errlog
     add 6d97804  fix: conflict
     add 4d6cbc7  fix: error return only user level
     add 1f81b2d  Merge pull request #1574 from XiaoWeiKIN/proxy-errlog
     add b048366  Merge pull request #1 from apache/3.0
     add 08708bd  Merge branch 'apache:3.0' into 3.0
     add b343b9a  improve etcd version and change create to put
     add 4279f22  Merge branch 'apache:3.0' into 3.0
     add 8f82498  Merge branch '3.0' of https://github.com/ztelur/dubbo-go into 3.0
     add 1fa8a6e  Merge branch '3.0' of https://github.com/ztelur/dubbo-go into 3.0
     add 4a13d26  triple attachment
     add 0ce9c56  Merge remote-tracking branch 'upstream/3.0' into bugfix-triple-attachment
     add ccf2dca  Merge pull request #1700 from ztelur/bugfix-triple-attachment
     add 4496cef  3.0 pr template (#1703)
     new 9f3f92c  Merge branch 'develop'

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:
 .github/PULL_REQUEST_TEMPLATE.md                   |  27 ++--
 Makefile                                           |   5 +
 README.md                                          |   2 +-
 README_CN.md                                       |   4 +-
 cluster/cluster/adaptivesvc/cluster_invoker.go     |   6 +-
 cluster/cluster/available/cluster_invoker.go       |   6 +-
 cluster/cluster/available/cluster_invoker_test.go  |   2 +-
 cluster/loadbalance/p2c/loadbalance.go             |  26 +--
 cluster/loadbalance/p2c/loadbalance_test.go        | 178 +++++++++++++++++++++
 cluster/metrics/local_metrics.go                   |   2 +
 cluster/metrics/mock_metrics.go                    | 144 +++++++++++++++++
 common/proxy/proxy.go                              |  15 +-
 filter/seata/filter_test.go                        |   2 +-
 filter/sentinel/filter.go                          |   2 +-
 go.mod                                             |  16 +-
 go.sum                                             |  33 ++--
 metadata/report/delegate/delegate_report_test.go   |   8 +-
 .../local/metadata_service_proxy_factory_test.go   |   2 +-
 protocol/dubbo3/dubbo3_invoker.go                  |  12 ++
 protocol/dubbo3/dubbo3_protocol.go                 |  10 +-
 protocol/invocation/rpcinvocation.go               |   2 +
 protocol/result.go                                 |  12 +-
 registry/polaris/registry.go                       |   9 +-
 registry/polaris/service_discovery.go              |   4 +-
 24 files changed, 437 insertions(+), 92 deletions(-)
 create mode 100644 cluster/loadbalance/p2c/loadbalance_test.go
 create mode 100644 cluster/metrics/mock_metrics.go

[dubbo-go] 01/01: Merge branch 'develop'

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

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

commit 9f3f92c7e5a191fcf3a16e732f9684d160176d78
Merge: 8ebe119 4496cef
Author: AlexStocks <al...@foxmail.com>
AuthorDate: Sat Jan 8 11:20:17 2022 +0800

    Merge branch 'develop'

 .github/PULL_REQUEST_TEMPLATE.md                   |  27 ++--
 Makefile                                           |   5 +
 README.md                                          |   2 +-
 README_CN.md                                       |   4 +-
 cluster/cluster/adaptivesvc/cluster_invoker.go     |   6 +-
 cluster/cluster/available/cluster_invoker.go       |   6 +-
 cluster/cluster/available/cluster_invoker_test.go  |   2 +-
 cluster/loadbalance/p2c/loadbalance.go             |  26 +--
 cluster/loadbalance/p2c/loadbalance_test.go        | 178 +++++++++++++++++++++
 cluster/metrics/local_metrics.go                   |   2 +
 cluster/metrics/mock_metrics.go                    | 144 +++++++++++++++++
 common/proxy/proxy.go                              |  15 +-
 filter/seata/filter_test.go                        |   2 +-
 filter/sentinel/filter.go                          |   2 +-
 go.mod                                             |  16 +-
 go.sum                                             |  33 ++--
 metadata/report/delegate/delegate_report_test.go   |   8 +-
 .../local/metadata_service_proxy_factory_test.go   |   2 +-
 protocol/dubbo3/dubbo3_invoker.go                  |  12 ++
 protocol/dubbo3/dubbo3_protocol.go                 |  10 +-
 protocol/invocation/rpcinvocation.go               |   2 +
 protocol/result.go                                 |  12 +-
 registry/polaris/registry.go                       |   9 +-
 registry/polaris/service_discovery.go              |   4 +-
 24 files changed, 437 insertions(+), 92 deletions(-)