This is an automated email from the ASF dual-hosted git repository.
daim pushed a change to branch OAK-11452
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
discard fdc061a965 OAK-11452 : fixed a potential NPE in toString()
discard 815e635307 OAK-11452 : fixed sonar warnings
discard 12591b6e06 OAK-11452 : added unit case for toString() to reach 80%
code coverage
discard ba0257eb59 OAK-11452 : added support for gauge metrics in oak and
exported full gc OSGi configs as metrics as Guage values
discard 78a1312528 OAK-11452 : exported full gc OSGi configs as metrics
add 0a76f3ddd6 OAK-11623 Clean oak-segment-azure lib embedding and
exporting (#2199)
add 71875f1590 OAK-11594 - Converting existing indexes from a type to
another leaves the async lane the same (#2173)
add 6ca71c76f3 OAK-11444 [full-gc] Save document id and empty properties
names before deletion (#2038)
add 25df4149f2 OAK-11568 Elastic: improved compatibility for aggregation
definitions (#2193)
add 2769219294 OAK-11630: CommandTestUtils captureSystem* should normalize
line feeds (#2203)
add 7435450cf0 OAK-11632: Release Oak 1.78.0 - Candidate Release Notes
add 1dbc3934d0 [maven-release-plugin] prepare release jackrabbit-oak-1.78.0
add 64ee526b80 [maven-release-plugin] prepare for next development
iteration
add 06d46de56a OAK-11622: Clock improvements (#2204)
add 23017ea676 OAK-11621: Reduce usage of Guava Ticker (#2202)
add 305a3d6035 OAK-11612 : removed usages of Guava's Sets.union (#2197)
add 2ba00b36b3 OAK-11452 : exported full gc OSGi configs as metrics
add bd441a2972 OAK-11452 : added support for gauge metrics in oak and
exported full gc OSGi configs as metrics as Guage values
add da23239d61 OAK-11452 : added unit case for toString() to reach 80%
code coverage
add c7b43e1a46 OAK-11452 : fixed sonar warnings
add 80eb037a7f OAK-11452 : fixed a potential NPE in toString()
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 (fdc061a965)
\
N -- N -- N refs/heads/OAK-11452 (80eb037a7f)
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.
No new revisions were added by this update.
Summary of changes:
RELEASE-NOTES.txt | 208 +++++++++++++-------
oak-api/pom.xml | 2 +-
oak-auth-external/pom.xml | 2 +-
oak-auth-ldap/pom.xml | 2 +-
oak-authorization-cug/pom.xml | 2 +-
oak-authorization-principalbased/pom.xml | 2 +-
oak-benchmarks-elastic/pom.xml | 2 +-
oak-benchmarks-lucene/pom.xml | 2 +-
oak-benchmarks-solr/pom.xml | 2 +-
oak-benchmarks/pom.xml | 2 +-
oak-blob-cloud-azure/pom.xml | 2 +-
oak-blob-cloud/pom.xml | 2 +-
oak-blob-plugins/pom.xml | 2 +-
oak-blob/pom.xml | 2 +-
oak-commons/pom.xml | 2 +-
oak-core-spi/pom.xml | 2 +-
.../org/apache/jackrabbit/oak/stats/Clock.java | 75 +++++--
.../org/apache/jackrabbit/oak/stats/ClockTest.java | 68 ++++++-
.../jackrabbit/oak/stats/NonTickingTestClock.java | 17 +-
oak-core/pom.xml | 9 +-
.../plugins/index/TrackingCorruptIndexHandler.java | 21 +-
.../oak/plugins/index/importer/IndexImporter.java | 21 ++
.../oak/plugins/index/FormattingUtilsTest.java | 72 ++++---
.../plugins/index/importer/IndexImporterTest.java | 46 +++++
oak-examples/pom.xml | 2 +-
oak-examples/standalone/pom.xml | 2 +-
oak-examples/webapp/pom.xml | 2 +-
oak-exercise/pom.xml | 2 +-
oak-http/pom.xml | 2 +-
oak-it-osgi/pom.xml | 2 +-
oak-it/pom.xml | 2 +-
oak-jackrabbit-api/pom.xml | 2 +-
oak-jcr/pom.xml | 2 +-
oak-lucene/pom.xml | 2 +-
.../plugins/index/lucene/BadIndexTrackerTest.java | 13 +-
.../oak/plugins/index/lucene/IndexTrackerTest.java | 9 +-
.../oak/plugins/index/lucene/VirtualTicker.java | 41 ----
oak-parent/pom.xml | 4 +-
oak-pojosr/pom.xml | 2 +-
oak-query-spi/pom.xml | 2 +-
oak-run-commons/pom.xml | 2 +-
oak-run-elastic/pom.xml | 2 +-
oak-run/pom.xml | 2 +-
.../jackrabbit/oak/run/RevisionsCommand.java | 9 +
.../oak/plugins/document/CommandTestUtils.java | 13 +-
oak-search-elastic/pom.xml | 2 +-
.../index/elastic/ElasticIndexProviderService.java | 69 +------
.../index/elastic/ElasticIndexStatistics.java | 18 +-
.../elastic/index/ElasticBulkProcessorHandler.java | 2 +-
.../index/elastic/index/ElasticCustomAnalyzer.java | 136 +++++++++++--
.../index/elastic/index/ElasticDocument.java | 2 +
.../elastic/index/ElasticIndexEditorContext.java | 2 +-
.../index/elastic/index/ElasticIndexWriter.java | 11 +-
.../index/elastic/util/ElasticIndexUtils.java | 3 +-
.../index/elastic/ElasticIndexStatisticsTest.java | 27 +--
.../index/elastic/ElasticInferenceTest.java | 5 +-
.../oak/plugins/index/elastic/ElasticPerfTest.java | 5 +-
.../plugins/index/elastic/ElasticTestServer.java | 1 +
.../elastic/index/ElasticIndexHelperTest.java | 61 ++++++
oak-search/pom.xml | 2 +-
.../oak/plugins/index/search/BadIndexTracker.java | 24 ++-
.../oak/plugins/index/search/util/ConfigUtil.java | 2 +-
.../plugins/index/FullTextAnalyzerCommonTest.java | 156 +++++++++++++++
oak-security-spi/pom.xml | 2 +-
oak-segment-aws/pom.xml | 2 +-
oak-segment-azure/pom.xml | 5 +-
oak-segment-remote/pom.xml | 2 +-
oak-segment-tar/pom.xml | 2 +-
oak-shaded-guava/pom.xml | 2 +-
oak-solr-core/pom.xml | 2 +-
oak-solr-osgi/pom.xml | 2 +-
oak-store-composite/pom.xml | 2 +-
oak-store-document/pom.xml | 2 +-
.../oak/plugins/document/Configuration.java | 5 +
.../plugins/document/DocumentNodeStoreBuilder.java | 10 +
.../plugins/document/DocumentNodeStoreService.java | 1 +
.../oak/plugins/document/FullGcNodeBin.java | 82 ++++++++
.../oak/plugins/document/VersionGCSupport.java | 4 +
.../plugins/document/VersionGarbageCollector.java | 12 +-
.../mongo/MongoDocumentNodeStoreBuilderBase.java | 2 +-
.../plugins/document/mongo/MongoDocumentStore.java | 17 ++
.../plugins/document/mongo/MongoFullGcNodeBin.java | 171 ++++++++++++++++
.../document/mongo/MongoVersionGCSupport.java | 22 ++-
.../document/rdb/RDBDocumentNodeStoreBuilder.java | 12 ++
.../DocumentNodeStoreServiceConfigurationTest.java | 8 +
.../mongo/MongoDocumentNodeStoreBuilderTest.java | 6 +
.../document/mongo/MongoFullGcNodeBinTest.java | 216 +++++++++++++++++++++
.../rdb/RDBDocumentNodeStoreBuilderTest.java | 7 +
oak-store-spi/pom.xml | 2 +-
oak-upgrade/pom.xml | 2 +-
.../oak/upgrade/RepositorySidegrade.java | 5 +-
.../jackrabbit/oak/upgrade/RepositoryUpgrade.java | 8 +-
pom.xml | 2 +-
93 files changed, 1439 insertions(+), 392 deletions(-)
copy
oak-benchmarks/src/main/java/org/apache/jackrabbit/oak/benchmark/OrderedIndexQueryNoIndexTest.java
=>
oak-core-spi/src/test/java/org/apache/jackrabbit/oak/stats/NonTickingTestClock.java
(73%)
delete mode 100644
oak-lucene/src/test/java/org/apache/jackrabbit/oak/plugins/index/lucene/VirtualTicker.java
create mode 100644
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/FullGcNodeBin.java
create mode 100644
oak-store-document/src/main/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoFullGcNodeBin.java
create mode 100644
oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoFullGcNodeBinTest.java