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

udo pushed a change to branch feature/GEODE-5660
in repository https://gitbox.apache.org/repos/asf/geode.git.


    omit b24c94f  GEODE-5660: Added method to lookup war file from classpath 
within AgentUtil.java. This is to address problem where http server is started 
from Java API (Spring Data Geode specifically) Now, the application can 
reference the `geode-web-api` war from repo and not have to specifically set 
`GEODE-HOME` property
     add b3cf86b  GEODE-5604 Update gradle syntax to comply with 5.0 (#2350)
     add ebe44c2  GEODE-5641: add no-arg constructor to DiskDirRule
     add f550cc4  GEODE-5639: use AssertJ instead of CatchException
     add 281492a  GEODE-5639: remove CatchException dependencies from Gradle
     add 34ec001  GEODE-5637: disable 
SingleHopClientExecutorWithLoggingIntegrationTest
     add 1c349b5  Markdown format improvements.
     add 238706c  GEODE-5636: DescribeClientCommandDUnitTest fails on Windows 
(#2382)
     add be5430d  GEODE-5656: Upgrades Gradle to 4.10 (#2397)
     add ad37e34  GEODE-5601: Serialize running of acceptance tests in lieu of 
containerizing them (#2389)
     add 8ae1bdb  GEODE-5530: Moves more shared test code into the DUnit 
framework.
     add 30c1eff  Improve readability and failure reporting in new 
ThreadMonitorIntegrationTest.
     add 81cfad6  Move failing integration test to integrationTests.
     add e396d91  Bump for precheckin rerun
     add 7c57aef  Merge pull request #2396 from PurelyApplied/geode-5654
     add 7aee737  GEODE-5661: Pulse does not work when legacy SSL options are 
used (#2401)
     add 64845ab  GEODE-5594: Rename SSL hostname validation property name 
(#2398)
     add 574530c  GEODE-5536: Force unitTest compilation to be dependency of 
source classes (#2337)
     new 0b13c82  GEODE-5660: Added method to lookup war file from classpath 
within AgentUtil.java. This is to address problem where http server is started 
from Java API (Spring Data Geode specifically) Now, the application can 
reference the `geode-web-api` war from repo and not have to specifically set 
`GEODE-HOME` property
     new 2633be4  GEODE-5660: Addressing review commentary

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b24c94f)
            \
             N -- N -- N   refs/heads/feature/GEODE-5660 (2633be4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 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:
 BUILDING.md                                        |  16 ++-
 README.md                                          |  99 +++++++-------
 build.gradle                                       |   4 +-
 buildSrc/build.gradle                              |  10 +-
 ci/pipelines/geode-build/jinja.template.yml        |   1 +
 ci/pipelines/pull-request/jinja.template.yml       |   1 +
 ci/pipelines/shared/jinja.variables.yml            |   7 +-
 ci/scripts/execute_tests.sh                        |   7 +-
 extensions/geode-modules-assembly/build.gradle     |  40 +++---
 .../geode-modules-session-internal/build.gradle    |   2 +-
 extensions/geode-modules-session/build.gradle      |   2 +-
 extensions/geode-modules-test/build.gradle         |   2 +-
 extensions/geode-modules-tomcat7/build.gradle      |   4 +-
 extensions/geode-modules-tomcat8/build.gradle      |   4 +-
 extensions/geode-modules/build.gradle              |   2 +-
 geode-assembly/build.gradle                        |  29 ++--
 geode-assembly/geode-assembly-test/build.gradle    |   2 +-
 .../test/junit/rules/GeodeHttpClientRule.java      |  36 +++--
 .../tools/pulse/PulseSecurityWithSSLTest.java      |  80 +++++++++--
 geode-connectors/build.gradle                      |   2 +-
 .../connectors/jdbc/JdbcWriterIntegrationTest.java |   9 +-
 geode-core/build.gradle                            |   7 +-
 ...okenSerializationConsistencyRegressionTest.java |  12 +-
 ...ExceptionsIncludeLocalMemberRegressionTest.java |  54 +++++---
 .../cache/execute/PRTransactionDUnitTest.java      | 152 ++++++++++++---------
 .../geode/pdx/PdxAttributesDistributedTest.java}   |  88 +++++-------
 .../test/dunit/tests/BasicDistributedTest.java     |  73 +++++-----
 ...opClientExecutorWithLoggingIntegrationTest.java |   6 +
 .../LocatorLauncherIntegrationTest.java            |  53 +++----
 .../ServerLauncherBuilderIntegrationTest.java      |  30 ++--
 .../distributed/ServerLauncherIntegrationTest.java |  53 +++----
 .../apache/geode/internal/SSLConfigJUnitTest.java  |  19 +++
 .../eviction/TransactionsWithOverflowTest.java     |  43 +++---
 .../ThreadsMonitoringIntegrationTest.java          |  67 +++++----
 .../FileProcessControllerIntegrationTest.java      |   7 +-
 .../pdx/PdxInstanceLoaderIntegrationTest.java      |  30 ++--
 .../geode/distributed/ConfigurationProperties.java |   2 +-
 .../geode/management/internal/AgentUtil.java       |  41 +-----
 .../geode/management/internal/ManagementAgent.java |  40 +++---
 .../apache/geode/distributed/LocatorStateTest.java |  34 ++---
 .../cache/EntryEventSerializationTest.java         |   6 +-
 .../cache/xmlcache/CacheCreationJUnitTest.java     |  15 +-
 .../geode/internal/lang/ThrowableUtilsTest.java    |  64 ++++-----
 .../internal/offheap/FreeListManagerTest.java      |  41 +++---
 .../MemoryAllocatorFillPatternJUnitTest.java       |  25 ++--
 .../security/GemFireSecurityExceptionTest.java     |  91 ++++++------
 .../geode/security/NotAuthorizedExceptionTest.java |  97 ++++++-------
 geode-cq/build.gradle                              |   1 +
 .../commands/DescribeClientCommandDUnitTest.java   |   5 +-
 geode-dunit/build.gradle                           |   3 -
 .../geode/internal/cache/CommitFunction.java       |   0
 .../internal/cache/NestedTransactionFunction.java  |   0
 .../cache/PartitionedRegionGetSomeKeys.java        |   0
 .../geode/internal/cache/RollbackFunction.java     |   0
 .../apache/geode/internal/cache/ha/HAHelper.java   |   0
 .../internal/cache/tier/sockets/HaHelper.java      |   0
 .../test/dunit/rules/DistributedDiskDirRule.java   |  29 ++--
 .../apache/geode/test/junit/rules/DiskDirRule.java |  23 +---
 geode-lucene/build.gradle                          |   8 +-
 geode-old-client-support/build.gradle              |   2 +-
 geode-old-versions/build.gradle                    |   4 +-
 geode-protobuf/build.gradle                        |   7 +-
 geode-pulse/build.gradle                           |   4 +-
 .../ParallelGatewaySenderOperationsDUnitTest.java  |  11 +-
 geode-web-api/build.gradle                         |   1 +
 gradle.properties                                  |   2 +-
 gradle/dependency-versions.properties              |   2 -
 gradle/ide.gradle                                  |  16 +--
 gradle/java.gradle                                 |   8 ++
 gradle/publish.gradle                              |  90 ++++++------
 gradle/sonar.gradle                                |   8 +-
 gradle/test.gradle                                 |  31 +++--
 gradle/wrapper/gradle-wrapper.jar                  | Bin 54413 -> 56172 bytes
 gradle/wrapper/gradle-wrapper.properties           |   2 +-
 settings.gradle                                    |  29 ++--
 75 files changed, 936 insertions(+), 859 deletions(-)
 rename 
geode-core/src/{integrationTest/java/org/apache/geode/pdx/PdxAttributesJUnitTest.java
 => 
distributedTest/java/org/apache/geode/pdx/PdxAttributesDistributedTest.java} 
(81%)
 rename geode-core/src/{test => 
integrationTest}/java/org/apache/geode/internal/monitoring/ThreadsMonitoringIntegrationTest.java
 (57%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/CommitFunction.java 
(100%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/NestedTransactionFunction.java
 (100%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/PartitionedRegionGetSomeKeys.java
 (100%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/RollbackFunction.java
 (100%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/ha/HAHelper.java 
(100%)
 rename {geode-core/src/distributedTest => 
geode-dunit/src/main}/java/org/apache/geode/internal/cache/tier/sockets/HaHelper.java
 (100%)

Reply via email to