This is an automated email from the ASF dual-hosted git repository.
xiazcy pushed a change to branch type-predicate
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 6aa152e0a1 Added separate feature test file for typeOf & fixed bugs
omit 742882ae33 Replace use of `N` token with `GType` tokens
omit 8297c97898 Implement `P.typeOf()` predicate, added new `GType` enum,
with a small set of tests.
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 c43503b837 Implement `P.typeOf()`` predicate, added new `GType` enum
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 (6aa152e0a1)
\
N -- N -- N refs/heads/type-predicate (c43503b837)
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 | 6 +-
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 | 16 +-
.../translator/DotNetTranslateVisitor.java | 4 +-
.../traversal/{Type.java => CompareType.java} | 34 +--
.../tinkerpop/gremlin/process/traversal/P.java | 14 +-
.../traversal/step/map/AsStringGlobalStep.java | 4 +-
.../traversal/step/map/AsStringLocalStep.java | 7 +-
.../structure/io/binary/types/PSerializer.java | 5 +-
.../io/graphson/TraversalSerializersV2.java | 4 +-
.../io/graphson/TraversalSerializersV3.java | 4 +-
.../language/translator/GremlinTranslatorTest.java | 6 +-
.../traversal/step/map/AsStringGlobalStepTest.java | 8 +-
.../traversal/step/map/AsStringLocalStepTest.java | 6 +-
.../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 --
.../tinkergraph/structure/TinkerGraphPlayTest.java | 3 +-
34 files changed, 529 insertions(+), 139 deletions(-)
create mode 100644 docs/src/dev/future/proposal-type-predicate-8.asciidoc
rename
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/{Type.java
=> CompareType.java} (69%)
rename gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphSON/{ByteConverter.cs
=> SByteConverter.cs} (92%)