You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2020/12/10 10:14:03 UTC

[shardingsphere] branch master updated (c05b58b -> 2a8002c)

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

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


    from c05b58b  Add Authentication.findUser (#8557)
     add 2a8002c  Rename ShardingSphereUser (#8563)

No new revisions were added by this update.

Summary of changes:
 .../governance/core/config/ConfigCenterTest.java   |  4 ++--
 .../AuthenticationChangedListenerTest.java         |  4 ++--
 .../core/facade/GovernanceFacadeTest.java          |  6 +++---
 .../shardingsphere/infra/auth/Authentication.java  |  4 ++--
 .../{ProxyUser.java => ShardingSphereUser.java}    |  4 ++--
 .../config/YamlAuthenticationConfiguration.java    |  2 +-
 ...va => YamlShardingSphereUserConfiguration.java} |  4 ++--
 .../yaml/swapper/AuthenticationYamlSwapper.java    |  6 +++---
 ...per.java => ShardingSphereUserYamlSwapper.java} | 18 +++++++++---------
 ...EngineShardingSphereUserConfigurationTest.java} |  6 +++---
 .../swapper/AuthenticationYamlSwapperTest.java     | 18 +++++++++---------
 ...java => ShardingSphereUserYamlSwapperTest.java} | 22 +++++++++++-----------
 .../schema/impl/ShowDatabasesBackendHandler.java   |  4 ++--
 .../schema/impl/UseDatabaseBackendHandler.java     |  4 ++--
 .../SchemaAssignedDatabaseBackendHandlerTest.java  |  6 +++---
 .../impl/UnicastDatabaseBackendHandlerTest.java    |  6 +++---
 .../impl/ShowDatabasesBackendHandlerTest.java      |  6 +++---
 .../schema/impl/ShowTablesBackendHandlerTest.java  |  6 +++---
 .../schema/impl/UseDatabaseBackendHandlerTest.java |  6 +++---
 .../impl/GovernanceBootstrapInitializerTest.java   |  6 +++---
 .../impl/StandardBootstrapInitializerTest.java     | 14 +++++++-------
 .../swapper/YamlProxyConfigurationSwapperTest.java | 18 +++++++++---------
 .../mysql/auth/MySQLAuthenticationHandler.java     |  4 ++--
 .../admin/initdb/MySQLComInitDbExecutor.java       |  4 ++--
 .../frontend/mysql/MySQLFrontendEngineTest.java    | 18 +++++++++---------
 .../mysql/auth/MySQLAuthenticationHandlerTest.java | 16 ++++++++--------
 .../auth/PostgreSQLAuthenticationHandler.java      |  4 ++--
 .../auth/PostgreSQLAuthenticationEngineTest.java   |  4 ++--
 28 files changed, 112 insertions(+), 112 deletions(-)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/auth/{ProxyUser.java => ShardingSphereUser.java} (94%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/auth/yaml/config/{YamlProxyUserConfiguration.java => YamlShardingSphereUserConfiguration.java} (90%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/main/java/org/apache/shardingsphere/infra/auth/yaml/swapper/{ProxyUserYamlSwapper.java => ShardingSphereUserYamlSwapper.java} (63%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/auth/yaml/config/{YamlEngineProxyUserConfigurationTest.java => YamlEngineShardingSphereUserConfigurationTest.java} (87%)
 rename shardingsphere-infra/shardingsphere-infra-common/src/test/java/org/apache/shardingsphere/infra/auth/yaml/swapper/{ProxyUserYamlSwapperTest.java => ShardingSphereUserYamlSwapperTest.java} (61%)