This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch PDT
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard edd457941d docs
discard 615e306538 restrict auto-hydration/dehydration patterns for JS and Go
discard c56518fde4 fix tests
discard 28338421cd fix tests
discard 4680f62725 Implement Provider Defined Types (PDT) for TinkerPop 4
add cf0118a45c Add typed numeric wrappers and precise number mode to
gremlin-javascript (#3427)
add d129283e08 Fix Flaky .Net and server tests (#3431)
add 18488d44d3 Implement Provider Defined Types (PDT) for TinkerPop 4
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 (edd457941d)
\
N -- N -- N refs/heads/PDT (18488d44d3)
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 | 1 +
docs/src/reference/gremlin-variants.asciidoc | 51 +-
docs/src/upgrade/release-4.x.x.asciidoc | 47 ++
.../Driver/PropertyDeserializationTests.cs | 5 +
.../Gherkin/GherkinTestRunner.cs | 6 +-
.../DriverRemoteConnection/GraphTraversalTests.cs | 1 +
.../gremlin-javascript/lib/driver/connection.ts | 5 +-
gremlin-js/gremlin-javascript/lib/index.ts | 12 +
.../gremlin-javascript/lib/process/gremlin-lang.ts | 26 +-
.../lib/structure/io/binary/GraphBinary.js | 119 +++--
.../structure/io/binary/internals/AnySerializer.js | 11 +-
.../internals/NumberSerializationStrategy.js | 34 +-
gremlin-js/gremlin-javascript/lib/utils.ts | 156 +++++-
gremlin-js/gremlin-javascript/test/helper.js | 2 +
.../test/integration/client-tests.js | 33 +-
.../gremlin-javascript/test/unit/exports-test.js | 13 +
.../test/unit/graphbinary/precise-mode-test.js | 521 +++++++++++++++++++++
.../test/unit/graphbinary/typed-number-test.js | 212 +++++++++
.../test/unit/gremlin-lang-test.js | 134 +++++-
.../GremlinServerHttpTransactionIntegrateTest.java | 14 +-
20 files changed, 1335 insertions(+), 68 deletions(-)
create mode 100644
gremlin-js/gremlin-javascript/test/unit/graphbinary/precise-mode-test.js
create mode 100644
gremlin-js/gremlin-javascript/test/unit/graphbinary/typed-number-test.js