This is an automated email from the ASF dual-hosted git repository.
Cole-Greer pushed a change to branch java-streaming
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard fd391927a0 fix tests
discard cc9466f669 Add streaming HTTP response support to gremlin-driver
add 0f592d4007 Streaming support for Python (#3396)
add 2195ef59cd Bump @eslint/js from 9.39.4 to 10.0.1 in /gremlin-js (#3408)
add 2d477fd709 Bump eslint from 9.39.4 to 10.3.0 in /gremlin-js (#3409)
add 2e7d0dd4a1 Upgrade build tooling for docs/gremlint and docs/gremlator
CTR
add b4b8e62f76 Add streaming HTTP response support to gremlin-driver
add 6ebd0706fc fix tests
add 446c346293 Fix connection corruption from double-LastHttpContent in
streaming pipeline
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 (fd391927a0)
\
N -- N -- N refs/heads/java-streaming (446c346293)
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/gremlator/package-lock.json | 2136 +++++------------
docs/gremlator/package.json | 4 +-
docs/gremlator/vite.config.ts | 12 +-
docs/gremlint/package-lock.json | 2490 +++++++-------------
docs/gremlint/package.json | 6 +-
docs/src/reference/gremlin-variants.asciidoc | 15 +-
docs/src/upgrade/release-4.x.x.asciidoc | 77 +
.../handler/HttpStreamingResponseHandler.java | 3 +
gremlin-js/gremlin-javascript/package.json | 4 +-
gremlin-js/gremlin-mcp/package.json | 4 +-
gremlin-js/gremlint/package.json | 2 +-
gremlin-js/package-lock.json | 458 +---
gremlin-python/docker-compose.yml | 2 -
.../src/main/python/examples/connections.py | 3 +-
.../gremlin_python/driver/aiohttp/transport.py | 107 +-
.../main/python/gremlin_python/driver/client.py | 42 +-
.../python/gremlin_python/driver/connection.py | 84 +-
.../driver/driver_remote_connection.py | 14 +-
.../main/python/gremlin_python/driver/protocol.py | 175 --
.../main/python/gremlin_python/driver/resultset.py | 16 +-
.../python/gremlin_python/driver/serializer.py | 167 +-
.../main/python/gremlin_python/driver/transport.py | 45 -
.../gremlin_python/structure/io/graphbinaryV4.py | 5 +-
.../gremlin_python/structure/io/graphsonV4.py | 599 -----
.../src/main/python/tests/feature/feature_steps.py | 5 -
.../src/main/python/tests/feature/terrain.py | 2 -
.../src/main/python/tests/integration/conftest.py | 42 +-
.../python/tests/integration/driver/test_client.py | 58 +-
.../driver/test_driver_remote_connection.py | 87 +-
.../tests/integration/driver/test_protocol.py | 131 -
.../structure/io/test_functionalityio.py | 15 -
.../aiohttp => tests/unit/driver}/__init__.py | 0
.../tests/unit/driver/test_http_streaming.py | 1347 +++++++++++
.../tests/unit/structure/io/test_graphsonV4.py | 567 -----
.../unit/structure/io/test_graphsonv4model.py | 306 ---
.../server/handler/HttpGremlinEndpointHandler.java | 6 +-
37 files changed, 3159 insertions(+), 5883 deletions(-)
delete mode 100644
gremlin-python/src/main/python/gremlin_python/driver/protocol.py
delete mode 100644
gremlin-python/src/main/python/gremlin_python/driver/transport.py
delete mode 100644
gremlin-python/src/main/python/gremlin_python/structure/io/graphsonV4.py
delete mode 100644
gremlin-python/src/main/python/tests/integration/driver/test_protocol.py
copy gremlin-python/src/main/python/{gremlin_python/driver/aiohttp =>
tests/unit/driver}/__init__.py (100%)
create mode 100644
gremlin-python/src/main/python/tests/unit/driver/test_http_streaming.py
delete mode 100644
gremlin-python/src/main/python/tests/unit/structure/io/test_graphsonV4.py
delete mode 100644
gremlin-python/src/main/python/tests/unit/structure/io/test_graphsonv4model.py