You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by me...@apache.org on 2020/08/27 12:49:47 UTC

[shardingsphere] branch master updated (3743e8a -> 1d84402)

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

menghaoran pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere.git.


    from 3743e8a  Remove useless code (#7105)
     new b5cb555  Move PropertiesChangedEvent to props package
     new f2b7f12  Move AuthenticationChangedEvent to auth package
     new 4311751  Refactor RequiredArgsConstructor.createOrchestrationEvent's return value to Optional
     new df2b3d9  Remove IgnoredOrchestrationEvent
     new c1f0bdb  Move DataSourceChangedEvent
     new 1feecee  Add event.rule package
     new 1d84402  Merge pull request #7107 from terrymanu/dev

The 26459 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/event/IgnoredOrchestrationEvent.java    |  24 ----
 .../{ => auth}/AuthenticationChangedEvent.java     |   3 +-
 .../{ => datasource}/DataSourceChangedEvent.java   |   3 +-
 .../event/{ => props}/PropertiesChangedEvent.java  |   3 +-
 .../event/{ => rule}/EncryptRuleChangedEvent.java  |   3 +-
 .../{ => rule}/MasterSlaveRuleChangedEvent.java    |   3 +-
 .../{ => rule}/RuleConfigurationsChangedEvent.java |   3 +-
 .../event/{ => rule}/ShadowRuleChangedEvent.java   |   3 +-
 .../PostOrchestrationRepositoryEventListener.java  |   6 +-
 .../event/IgnoredOrchestrationEventTest.java       |  32 ------
 ...stOrchestrationRepositoryEventListenerTest.java |   9 +-
 .../listener/AuthenticationChangedListener.java    |  16 +--
 .../config/listener/PropertiesChangedListener.java |  14 ++-
 .../config/listener/SchemaChangedListener.java     |  26 ++---
 .../AuthenticationChangedListenerTest.java         |  12 +-
 .../listener/PropertiesChangedListenerTest.java    |   9 +-
 .../config/listener/SchemaChangedListenerTest.java | 125 +++++++++++----------
 .../metadata/listener/MetaDataChangedListener.java |   5 +-
 .../listener/MetaDataChangedListenerTest.java      |  11 +-
 .../listener/DataSourceStateChangedListener.java   |   8 +-
 .../listener/InstanceStateChangedListener.java     |   6 +-
 .../DataSourceStateChangedListenerTest.java        |  12 +-
 .../listener/InstanceStateChangedListenerTest.java |  13 ++-
 .../core/schema/OrchestrationSchemaContexts.java   |   8 +-
 .../schema/OrchestrationSchemaContextsTest.java    |   8 +-
 .../OrchestrationShardingSphereDataSourceTest.java |   6 +-
 .../JDBCOrchestrationSchemaContextsTest.java       |   2 +-
 .../ProxyOrchestrationSchemaContextsTest.java      |   4 +-
 28 files changed, 185 insertions(+), 192 deletions(-)
 delete mode 100644 shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/IgnoredOrchestrationEvent.java
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => auth}/AuthenticationChangedEvent.java (92%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => datasource}/DataSourceChangedEvent.java (92%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => props}/PropertiesChangedEvent.java (92%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => rule}/EncryptRuleChangedEvent.java (93%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => rule}/MasterSlaveRuleChangedEvent.java (93%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => rule}/RuleConfigurationsChangedEvent.java (93%)
 rename shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/main/java/org/apache/shardingsphere/orchestration/core/common/event/{ => rule}/ShadowRuleChangedEvent.java (93%)
 delete mode 100644 shardingsphere-control-panel/shardingsphere-orchestration/shardingsphere-orchestration-core/shardingsphere-orchestration-core-common/src/test/java/org/apache/shardingsphere/orchestration/core/common/event/IgnoredOrchestrationEventTest.java