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

kenhuuu pushed a change to branch graphsonv4-driver
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 9df6c6a446 Re-enable GraphSON message serializer for debugging.
 discard c403f1bab7 Add data list back to result object in GraphSONv4.
 discard caef5c0920 Update RequestInterceptor to better work with HTTP.
     add 3389bdf66d Update response message serialization with `{bulked}` flag 
to indicate bulked result data (#2826)
     add 54856ad848 Updated BulkSet and List serializers in Java and Python to 
implement list `bulk` flag in GraphBinaryV4 IO spec (#2821)
     add 8152fb2cb2 Add data list back to result object in GraphSONv4.
     add 222afda6f0 Merge pull request #2823
     add cd09093899 Update GraphSONv4 format for edge's vertex reference.
     add f693759835 Merge pull request #2810
     add 64ec40b355 Update RequestInterceptor to better work with HTTP. (#2799)
     add f6ece675b5 Temporarily disable remote tx from Java driver CTR
     new 08535f0305 Re-enable GraphSON message serializer for debugging.

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   (9df6c6a446)
            \
             N -- N -- N   refs/heads/graphsonv4-driver (08535f0305)

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                                 |   3 +
 docs/src/dev/io/graphson.asciidoc                  | 665 ++++++++++++---------
 docs/src/upgrade/release-4.x.x.asciidoc            |   9 +
 .../traversal/dsl/graph/GraphTraversalSource.java  |   8 +-
 .../structure/io/binary/GraphBinaryWriter.java     |   8 +
 .../io/binary/TypeSerializerRegistry.java          |   2 +-
 .../io/binary/types/BulkSetSerializer.java         |  11 +-
 .../structure/io/binary/types/ListSerializer.java  |  25 +
 .../io/binary/types/SimpleTypeSerializer.java      |   3 +
 .../io/graphson/GraphSONSerializersV4.java         |  34 +-
 .../structure/io/graphson/GraphSONMapperTest.java  |   2 +-
 .../tinkerpop/gremlin/driver/Channelizer.java      |   2 +-
 .../apache/tinkerpop/gremlin/driver/Client.java    |   1 +
 .../apache/tinkerpop/gremlin/driver/Cluster.java   |  27 +
 .../tinkerpop/gremlin/driver/RequestOptions.java   |  17 +
 .../apache/tinkerpop/gremlin/driver/Settings.java  |   8 +
 .../driver/handler/GremlinResponseHandler.java     |  15 +-
 .../driver/handler/HttpGremlinRequestEncoder.java  |   8 +-
 .../driver/handler/HttpGremlinResponseDecoder.java |  13 +-
 .../handler/HttpGremlinResponseStreamDecoder.java  |   5 +
 .../driver/remote/DriverRemoteConnection.java      |  16 +-
 .../driver/remote/DriverRemoteTransaction.java     | 260 ++++----
 .../driver/remote/DriverRemoteTraversal.java       |   5 +-
 .../gremlin/driver/simple/SimpleHttpClient.java    |   2 +-
 .../tinkerpop/gremlin/driver/SettingsTest.java     |   3 +
 .../HttpGremlinResponseStreamDecoderTest.java      |  37 +-
 gremlin-python/docker-compose.yml                  |   1 +
 .../main/python/gremlin_python/driver/client.py    |   3 +-
 .../python/gremlin_python/driver/connection.py     |   8 +-
 .../driver/driver_remote_connection.py             |   4 +-
 .../main/python/gremlin_python/driver/request.py   |   2 +-
 .../python/gremlin_python/driver/serializer.py     |  21 +-
 .../python/gremlin_python/process/traversal.py     |  21 +-
 .../gremlin_python/structure/io/graphbinaryV4.py   |  51 +-
 gremlin-python/src/main/python/radish/terrain.py   |   4 +-
 .../tests/driver/test_driver_remote_connection.py  |   7 +
 .../src/main/python/tests/structure/io/model.py    |   4 +-
 .../tests/structure/io/test_graphbinaryv4model.py  |  11 +-
 .../server/handler/HttpGremlinEndpointHandler.java |  53 +-
 ...=> GraphBinaryLangBulkedRemoteFeatureTest.java} |   6 +-
 .../gremlin/driver/remote/RemoteWorld.java         |  10 +
 .../gremlin/server/GremlinServerIntegrateTest.java |  54 +-
 .../io.cucumber.core.backend.ObjectFactory         |   1 +
 .../io/graphbinary/empty-bulklist-v4.gbin          | Bin 0 -> 6 bytes
 .../structure/io/graphbinary/empty-bulkset-v4.gbin | Bin 6 -> 0 bytes
 .../structure/io/graphbinary/var-bulklist-v4.gbin  | Bin 0 -> 43 bytes
 .../structure/io/graphbinary/var-bulkset-v4.gbin   | Bin 43 -> 0 bytes
 .../structure/io/graphson/no-prop-edge-v4.json     |  16 +-
 .../structure/io/graphson/tinker-graph-v4.json     | 224 ++++---
 .../io/graphson/traversal-edge-v4-no-types.json    |  12 +-
 .../structure/io/graphson/traversal-edge-v4.json   |  16 +-
 .../org/apache/tinkerpop/gremlin/util/Tokens.java  |   7 +
 .../gremlin/util/message/RequestMessage.java       |   5 +
 .../gremlin/util/message/ResponseMessage.java      |   8 +-
 .../gremlin/util/message/ResponseResult.java       |   8 +-
 .../util/ser/GraphBinaryMessageSerializerV4.java   |   9 +
 .../util/ser/binary/RequestMessageSerializer.java  |   3 +
 .../io/AbstractTypedCompatibilityTest.java         |  33 +-
 .../io/AbstractUntypedCompatibilityTest.java       |  16 +-
 .../tinkerpop/gremlin/structure/io/Model.java      |   4 +-
 .../gremlin/util/ser/AbstractRoundTripTest.java    |  43 +-
 .../GraphSONMessageSerializerV4RoundTripTest.java  |   2 +-
 62 files changed, 1149 insertions(+), 707 deletions(-)
 copy 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/driver/remote/{GraphBinaryGroovyRemoteFeatureTest.java
 => GraphBinaryLangBulkedRemoteFeatureTest.java} (88%)
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/structure/io/graphbinary/empty-bulklist-v4.gbin
 delete mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/structure/io/graphbinary/empty-bulkset-v4.gbin
 create mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/structure/io/graphbinary/var-bulklist-v4.gbin
 delete mode 100644 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/structure/io/graphbinary/var-bulkset-v4.gbin

Reply via email to