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

Cole-Greer pushed a change to branch multi-label-toy-graph
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 5abaae710c Wire up the zoo graph and convert read-only multi-label 
scenarios
 discard ad751d50d3 Fix multi-label rendering gaps in ElementMapStep and 
ComputerGraph
 discard 6b78279218 Add an example zoo graph
     add 278b64bf7b Fix multi-label rendering gaps in ElementMapStep and 
ComputerGraph
     add d272791267 Address PR review nits: verification strategy, event util, 
label helper relocation
     add 0b33a8f2bf Fix @MultiLabelDefault/@SingleLabelDefault semantics and 
add coverage
     add 2eefc220c5 Address multi-label test coverage gap review comments
     add 083c9a69bd Split TinkerGraph empty-graph fixture into 
single/multi-label variants
     add 9db5db59f3 Reject combined with(multilabel)/with(singlelabel), add 
elementMap() semantics
     add 7855ccf384 Relocate hasLabel() OR-semantics note, fix 'supports 
mutation' wording
     add db79ef90a7 Weave multi-label support throughout reference docs, 
recipes, tutorial
     add d036429cae Rewrite spec-style multi-label prose in reference docs; 
drop redundant recipe
     new 5b9255f9da Add an example zoo graph
     new 9268f23399 Wire up the zoo graph and convert read-only multi-label 
scenarios

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   (5abaae710c)
            \
             N -- N -- N   refs/heads/multi-label-toy-graph (9268f23399)

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.

The 2 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:
 docs/src/dev/developer/for-committers.asciidoc     |   8 +-
 docs/src/dev/provider/gremlin-semantics.asciidoc   |  54 +++-
 docs/src/recipes/anti-patterns.asciidoc            |   6 +
 .../reference/implementations-tinkergraph.asciidoc |   3 +-
 docs/src/reference/intro.asciidoc                  |   6 +-
 docs/src/reference/the-graph.asciidoc              |  49 ++-
 docs/src/reference/the-traversal.asciidoc          | 165 ++++++++--
 docs/src/tutorials/getting-started/index.asciidoc  |  14 +-
 .../process/traversal/step/map/ElementMapStep.java |   4 +-
 .../traversal/step/map/PropertyMapStep.java        |   3 +-
 .../process/traversal/step/util/WithOptions.java   |  23 +-
 .../traversal/step/util/event/EventUtil.java       |   4 +-
 .../verification/StandardVerificationStrategy.java |  23 +-
 .../process/traversal/util/TraversalHelper.java    |  15 +
 .../StandardVerificationStrategyTest.java          |  41 +++
 .../Gherkin/CommonSteps.cs                         |  12 +-
 .../Gherkin/GherkinTestRunner.cs                   |   6 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |  22 +-
 .../Gherkin/IgnoreException.cs                     |   7 +-
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |  16 +-
 gremlin-go/driver/cucumber/gremlin.go              |  22 +-
 .../test/cucumber/feature-steps.js                 |   6 +-
 .../gremlin-javascript/test/cucumber/gremlin.js    |  22 +-
 .../gremlin-javascript/test/cucumber/world.js      |   5 +-
 .../src/main/python/tests/feature/feature_steps.py |   9 +-
 .../src/main/python/tests/feature/gremlin.py       |  22 +-
 .../remote/GraphBinaryGroovyRemoteFeatureTest.java |   2 +-
 ...BinaryGroovyRemoteParameterizedFeatureTest.java |   2 +-
 .../GraphBinaryLangBulkedRemoteFeatureTest.java    |   2 +-
 .../remote/GraphBinaryLangRemoteFeatureTest.java   |   2 +-
 ...phBinaryLangRemoteParameterizedFeatureTest.java |   2 +-
 .../gremlin/driver/remote/RemoteWorld.java         |  12 -
 .../tinkerpop/gremlin/features/StepDefinition.java |   6 +-
 .../apache/tinkerpop/gremlin/features/World.java   |  11 +-
 .../gremlin/language/translator/translations.json  | 332 ++++++++++++++++++---
 .../gremlin/test/features/map/AddVertex.feature    |   4 +-
 .../gremlin/test/features/map/ElementMap.feature   |  34 +++
 .../{filter/Coin.feature => map/Label.feature}     |  57 ++--
 .../gremlin/test/features/map/Labels.feature       |  22 --
 .../gremlin/test/features/map/MergeVertex.feature  |  33 ++
 .../gremlin/test/features/map/ValueMap.feature     |  34 +++
 .../test/features/sideEffect/AddLabel.feature      |  20 +-
 .../test/features/sideEffect/DropLabel.feature     |  14 +-
 .../hadoop/HadoopGraphFeatureIntegrateTest.java    |   2 +-
 .../TinkerGraphAllowNullFeatureTest.java           |   2 +-
 .../tinkergraph/TinkerGraphFeatureTest.java        |   2 +-
 .../TinkerGraphParameterizedFeatureTest.java       |   2 +-
 .../tinkergraph/TinkerShuffleGraphFeatureTest.java |   2 +-
 ...TinkerTransactionGraphAllowNullFeatureTest.java |   2 +-
 .../TinkerTransactionGraphFeatureTest.java         |   2 +-
 .../tinkerpop/gremlin/tinkergraph/TinkerWorld.java |  38 ++-
 51 files changed, 916 insertions(+), 292 deletions(-)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Coin.feature
 => map/Label.feature} (57%)

Reply via email to