This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a change to branch model-upgrade
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 9221625136 Update GraphBinary/GraphSON model round-trip coverage.
discard b11a409f76 Remove stale model test references to removed Traverser
type CTR
discard a71a33d3b7 Fix empty_bulklist typo in test_graphbinaryv4model.py CTR
add cfffb3698e Aligned JS and .NET readTimeoutMillis with other GLVs
(#3524)
add 0d485a6e95 Add custom read buffer for GraphBinary responses (#3517)
add 4946e1600f Fix gremlin-python GremlinLang equality and submitAsync
bugs (#3520)
add 0ea801d036 CTR docs updates:
add 1e0cb6f267 Behavioral test fixes and error-handling consistency across
GLVs (#3519)
add a75784e163 Fixed toString on Tree in Gremlin Console CTR
add 2e15a7adbc Rewrote upgrade docs on Tree changes CTR
add 20e4c8ba59 Removed PDTs from the User Upgrade Docs
add d42eaf4eb7 Added rule about section title lengths to avoid wrapping CTR
add d34c518863 Limited section header lengths to avoid wrapping CTR
add e543eea38e Restructure Upgrade Docs to polish up ToC CTR
add 12894c0778 Fix empty_bulklist typo in test_graphbinaryv4model.py CTR
add e58a603c67 Remove stale model test references to removed Traverser
type CTR
add 99cb006fe8 Update GraphBinary/GraphSON model round-trip coverage.
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 (9221625136)
\
N -- N -- N refs/heads/model-upgrade (99cb006fe8)
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:
.skills/tinker-doc/SKILL.md | 5 +-
.../tinker-doc/references/asciidoc-and-wiring.md | 5 +
CHANGELOG.asciidoc | 2 +
data/tinkerpop-zoo.json | 13 +
docs/src/dev/provider/index.asciidoc | 7 +-
docs/src/recipes/olap-spark-yarn.asciidoc | 3 -
docs/src/reference/gremlin-applications.asciidoc | 6 +-
docs/src/reference/gremlin-variants.asciidoc | 78 +-
docs/src/reference/intro.asciidoc | 2 +-
docs/src/reference/the-graph.asciidoc | 5 +-
docs/src/reference/the-traversal.asciidoc | 4 +-
docs/src/upgrade/release-4.x.x.asciidoc | 784 ++++++--------
.../src/Gremlin.Net/Driver/Connection.cs | 50 +-
.../src/Gremlin.Net/Driver/ConnectionSettings.cs | 13 +-
.../Driver/Exceptions/ResponseException.cs | 21 +-
.../IO/GraphBinary4/GraphBinaryReadBuffer.cs | 305 ++++++
.../IO/GraphBinary4/ResponseSerializer.cs | 10 +-
.../Structure/IO/GraphBinary4/StreamExtensions.cs | 130 ++-
.../IO/GraphBinary4/Types/BinarySerializer.cs | 2 +-
.../IO/GraphBinary4/Types/CharSerializer.cs | 2 +-
.../IO/GraphBinary4/Types/StringSerializer.cs | 2 +-
.../Driver/ClientBehaviorIntegrationTests.cs | 41 +-
.../Gremlin.Net.UnitTest/Driver/ConnectionTests.cs | 33 +-
.../IO/GraphBinary4/GraphBinaryReadBufferTests.cs | 1114 ++++++++++++++++++++
.../stream/GraphBinaryStreamResponseReader.java | 19 +-
.../driver/ClientBehaviorIntegrateTest.java | 4 +-
.../GraphBinaryStreamResponseReaderTest.java | 23 +
gremlin-go/driver/client_behavior_test.go | 32 +-
gremlin-go/driver/connection.go | 6 +-
.../gremlin/groovy/loaders/SugarLoader.groovy | 7 +
.../gremlin/groovy/TreeSubscriptTest.groovy | 9 +
.../gremlin-javascript/lib/driver/connection.ts | 2 +-
.../gremlin-javascript/lib/driver/dispatcher.ts | 3 +-
.../test/integration/client-behavior-tests.js | 23 +-
.../test/unit/dispatcher-test.js | 11 +-
.../gremlin_python/driver/aiohttp/transport.py | 8 +
.../python/gremlin_python/driver/connection.py | 32 +
.../driver/driver_remote_connection.py | 8 -
.../python/gremlin_python/process/traversal.py | 2 +-
.../integration/driver/test_client_behavior.py | 21 +-
.../python/tests/unit/process/test_gremlin_lang.py | 30 +
.../structure/IoDataGenerationTest.java | 11 +
42 files changed, 2282 insertions(+), 606 deletions(-)
create mode 100644 data/tinkerpop-zoo.json
create mode 100644
gremlin-dotnet/src/Gremlin.Net/Structure/IO/GraphBinary4/GraphBinaryReadBuffer.cs
create mode 100644
gremlin-dotnet/test/Gremlin.Net.UnitTest/Structure/IO/GraphBinary4/GraphBinaryReadBufferTests.cs