This is an automated email from the ASF dual-hosted git repository.
colegreer pushed a change to branch PlaceholderStepFamilies
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 4d219c03f0 updates from PR feedback
discard 0a6134f75e Consolidate interfaces from concrete steps to step
contracts and make Placeholder steps extend from same base classes as concrete
steps.
add e2cc4ea409 Switched `gremlin-net` byte serializers to signed bytes
(`sbyte`) to be consistent with IO doc (#3206)
add 6f767e9e1b [TINKERPOP-2234] - Proposal for Type Predicate & Type Enum
(#3207)
add ac7f0ffdbe CTR update `asString()` semantics to throw
`IllegalArgumentException` with `null` inputs for casting step consistency
add 8a406426c0 CTR fix & re-order `asString()` in semantics doc
add 3ef6975de0 Fix TraversalParent implementations for Placeholder steps
(#3209)
add 7b483f6cc5 Consolidate interfaces from concrete steps to step
contracts and make Placeholder steps extend from same base classes as concrete
steps.
add 44e77d8e5c updates from PR feedback
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 (4d219c03f0)
\
N -- N -- N refs/heads/PlaceholderStepFamilies (44e77d8e5c)
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:
CHANGELOG.asciidoc | 2 +
docs/src/dev/future/index.asciidoc | 5 +-
.../dev/future/proposal-type-predicate-8.asciidoc | 263 +++++
docs/src/dev/provider/gremlin-semantics.asciidoc | 59 +-
docs/src/reference/the-traversal.asciidoc | 2 +-
docs/src/upgrade/release-3.8.x.asciidoc | 14 +
.../translator/DotNetTranslateVisitor.java | 4 +-
.../traversal/lambda/GValueConstantTraversal.java | 13 +
.../process/traversal/step/TraversalParent.java | 19 +
.../step/map/AbstractAddEdgeStepPlaceholder.java | 26 +-
.../map/AbstractAddElementStepPlaceholder.java | 103 +-
.../map/AbstractMergeElementStepPlaceholder.java | 84 +-
.../traversal/step/map/AddElementStepContract.java | 8 +-
.../traversal/step/map/AsStringGlobalStep.java | 4 +-
.../traversal/step/map/AsStringLocalStep.java | 7 +-
.../process/traversal/step/map/DateDiffStep.java | 9 +
.../traversal/step/map/TraversalSelectStep.java | 2 +-
.../traversal/step/sideEffect/AddPropertyStep.java | 6 +-
.../step/sideEffect/AddPropertyStepContract.java | 12 +-
.../sideEffect/AddPropertyStepPlaceholder.java | 85 +-
.../language/translator/GremlinTranslatorTest.java | 6 +-
.../traversal/step/TraversalParentTest.java | 1027 ++++++++++++++++++++
.../traversal/step/map/AddEdgeStartStepTest.java | 4 +-
.../traversal/step/map/AddEdgeStepTest.java | 4 +-
.../traversal/step/map/AddVertexStartStepTest.java | 4 +-
.../traversal/step/map/AddVertexStepTest.java | 4 +-
.../traversal/step/map/AsStringGlobalStepTest.java | 8 +-
.../traversal/step/map/AsStringLocalStepTest.java | 6 +-
.../step/sideEffect/AddPropertyStepTest.java | 2 +-
.../Structure/IO/GraphBinary/StreamExtensions.cs | 23 +
.../IO/GraphBinary/TypeSerializerRegistry.cs | 2 +-
.../IO/GraphBinary/Types/SingleTypeSerializer.cs | 8 +-
.../Structure/IO/GraphSON/GraphSONReader.cs | 2 +-
.../Structure/IO/GraphSON/GraphSONWriter.cs | 2 +-
.../{ByteConverter.cs => SByteConverter.cs} | 6 +-
.../Gherkin/CommonSteps.cs | 2 +-
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 39 +-
.../Structure/IO/GraphBinary/GraphBinaryTests.cs | 65 +-
.../Structure/IO/GraphSON/GraphSONReaderTests.cs | 14 +
.../Structure/IO/GraphSON/GraphSONWriterTests.cs | 29 +-
gremlin-go/driver/cucumber/gremlin.go | 1 -
.../gremlin-javascript/test/cucumber/gremlin.js | 1 -
gremlin-python/src/main/python/radish/gremlin.py | 1 -
.../gremlin/test/features/map/AsString.feature | 9 +-
.../gremlin/test/features/map/ToUpper.feature | 14 -
45 files changed, 1818 insertions(+), 192 deletions(-)
create mode 100644 docs/src/dev/future/proposal-type-predicate-8.asciidoc
create mode 100644
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/TraversalParentTest.java
rename gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphSON/{ByteConverter.cs
=> SByteConverter.cs} (92%)