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

andreac pushed a change to branch global-repeat-poc
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 66d789fbe7 Q's first attempt to change limit in repeat to 
per-iteration counters.
 discard e06690e5d0 PoC attempting to make repeat() act as a global parent not 
a local parent
     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)
     new 89ce3945f2 PoC attempting to make repeat() act as a global parent not 
a local parent
     new 0b6a37fe8f Q's first attempt to change limit in repeat to 
per-iteration counters.

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   (66d789fbe7)
            \
             N -- N -- N   refs/heads/global-repeat-poc (0b6a37fe8f)

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:
 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   |   88 +-
 .../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(+), 196 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%)

Reply via email to