This is an automated email from the ASF dual-hosted git repository.
bschuchardt pushed a change to branch feature/GEODE-3923
in repository https://gitbox.apache.org/repos/asf/geode.git.
from 28755d6 GEODE-3923 Provide whitelist/blacklist capability for java
serialization
add a88a0a0 GEODE-1683: fix ClientAuthenticationDUnit test intermittent
failures (#1092)
add 71fdfa9 GEODE-4014: use getVMCount instead of hardcoding number of
VMs (#1089)
add c18cf17 GEODE-3063 partition resolver doc revisions (#1077)
add dd8cb9c Revert "GEODE-3063 partition resolver doc revisions (#1077)"
(#1096)
add 375a8f6 GEODE-3242 Update docs with new --serializer option for
(#1090)
add df0a856 GEODE-3539: add ability to stop a vm without clean out the
working dir (#1094)
add e057702 GEODE-3788: add alter async-event-queue command and tests
add de794ff GEODE-4000: The serializerClass is actually introduced in 1.4
not 1.3. (#1097)
add 4e2560c GEODE-4011: Ensure that LogWrapper is closed correctly in
GfshCommandRule (#1100)
add ba8f963 GEODE-3987: enforce GatewayReceiver uniqueness per member
add 41888fb GEODE-1897 Docs: configure eviction through gfsh (#1098)
add d891343 GEODE-3788: alter async event queue on a locator with no
cluster config service. (#1101)
add de22c2d GEODE-3539: add test coverage for "create async-event-queue"
and "lis… (#1093)
add 375d368 GEODE-3539: enhance rule to start locator joining other
locators (#1104)
add d03b3f0 GEODE-4023: Add precheckin tests to pipeline.
add fa3a8db GEODE-1683: fix ClientAuthorizationDUnit test failures (#1106)
add d65763e GEODE-1897 Docs for gfsh eviction, minor correction.
new 8307e7e Merge branch 'develop' into feature/GEODE-3923
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:
ci/docker/Dockerfile | 32 +-
.../docs/Dockerfile => ci/docker/docker.list | 10 +-
.../docker/docs/Dockerfile => ci/docker/initdocker | 20 +-
.../QueryCommand.java => ci/docker/tini-wrapper.go | 46 +-
ci/pipelines/develop.yml | 284 +++++++-
ci/pipelines/docker-images.yml | 2 +-
ci/scripts/build.sh | 9 +-
ci/scripts/test-archive.sh | 121 ++++
ci/scripts/test-run.sh | 142 ++++
.../internal/ClusterConfigurationService.java | 12 +-
.../cli/commands/AlterAsyncEventQueueCommand.java | 173 +++++
.../cli/commands/CreateAsyncEventQueueCommand.java | 124 ++--
.../ExportImportClusterConfigurationCommands.java | 4 +-
.../internal/cli/commands/GfshCommand.java | 4 +-
.../internal/cli/functions/CliFunctionResult.java | 2 +-
.../functions/CreateAsyncEventQueueFunction.java | 53 +-
.../management/internal/cli/json/GfJsonObject.java | 3 +
.../internal/cli/result/TabularResultData.java | 18 +
.../geode.apache.org/schema/cache/cache-1.0.xsd | 2 +-
.../org/apache/geode/cache/doc-files/cache8_0.dtd | 2 +-
...ewayReceiverXmlParsingValidationsJUnitTest.java | 111 +++
.../AlterAsyncEventQueueCommandDUnitTest.java | 100 +++
.../commands/AlterAsyncEventQueueCommandTest.java | 246 +++++++
.../cli/commands/ConcurrentDeployDUnitTest.java | 2 -
.../CreateAsyncEventQueueCommandDUnitTest.java | 128 ++++
.../commands/CreateAsyncEventQueueCommandTest.java | 213 ++++++
.../commands/DeployCommandRedeployDUnitTest.java | 7 +-
.../commands/DestroyGatewaySenderCommandTest.java | 3 +-
.../ListAsyncEventQueuesCommandDUnitTest.java | 81 +++
.../cli/commands/QueueCommandsDUnitTest.java | 437 ------------
.../cli/functions/CliFunctionResultTest.java | 2 +-
.../TabularResultDataTest.java} | 41 +-
.../internal/configuration/ClusterConfig.java | 2 +-
.../ClusterConfigDeployJarDUnitTest.java | 11 +-
.../ImportClusterConfigDistributedTest.java | 4 +-
.../security/ClientAuthenticationTestCase.java | 44 +-
.../security/ClientAuthorizationTestCase.java | 42 +-
.../test/dunit/rules/LocatorServerStartupRule.java | 17 +-
.../apache/geode/test/dunit/rules/MemberVM.java | 6 +-
.../test/dunit/rules/tests/CacheRuleTest.java | 10 +-
.../test/junit/assertions/CommandResultAssert.java | 14 +-
.../geode/test/junit/rules/GfshCommandRule.java | 3 +
.../geode/test/junit/rules/GfshParserRule.java | 3 +
...sJUnitTest.correctConfiguration[DTD].cache.xml} | 14 +-
...sJUnitTest.correctConfiguration[XSD].cache.xml} | 14 +-
...leReceiversShouldThrowException[DTD].cache.xml} | 16 +-
...leReceiversShouldThrowException[XSD].cache.xml} | 15 +-
.../eviction/configuring_data_eviction.html.md.erb | 60 +-
.../gfsh/command-pages/create.html.md.erb | 62 +-
.../tools_modules/lucene_integration.html.md.erb | 2 +-
.../internal/LuceneIndexCreationProfile.java | 10 +-
geode-old-versions/build.gradle | 1 +
.../cache/wan/GatewayReceiverFactoryImpl.java | 6 +
.../wan/GatewayReceiverFactoryImplJUnitTest.java | 136 ++++
.../CreateGatewayReceiverCommandDUnitTest.java | 784 +++++++++------------
.../cli/commands/CommandOverHttpDUnitTest.java | 4 +-
56 files changed, 2472 insertions(+), 1242 deletions(-)
copy dev-tools/docker/docs/Dockerfile => ci/docker/docker.list (80%)
copy dev-tools/docker/docs/Dockerfile => ci/docker/initdocker (71%)
copy
extensions/session-testing-war/src/main/java/org/apache/geode/modules/session/QueryCommand.java
=> ci/docker/tini-wrapper.go (66%)
create mode 100755 ci/scripts/test-archive.sh
create mode 100755 ci/scripts/test-run.sh
create mode 100644
geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommand.java
create mode 100644
geode-core/src/test/java/org/apache/geode/internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommandDUnitTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/AlterAsyncEventQueueCommandTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateAsyncEventQueueCommandDUnitTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/CreateAsyncEventQueueCommandTest.java
create mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/ListAsyncEventQueuesCommandDUnitTest.java
delete mode 100644
geode-core/src/test/java/org/apache/geode/management/internal/cli/commands/QueueCommandsDUnitTest.java
copy
geode-core/src/test/java/org/apache/geode/management/internal/cli/{converters/LogLevelConverterTest.java
=> result/TabularResultDataTest.java} (59%)
copy geode-core/src/test/resources/org/apache/geode/{cache30/badFloat.xml =>
internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.correctConfiguration[DTD].cache.xml}
(73%)
mode change 100644 => 100755
copy
geode-core/src/test/resources/org/apache/geode/{cache30/ReconnectWithCacheXMLDUnitTest.xml
=>
internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.correctConfiguration[XSD].cache.xml}
(65%)
mode change 100644 => 100755
copy geode-core/src/test/resources/org/apache/geode/{cache30/malformed.xml =>
internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.multipleReceiversShouldThrowException[DTD].cache.xml}
(77%)
mode change 100644 => 100755
copy
geode-core/src/test/resources/org/apache/geode/{cache30/ReconnectWithCacheXMLDUnitTest.xml
=>
internal/cache/wan/GatewayReceiverXmlParsingValidationsJUnitTest.multipleReceiversShouldThrowException[XSD].cache.xml}
(69%)
mode change 100644 => 100755
create mode 100644
geode-wan/src/test/java/org/apache/geode/internal/cache/wan/GatewayReceiverFactoryImplJUnitTest.java
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].