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 2021/06/28 09:31:10 UTC

[dubbo] branch 3.0.1-release updated (6d56c2e -> 8ca6acb)

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

albumenj pushed a change to branch 3.0.1-release
in repository https://gitbox.apache.org/repos/asf/dubbo.git.


    from 6d56c2e  Merge remote-tracking branch 'apache/3.0' into 3.0.1-release
     add 897687f  Print warn log instead of throw exception. (#8142)
     add 01f2261  ignore duplicated equivalent config (#8144)
     add c263172  Get bean by name, avoid early init other FactoryBean (#8149)
     add 9da9857  [3.0] Support config mode for unique config types (#8150)
     add 10609c3  Clone ServiceInstance for multi registry (#8156)
     add 39292a0  Optimize performance & Fix some potential bugs (#8155)
     new 8ca6acb  Merge remote-tracking branch 'apache/3.0' into 3.0.1-release

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:
 .../rpc/cluster/loadbalance/RandomLoadBalance.java |  36 ++++++++
 .../cluster/router/mesh/route/MeshRuleRouter.java  |   4 +
 .../cluster/support/FailfastClusterInvoker.java    |   2 +-
 .../main/java/org/apache/dubbo/common/Version.java |   7 +-
 .../dubbo/config/AbstractInterfaceConfig.java      |   3 +-
 .../apache/dubbo/config/context/ConfigManager.java | 101 +++++++++++++--------
 .../Level.java => config/context/ConfigMode.java}  |  41 ++-------
 .../apache/dubbo/rpc/model/ApplicationModel.java   |  37 ++++++--
 .../dubbo/config/context/ConfigManagerTest.java    |  62 +++++++++++++
 .../dubbo/config/bootstrap/DubboBootstrap.java     |   7 +-
 .../annotation/ServiceAnnotationPostProcessor.java |   2 +-
 .../DubboConfigInitializationPostProcessor.java    |  10 --
 .../DubboInfraBeanRegisterPostProcessor.java       |  10 ++
 .../store/InMemoryWritableMetadataService.java     |   5 +
 .../remoting/transport/netty4/NettyServer.java     |   9 +-
 .../dubbo/rpc/protocol/dubbo/DubboProtocol.java    |   2 +-
 .../protocol/dubbo/LazyConnectExchangeClient.java  |   4 +-
 .../DubboConfigurationProperties.java              |  15 +++
 18 files changed, 255 insertions(+), 102 deletions(-)
 copy dubbo-common/src/main/java/org/apache/dubbo/{common/logger/Level.java => config/context/ConfigMode.java} (61%)

[dubbo] 01/01: Merge remote-tracking branch 'apache/3.0' into 3.0.1-release

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

albumenj pushed a commit to branch 3.0.1-release
in repository https://gitbox.apache.org/repos/asf/dubbo.git

commit 8ca6acb7278b0eaa9433081b3a2ac149822863d2
Merge: 6d56c2e 39292a0
Author: Albumen Kevin <jh...@gmail.com>
AuthorDate: Mon Jun 28 17:30:37 2021 +0800

    Merge remote-tracking branch 'apache/3.0' into 3.0.1-release

 .../rpc/cluster/loadbalance/RandomLoadBalance.java |  36 ++++++++
 .../cluster/router/mesh/route/MeshRuleRouter.java  |   4 +
 .../cluster/support/FailfastClusterInvoker.java    |   2 +-
 .../main/java/org/apache/dubbo/common/Version.java |   7 +-
 .../dubbo/config/AbstractInterfaceConfig.java      |   3 +-
 .../apache/dubbo/config/context/ConfigManager.java | 101 +++++++++++++--------
 .../apache/dubbo/config/context/ConfigMode.java    |  38 ++++++++
 .../apache/dubbo/rpc/model/ApplicationModel.java   |  37 ++++++--
 .../dubbo/config/context/ConfigManagerTest.java    |  62 +++++++++++++
 .../dubbo/config/bootstrap/DubboBootstrap.java     |   7 +-
 .../annotation/ServiceAnnotationPostProcessor.java |   2 +-
 .../DubboConfigInitializationPostProcessor.java    |  10 --
 .../DubboInfraBeanRegisterPostProcessor.java       |  10 ++
 .../store/InMemoryWritableMetadataService.java     |   5 +
 .../remoting/transport/netty4/NettyServer.java     |   9 +-
 .../dubbo/rpc/protocol/dubbo/DubboProtocol.java    |   2 +-
 .../protocol/dubbo/LazyConnectExchangeClient.java  |   4 +-
 .../DubboConfigurationProperties.java              |  15 +++
 18 files changed, 283 insertions(+), 71 deletions(-)