This is an automated email from the ASF dual-hosted git repository.
stefanegli pushed a change to branch OAK-10542-fix
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
from 13ceb6ebb7 OAK-10542 : refactor code duplication
add ef27c970ea OAK-10543 ignored writeAndReadManySegments in the abstract
class
add e2a3d46934 OAK-10545: oak-jcr: add test for observing effect of
remapping a namespace prefix to a different namespace name (#1196)
add d7edc02a09 OAK-10538 - Pipeline strategy: eliminate unnecessary
intermediate copy of entries in transform stage (#1194)
add b138cf736c OAK-10545: oak-jcr: add test for observing effect of
remapping a namespace prefix to a different namespace name - simplified not to
use spi-commons
add 392ede19fe OAK-10547 - Fix: Indexing job fails at the end of
reindexing if it took more than 24h to run (#1203)
add d1cd2bc18e OAK-10539: oak-search-elastic: migrate ingestion from Rest
High Level Client to the new Java API Client (#1193)
add 5be575223d OAK-10526 : set split doc maxRev to 'now' at split time, to
avoid it being GCed too early
add d177262672 Merge pull request #1190 from apache/OAK-10526
add d28e5b3c41 OAK-10539: fix oak-search-elastic bundle import packages
(#1207)
add 0a0b252668 OAK-10550: add oak-search-elastic bundle test in
oak-it-osgi (#1208)
add e73cb97510 OAK-10526 : fix test regression for mongo 70 split doc
(#1209)
add 9d3d31127d OAK-10548: bump zookeeper to 3.9.1, re-organized optional
import packages (#1205)
add 299002b63b OAK-6757: Convert oak-auth-ldap to OSGi R6 annotations
(#1197)
add 0ba9cc4f9d OAK-10542 : test reproducing ignorance of split deleted
properties (#1195)
add 086892c839 Merge pull request #1212 from apache/trunk
No new revisions were added by this update.
Summary of changes:
oak-auth-ldap/pom.xml | 5 +-
.../ldap/impl/LdapIdentityProvider.java | 21 +-
.../ldap/impl/LdapProviderConfig.java | 680 ++++++++-------------
.../oak/plugins/index/FormattingUtils.java | 21 +-
.../oak/plugins/index/FormattingUtilsTest.java | 88 +++
oak-it-osgi/pom.xml | 6 +
oak-it-osgi/test-bundles.xml | 1 +
.../apache/jackrabbit/oak/jcr/NamePathTest.java | 59 ++
.../document/flatfile/NodeStateEntryWriter.java | 27 +-
.../flatfile/pipelined/NodeStateEntryBatch.java | 41 +-
.../flatfile/pipelined/PipelinedTransformTask.java | 24 +-
.../pipelined/NodeStateEntryBatchTest.java | 34 +-
.../pipelined/PipelinedSortBatchTaskTest.java | 16 +-
oak-run-elastic/pom.xml | 3 +-
.../index/indexer/document/ElasticIndexerTest.java | 25 +-
.../ElasticPurgeOldIndexVersionTest.java | 3 +-
oak-search-elastic/pom.xml | 101 +--
.../plugins/index/elastic/ElasticConnection.java | 23 +-
.../index/elastic/ElasticIndexDefinition.java | 12 +-
.../elastic/index/ElasticBulkProcessorHandler.java | 242 ++++----
.../index/elastic/index/ElasticCustomAnalyzer.java | 8 +-
.../index/ElasticCustomAnalyzerMappings.java | 4 +-
.../index/elastic/index/ElasticDocument.java | 138 ++---
.../index/elastic/index/ElasticIndexHelper.java | 41 +-
.../index/elastic/index/ElasticIndexWriter.java | 47 +-
.../index/elastic/ElasticPropertyIndexTest.java | 10 +-
.../plugins/index/elastic/ElasticTestServer.java | 6 +-
.../index/ElasticBulkProcessorHandlerTest.java | 17 +-
.../elastic/index/ElasticIndexWriterTest.java | 48 +-
.../AbstractPersistentCacheTest.java | 2 +
.../persistentcache/PersistentRedisCacheTest.java | 7 -
oak-solr-osgi/pom.xml | 48 +-
.../oak/plugins/document/SplitOperations.java | 16 +-
.../plugins/document/VersionGCSplitDocTest.java | 17 +-
.../document/VersionGarbageCollectorIT.java | 187 +++++-
35 files changed, 1037 insertions(+), 991 deletions(-)
create mode 100644
oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/index/FormattingUtilsTest.java