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

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


 discard f6d7b4d131 OAK-10213 : reused the exisiting method by adding boolean 
flags for bulkRequest
 discard 241e04de78 OAK-10213 : updated JavaDocs for bulk findAndUpdate and 
added retryCounter for stats
 discard ad745828a2 OAK-10213 : updated DocumentStore API to support bulk 
modify request
     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 7b86f6bbe7 OAK-10213 : updated DocumentStore API to support bulk 
modify request
     add 01f834925b OAK-10213 : updated JavaDocs for bulk findAndUpdate and 
added retryCounter for stats
     add 010579266f OAK-10213 : reused the exisiting method by adding boolean 
flags for bulkRequest
     add abef97f813 OAK-10213 : added unit cases for findAndUpdate stats 
collector & fix minor logging issues

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   (f6d7b4d131)
            \
             N -- N -- N   refs/heads/OAK-10213 (abef97f813)

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:
 .../oak/plugins/blob/BlobGarbageCollector.java     |   9 +
 .../plugins/blob/MarkSweepGarbageCollector.java    | 101 +--
 .../jackrabbit/oak/plugins/blob/BlobGCTest.java    |  16 +
 .../jackrabbit/oak/commons/GuavaDeprecation.java   |  24 +-
 .../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 +-
 .../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-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 +
 oak-doc/src/site/markdown/security/principal.md    |   3 +-
 oak-run/README.md                                  |   6 +-
 .../jackrabbit/oak/run/DataStoreCommand.java       |   2 +-
 .../jackrabbit/oak/run/DataStoreOptions.java       |  10 +-
 .../jackrabbit/oak/run/DataStoreCommandTest.java   |  55 +-
 .../oak/plugins/index/FunctionIndexCommonTest.java |  94 +++
 .../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 +
 .../oak/plugins/document/DocumentStoreStats.java   |   6 +-
 .../document/DocumentStoreStatsCollector.java      |   3 +-
 .../plugins/document/mongo/MongoDocumentStore.java |  29 +-
 .../DocumentNodeStoreServiceConfigurationTest.java |   1 +
 .../document/DocumentNodeStoreServiceTest.java     |  12 +
 .../oak/plugins/document/DocumentStoreStatsIT.java |  42 +-
 .../plugins/document/DocumentStoreStatsTest.java   |  38 +
 .../plugins/document/UnrecoveredRevisionTest.java  | 816 +++++++++++++++++++++
 .../document/mongo/MongoDBExceptionTest.java       | 142 ++++
 37 files changed, 1522 insertions(+), 180 deletions(-)
 create mode 100644 
oak-core/src/test/java/org/apache/jackrabbit/oak/query/ast/PropertyExistenceTest.java
 create mode 100644 
oak-store-document/src/test/java/org/apache/jackrabbit/oak/plugins/document/UnrecoveredRevisionTest.java

Reply via email to