You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by on...@apache.org on 2022/10/10 20:12:57 UTC

[geode] branch master updated (90ddc30d79 -> 956b7e725c)

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

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


    from 90ddc30d79 Replacing master with contents of rel/v1.15.0
     add d72711fcea (no JIRA ticket) user guide Security section: Typo & format fixes (#7802)
     add c4ed0fcc7e Incorporated reviewer suggestions
     add ed86d71c0e Correct name of Disable SYN Cookies in TOC and cross-ref
     add 08a32920b0 Disabling->Disable
     add f4c05ad2c1 GEODE-10388: create better output filter for srcDist task (#7806)
     add 81ae2db3e5 GEODE-10390: User guide: update authentication expiry instructions (#7809)
     add ececd27a03 GEODE-10389: Document upgrade to Geode 1.15 with SSL protocol workaround (#7812)
     add ab5e533494 GEODE-10386:Document JDK 17 for 1.15 release (#7813)
     add dc21e1c0dd GEODE-10089: update Dockerfile to apache-geode 1.15.0
     add 7ceaa3bfff GEODE-10089: Add 1.15.0 as old version
     add 2fe3ea0e07 GEODE-10089: Bump version to 1.15.1
     add 8cc780a557 GEODE-10385: User Guide - Remove bad G1GC tuning advice (#7815)
     add 2e689e5c66 GEODE-10411: fix XSS vulnerability in pulse (#7836)
     add 7838d5d521 GEODE-9484: Improve sending message to multy destinations (#7664) (#7853)
     add fdb5e92d93 GEODE-10281: Fix WAN data inconsistency (#7665)
     add 3d62f0fff2 GEODE-10422: add Note for parallel recovery disk store (#7858)
     add 5364cce7cd GEODE-10415: bump dependencies due to vulnerability scan (#7855)
     add 0bd51e8d5d GEODE-10155: Avoid threads hanging when function execution times-out (#7493)
     add 73aa4b3f72 GEODE-10323: Remove schedule threads in MemoryAllocatorImpl constructor (#7715)
     add e72da0d984 GEODE-10323: Add small changes after review (#7819)
     add 982333d4ba GEODE-10346: Correct description of batch-time-interval in doc. (#7742)
     add b64cdd1473 GEODE-10348: Fix documentation on conflation (#7746)
     add 5ee944475a GEODE-10352: Update Ruby version in Geode doc preview tool (#7753)
     add 3ada8fe80f GEODE-10403: Fix distributed deadlock with stop gw sender (#7830)
     add 8b751804c5 GEODE-10417: Fix NullPointerException in WAN replication (#7845)
     add 62e60b5062 GEODE-10420: Finish distribute() work if interrupted (#7854)
     add bc47b30c0b GEODE-10412: Clear expired tombstones during region destroy (#7838)
     add d1910cf1ee GEODE-10401: Configurable .drf recovery HashMap overflow threshold (#7828)
     new 956b7e725c Replacing master with contents of rel/v1.15.1

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:
 .../gradle/plugins/DependencyConstraints.groovy    |   4 +-
 ci/pipelines/shared/jinja.variables.yml            |   2 +-
 dev-tools/docker/docs/Dockerfile                   |  18 +-
 docker/Dockerfile                                  |   7 +-
 geode-assembly/build.gradle                        |  10 +-
 .../session/tests/GenericAppServerInstall.java     |   2 +-
 .../integrationTest/resources/assembly_content.txt |  43 +-
 .../resources/gfsh_dependency_classpath.txt        |  44 +-
 .../source/subnavs/geode-subnav.erb                |   5 +-
 ...nctionExecutionNoSingleHopDistributedTest.java} | 895 ++++++++++-----------
 .../cache/execute/PRClientServerTestBase.java      | 351 ++++----
 ....java => UpdatePropagationDistributedTest.java} | 107 ++-
 ...ava => UpdatePropagationPRDistributedTest.java} |   2 +-
 .../cache/versions/TombstoneDUnitTest.java         |  42 +
 .../geode/internal/tcp/CloseConnectionTest.java    |   2 +-
 .../geode/internal/tcp/TCPConduitDUnitTest.java    |   2 +-
 .../internal/ClusterOperationExecutors.java        |   9 +-
 .../distributed/internal/direct/DirectChannel.java |  44 +-
 .../geode/internal/cache/BucketRegionQueue.java    |   4 +
 .../apache/geode/internal/cache/DiskStoreImpl.java |  61 +-
 .../geode/internal/cache/EntryEventImpl.java       |   5 +-
 .../geode/internal/cache/TombstoneService.java     |   6 +-
 .../PartitionedRegionFunctionResultSender.java     |  77 +-
 .../internal/cache/wan/AbstractGatewaySender.java  |  58 +-
 .../internal/cache/wan/GatewaySenderEventImpl.java |   2 +-
 .../internal/offheap/MemoryAllocatorImpl.java      |  80 +-
 .../internal/offheap/NonRealTimeStatsUpdater.java  |  47 ++
 .../geode/internal/offheap/OffHeapStorage.java     |  19 +-
 .../org/apache/geode/internal/tcp/Connection.java  |   6 +-
 .../apache/geode/internal/tcp/ConnectionTable.java |  30 +-
 .../org/apache/geode/internal/tcp/TCPConduit.java  | 118 ++-
 .../internal/cache/BucketRegionQueueJUnitTest.java |  56 +-
 .../OplogEntryIdSetDrfHashSetThresholdTest.java    |  62 ++
 .../geode/internal/cache/TombstoneServiceTest.java |  46 +-
 .../PartitionedRegionFunctionResultSenderTest.java | 174 ++++
 .../cache/wan/AbstractGatewaySenderTest.java       | 170 ++++
 .../cache/wan/GatewaySenderEventImplTest.java      |  87 +-
 .../serial/SerialGatewaySenderQueueJUnitTest.java  |  28 +-
 .../internal/offheap/MemoryAllocatorJUnitTest.java |  14 +-
 .../internal/offheap/OffHeapHelperJUnitTest.java   |   3 +-
 .../OffHeapRegionEntryHelperInstanceTest.java      |   3 +-
 .../internal/offheap/OffHeapStorageJUnitTest.java  |   4 +-
 .../OffHeapStorageNonRuntimeStatsJUnitTest.java    |   3 +-
 .../offheap/OffHeapStoredObjectJUnitTest.java      |   3 +-
 .../internal/tcp/ConnectionTransmissionTest.java   |   2 +-
 .../apache/geode/internal/tcp/TCPConduitTest.java  |  97 ++-
 .../conflate_multisite_gateway_queue.html.md.erb   |   4 +-
 .../system_requirements/host_machine.html.md.erb   |   4 +-
 .../system_requirements/java_support.html.md.erb   | 151 ++++
 .../upgrade/upgrade_overview.html.md.erb           |  50 ++
 geode-docs/images/MultiSite-4.gif                  | Bin 4991 -> 0 bytes
 geode-docs/images_svg/MultiSite-4.svg              |   4 +
 ...timize_availability_and_performance.html.md.erb |   4 +-
 .../managing/heap_use/heap_management.html.md.erb  |   1 -
 .../monitor_tune/chapter_overview.html.md.erb      |   2 +-
 .../implementing_authentication.html.md.erb        |   1 +
 .../implementing_authentication_expiry.html.md.erb |  24 +-
 .../managing/security/implementing_ssl.html.md.erb |  92 +--
 geode-docs/reference/topics/cache_xml.html.md.erb  |   4 +-
 .../gfsh/command-pages/alter.html.md.erb           |   2 +-
 .../gfsh/command-pages/create.html.md.erb          |   4 +-
 .../internal/cache/functions/TestFunction.java     |  23 +-
 .../geode/test/junit/rules/ServerStarterRule.java  |   9 +
 .../sanctioned-geode-dunit-serializables.txt       |   2 +-
 .../tools/pulse/tests/DataBrowserResultLoader.java |  74 +-
 .../geode/tools/pulse/tests/PulseTestData.java     |   5 +-
 ...txt => testQueryResultClusterSmallJSInject.txt} |  14 +-
 .../src/main/webapp/META-INF/context.xml           |  15 +-
 geode-pulse/src/main/webapp/WEB-INF/web.xml        |   8 +
 .../scripts/pulsescript/pages/DataBrowserQuery.js  | 139 ++--
 .../pulsescript/pages/DataBrowserQueryHistory.js   |  26 +-
 .../tools/pulse/tests/ui/PulseAutomatedTest.java   |  65 +-
 .../resources/dependency_classpath.txt             |  36 +-
 .../geode/internal/cache/wan/WANTestBase.java      |   7 +
 ...llelGatewaySenderOperationsDistributedTest.java |  86 +-
 ...eplicateRegionWithSerialGwsDistributedTest.java | 333 ++++++++
 gradle.properties                                  |   2 +-
 settings.gradle                                    |   3 +-
 78 files changed, 2851 insertions(+), 1197 deletions(-)
 rename geode-core/src/distributedTest/java/org/apache/geode/internal/cache/execute/{PRClientServerRegionFunctionExecutionNoSingleHopDUnitTest.java => PRClientServerRegionFunctionExecutionNoSingleHopDistributedTest.java} (53%)
 rename geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/{UpdatePropagationDUnitTest.java => UpdatePropagationDistributedTest.java} (78%)
 rename geode-core/src/distributedTest/java/org/apache/geode/internal/cache/tier/sockets/{UpdatePropagationPRDUnitTest.java => UpdatePropagationPRDistributedTest.java} (93%)
 create mode 100644 geode-core/src/main/java/org/apache/geode/internal/offheap/NonRealTimeStatsUpdater.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/OplogEntryIdSetDrfHashSetThresholdTest.java
 create mode 100644 geode-core/src/test/java/org/apache/geode/internal/cache/execute/PartitionedRegionFunctionResultSenderTest.java
 create mode 100644 geode-docs/getting_started/system_requirements/java_support.html.md.erb
 delete mode 100644 geode-docs/images/MultiSite-4.gif
 create mode 100644 geode-docs/images_svg/MultiSite-4.svg
 copy geode-pulse/geode-pulse-test/src/main/resources/{testQueryResultClusterSmall.txt => testQueryResultClusterSmallJSInject.txt} (85%)
 copy geode-core/src/integrationTest/resources/org/apache/geode/internal/cache/xmlcache/CacheXmlParserJUnitTest.testDTDFallbackWithNonEnglishLocal.cache.xml => geode-pulse/src/main/webapp/META-INF/context.xml (81%)
 create mode 100644 geode-wan/src/distributedTest/java/org/apache/geode/internal/cache/wan/serial/InternalConflictResolutionReplicateRegionWithSerialGwsDistributedTest.java


[geode] 01/01: Replacing master with contents of rel/v1.15.1

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

onichols pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/geode.git

commit 956b7e725c29e355891bded0e5adb1dfd12c2876
Merge: d1910cf1ee 90ddc30d79
Author: Owen Nichols <on...@apache.org>
AuthorDate: Mon Oct 10 13:12:48 2022 -0700

    Replacing master with contents of rel/v1.15.1