This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a change to branch neo4j-remove
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 153fc28b37 Remove neo4j-gremlin module deprecated in 3.7.0
add 06e03bae51 Add GremlinLang number type suffixes and fix Long
deserialization in JS GLV (#3340)
add da1619db75 Update order of operation for request interceptor and
serialization in gremlin-go (#3358)
add 6861dfa17c CTR updated reference and upgrade docs for go and .net GLVs
new 6cbced322b Remove neo4j-gremlin module deprecated in 3.7.0
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 (153fc28b37)
\
N -- N -- N refs/heads/neo4j-remove (6cbced322b)
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 1 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 | 5 +-
docs/src/reference/gremlin-variants.asciidoc | 319 +++++++--------
docs/src/upgrade/release-4.x.x.asciidoc | 99 +++++
gremlin-go/driver/auth.go | 25 +-
gremlin-go/driver/auth_test.go | 26 +-
gremlin-go/driver/connection.go | 178 ++++----
gremlin-go/driver/connection_test.go | 188 ++++++++-
gremlin-go/driver/interceptor.go | 113 ++++++
gremlin-go/driver/interceptor_test.go | 450 +++++++++++++++++++++
gremlin-go/driver/request.go | 16 +-
gremlin-go/driver/request_test.go | 14 +-
gremlin-go/driver/serializer.go | 6 +-
gremlin-go/driver/serializer_test.go | 10 +-
.../gremlin-javascript/lib/process/gremlin-lang.ts | 15 +-
.../io/binary/internals/LongSerializer.js | 6 +-
.../internals/NumberSerializationStrategy.js | 5 +-
.../test/unit/graphbinary/model-test.js | 6 +-
.../test/unit/graphbinary/model.js | 6 +-
.../test/unit/gremlin-lang-test.js | 36 +-
19 files changed, 1215 insertions(+), 308 deletions(-)
create mode 100644 gremlin-go/driver/interceptor.go
create mode 100644 gremlin-go/driver/interceptor_test.go