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

reschke pushed a change to branch OAK-10247
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git


    from 5d24063ba5 OAK-10247: oak-commons: remove Guava from public API
     add 8c73d8217e OAK-10246 : Minor cleanup of unused imports, indention and 
whitespace
     add d92d6cba58 OAK-10246 : Minor cleanup of unused imports, indention and 
whitespace
     add 1b07fcb454 OAK-10245 : Document OAK-10173
     add 741e3a47ab OAK-10226: custom analyzer mapping from lucene to elastic 
(#923)
     add 9da4894b8c OAK-10249: Reduce logging in the datastore check and gc 
process (#945)
     add fc8c475824 OAK-301: Document Oak
     add fbf3df6e5b OAK-10127 - Log warn message when MongoDB document is big 
(#863)
     add b82e801485 OAK-10154: Guava deprecations: set minimal logging level to 
'error' (#949)
     add dff1d17362 OAK-10253: Option to only collect references when calling 
checkConsis… (#947)
     add 22eb54e4f8 OAK-10256 : Principal documentation does not mention 
GroupPrincipal
     add 2128504a2f OAK-10254 : added a test to reproduce late-write 
inconsistencies (#950)
     add e5c62d03d0 OAK-10257: NodeCounterMetricTest does not release resources
     add f31c995cf1 Merge pull request #951 from mreutegg/OAK-10257
     add 8ddae702dc OAK-10250: Configurable suspend timeout
     add dd3e641ac1 OAK-10250: Configurable suspend timeout
     add eb5654e53f Merge pull request #946 from mreutegg/OAK-10250
     add 34865a30c2 OAK-10261 Query with OR clause with COALESCE function 
incorrectly interpreted
     add c197495d79 Add IT for coalesce function usage without index
     add b6801d1de7 OAK-10261 Query with OR clause with COALESCE function 
(update docs based on what we found in a test case)
     add b760f760b4 Merge pull request #954 from apache/OAK-10261
     add fa4faaad75 OAK-10262 Document ASCIIFolder and OakAnalyzer
     add 682a13fabf Update oak-doc/src/site/markdown/query/lucene.md
     add dcb674f82a Update lucene.md
     add bdac0103c4 Merge pull request #955 from apache/OAK-10262
     add 8adf8dbe45 OAK-10259: oak-core tests running out of memory
     add ef5f4efaea OAK-10259: oak-core tests running out of memory
     add e8c9e9cad7 Merge pull request #953 from mreutegg/OAK-10259
     add d93302a26d OAK-10247: oak-commons: remove Guava from public API

No new revisions were added by this update.

Summary of changes:
 .../oak/plugins/blob/BlobGarbageCollector.java     |   9 +
 .../plugins/blob/MarkSweepGarbageCollector.java    | 105 +--
 .../jackrabbit/oak/plugins/blob/BlobGCTest.java    |  16 +
 .../apache/jackrabbit/oak/commons/FileIOUtils.java |   2 +-
 .../jackrabbit/oak/spi/GuavaDeprecation.java       |  23 +-
 .../jackrabbit/oak/core/GuavaDeprecation.java      |  24 +-
 .../jackrabbit/oak/query/ast/CoalesceImpl.java     |   4 +-
 .../apache/jackrabbit/oak/query/ast/OrImpl.java    |   2 +-
 .../oak/security/user/ImpersonationImpl.java       |   9 +-
 .../apache/jackrabbit/oak/security/user/Utils.java |  38 +-
 .../jackrabbit/oak/AbstractSecurityTest.java       |   2 +
 .../index/counter/NodeCounterMetricTest.java       |  32 +-
 .../jackrabbit/oak/query/ast/OrImplTest.java       |  12 +-
 .../oak/query/ast/PropertyExistenceTest.java       | 102 +++
 .../LoginContextProviderImplTest.java              |  16 +-
 .../oak/security/user/ImpersonationTestUtil.java   |  24 +-
 .../jackrabbit/oak/security/user/UtilsTest.java    |  70 +-
 oak-doc/src/site/markdown/query/grammar-sql2.md.vm |   2 +
 .../src/site/markdown/query/grammar-xpath.md.vm    |   2 +
 oak-doc/src/site/markdown/query/lucene.md          |  26 +-
 oak-doc/src/site/markdown/query/query-engine.md    |   1 +
 .../markdown/security/authentication/default.md    |  10 +-
 oak-doc/src/site/markdown/security/principal.md    |   3 +-
 oak-doc/src/site/markdown/security/user/default.md |  59 +-
 .../src/site/markdown/security/user/differences.md |   9 +-
 .../index/lucene/LuceneFullTextAnalyzerTest.java   |   9 +
 oak-run/README.md                                  |   6 +-
 .../jackrabbit/oak/run/DataStoreCommand.java       |   2 +-
 .../jackrabbit/oak/run/DataStoreOptions.java       |  10 +-
 .../jackrabbit/oak/run/DataStoreCommandTest.java   |  55 +-
 .../index/elastic/index/ElasticCustomAnalyzer.java | 137 +++-
 .../index/ElasticCustomAnalyzerMappings.java       | 235 ++++++
 .../index/elastic/ElasticFullTextAnalyzerTest.java | 162 +++-
 oak-search/pom.xml                                 |   1 +
 .../plugins/index/FullTextAnalyzerCommonTest.java  | 422 +++++++++++
 .../oak/plugins/index/FunctionIndexCommonTest.java |  94 +++
 .../src/test/resources/mapping-ISOLatin1Accent.txt | 246 +++++++
 .../src/test/resources/stopwords-snowball.txt      | 355 +++++++++
 .../oak/spi/security/user/UserConstants.java       |   4 +-
 .../oak/plugins/document/CommitQueue.java          |  24 +-
 .../oak/plugins/document/Configuration.java        |   8 +
 .../oak/plugins/document/DocumentNodeStore.java    |   1 +
 .../plugins/document/DocumentNodeStoreBuilder.java |  11 +
 .../plugins/document/DocumentNodeStoreService.java |   1 +
 .../plugins/document/mongo/MongoDocumentStore.java |  23 +-
 .../DocumentNodeStoreServiceConfigurationTest.java |   1 +
 .../document/DocumentNodeStoreServiceTest.java     |  12 +
 .../plugins/document/UnrecoveredRevisionTest.java  | 816 +++++++++++++++++++++
 .../document/mongo/MongoDBExceptionTest.java       | 142 ++++
 49 files changed, 3109 insertions(+), 270 deletions(-)
 create mode 100644 
oak-core/src/test/java/org/apache/jackrabbit/oak/query/ast/PropertyExistenceTest.java
 create mode 100644 
oak-search-elastic/src/main/java/org/apache/jackrabbit/oak/plugins/index/elastic/index/ElasticCustomAnalyzerMappings.java
 create mode 100644 oak-search/src/test/resources/mapping-ISOLatin1Accent.txt
 create mode 100644 oak-search/src/test/resources/stopwords-snowball.txt
 create mode 100644 
oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/UnrecoveredRevisionTest.java

Reply via email to