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 228b0c602e Add an example zoo graph
add 6a3c91ed07 Reconstruct source-spawned multi-label addV as a single step
add 99f496a86e Preserve GValue variables through multi-label addV and
simplify the addV API
add 687878f5e2 Add label-traversal semantics, addV traversal-varargs, and
multi-label test coverage
add dfc1827a41 Address multi-label documentation review comments
add 561723f234 Fold LabelsDropVerificationStrategy into
StandardVerificationStrategy
add d6c57e2b27 cleanup gherkin tags docs
add 131098648a Fix gremlin-core compilation for addLabel(Traversal) type
inference
add f1e678b261 Test multi-label single-label-default rendering via one-of
assertion
add 102938e5d7 Align addLabel()/dropLabel() traversal-varargs with addV()
semantics
add b88f22ec8f Simplify addV/addLabel/dropLabel grammar visitors
add 43e0336980 Fix multi-label addV codegen in GremlinDslProcessor
add 9ea3df147c Use literal-only grammar for addLabel()/dropLabel() strings
add 2958a30e72 Unify multi-label representation in addV step hierarchy
new 6b78279218 Add an example zoo graph
new ad751d50d3 Fix multi-label rendering gaps in ElementMapStep and
ComputerGraph
new 5abaae710c 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 (228b0c602e)
\
N -- N -- N refs/heads/multi-label-toy-graph (5abaae710c)
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 3 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:
CHANGELOG.asciidoc | 2 +-
.../gremlin-server/gremlin-server-integration.yaml | 4 +
docs/src/dev/developer/for-committers.asciidoc | 20 +-
docs/src/dev/provider/gremlin-semantics.asciidoc | 99 +-
.../reference/implementations-tinkergraph.asciidoc | 16 +-
docs/src/reference/the-graph.asciidoc | 11 +
docs/src/reference/the-traversal.asciidoc | 32 +-
.../gremlin/process/traversal/dsl/GremlinDsl.java | 2 +-
.../process/traversal/dsl/GremlinDslProcessor.java | 46 +-
.../traversal/dsl/GremlinDslProcessorTest.java | 32 +
.../traversal/dsl/AddVMultiLabelDslTraversal.java | 70 ++
.../gremlin/language/grammar/ArgumentVisitor.java | 25 +
.../grammar/DefaultGremlinBaseVisitor.java | 25 +-
.../language/grammar/GenericLiteralVisitor.java | 14 +
.../language/grammar/TraversalMethodVisitor.java | 88 +-
.../grammar/TraversalSourceSpawnMethodVisitor.java | 59 +-
.../translator/DotNetTranslateVisitor.java | 58 +-
.../process/computer/util/ComputerGraph.java | 5 +
.../process/traversal/TraversalStrategies.java | 3 -
.../traversal/dsl/graph/GraphTraversal.java | 146 +--
.../traversal/dsl/graph/GraphTraversalSource.java | 117 ++-
.../gremlin/process/traversal/dsl/graph/__.java | 38 +-
.../map/AbstractAddElementStepPlaceholder.java | 148 ++-
.../step/map/AbstractAddVertexStepPlaceholder.java | 10 +-
.../traversal/step/map/AddElementStepContract.java | 17 +
.../traversal/step/map/AddVertexStartStep.java | 168 +++-
.../step/map/AddVertexStartStepPlaceholder.java | 28 +-
.../process/traversal/step/map/AddVertexStep.java | 170 +++-
.../step/map/AddVertexStepPlaceholder.java | 27 +-
.../process/traversal/step/map/ElementMapStep.java | 14 +-
.../traversal/step/map/PropertyMapStep.java | 5 +-
.../traversal/step/sideEffect/AddLabelStep.java | 54 +-
.../traversal/step/sideEffect/DropLabelsStep.java | 46 +-
.../LabelsDropVerificationStrategy.java | 66 --
.../verification/StandardVerificationStrategy.java | 19 +
.../process/traversal/util/TraversalHelper.java | 27 +
.../process/traversal/util/TraversalUtil.java | 51 +
.../grammar/TraversalMethodVisitorTest.java | 98 ++
.../language/grammar/TraversalRootVisitorTest.java | 29 +
.../gremlin/process/traversal/GremlinLangTest.java | 4 +
.../dsl/graph/GraphTraversalSourceTest.java | 2 +-
.../traversal/step/map/AddVertexStepTest.java | 107 +-
.../LabelsDropVerificationStrategyTest.java | 85 --
.../StandardVerificationStrategyTest.java | 15 +-
.../Process/Traversal/GraphTraversal.cs | 77 +-
.../Process/Traversal/GraphTraversalSource.cs | 47 +-
.../src/Gremlin.Net/Process/Traversal/__.cs | 26 +-
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 33 +
.../Gherkin/ScenarioData.cs | 2 +-
gremlin-go/driver/cucumber/cucumberWorld.go | 15 +-
gremlin-go/driver/cucumber/gremlin.go | 33 +
.../language/translator/DotNetTranslateVisitor.ts | 13 +-
.../gremlin-javascript/test/cucumber/gremlin.js | 43 +-
.../gremlin-javascript/test/cucumber/world.js | 2 +-
gremlin-language/src/main/antlr4/Gremlin.g4 | 28 +-
.../src/main/python/tests/feature/gremlin.py | 33 +
.../src/main/python/tests/feature/terrain.py | 4 +-
.../server/util/TinkerFactoryDataLoader.java | 5 +-
.../gremlin/driver/remote/RemoteWorld.java | 3 +
.../server/util/CheckedGraphManagerTest.java | 2 +-
.../server/util/DefaultGraphManagerTest.java | 13 +-
.../gremlin/server/gremlin-server-integration.yaml | 4 +
.../apache/tinkerpop/gremlin/LoadGraphWith.java | 20 +-
.../gremlin/language/translator/translations.json | 1033 +++++++++++++++++---
.../gremlin/test/features/map/AddVertex.feature | 44 +
.../gremlin/test/features/map/ElementMap.feature | 154 ++-
.../gremlin/test/features/map/Labels.feature | 80 +-
.../gremlin/test/features/map/ValueMap.feature | 80 +-
.../test/features/sideEffect/AddLabel.feature | 74 +-
.../test/features/sideEffect/DropLabel.feature | 84 +-
.../tinkerpop/gremlin/tinkergraph/TinkerWorld.java | 33 +
.../sideEffect/LabelTraversalSemanticsTest.java | 289 ++++++
72 files changed, 3514 insertions(+), 862 deletions(-)
create mode 100644
gremlin-annotations/src/test/resources/org/apache/tinkerpop/gremlin/process/traversal/dsl/AddVMultiLabelDslTraversal.java
delete mode 100644
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/LabelsDropVerificationStrategy.java
delete mode 100644
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/LabelsDropVerificationStrategyTest.java
create mode 100644
tinkergraph-gremlin/src/test/java/org/apache/tinkerpop/gremlin/tinkergraph/process/traversal/step/sideEffect/LabelTraversalSemanticsTest.java