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

xiazcy pushed a change to branch net-streaming
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 2f929bd27b rename `ResponseMessageSerializer` to `ResponseSerializer`, 
remove unused `StatusAttributes` API
 discard 5a139ce78d added streaming deserialization in `gremlin-dotnet`, moved 
minimal target to `.net8.0`
     add 0531cbb7d0 Fix bulking behavior in gremlin-go for TP 4.0 (#3397)
     add 62bd6dad66 Response Streaming in JS (#3395)
     add 3e0641a322 CTR Fix ClassCastException when numeric request fields are 
deserialized as Integer
     add cbffc7a140 Clarify Assisted-by trailer format in AGENTS.md
     add 3ad5a83983 Merge pull request #3417 from 
L0Lmaker/improvement/agents-md-assisted-by-clarity
     add 51ec5bc98d TINKERPOP-3153 Add Char, Duration, Binary support to 
gremlin-lang.
     add 0f592d4007 Streaming support for Python (#3396)
     add 5863734607 added streaming deserialization in `gremlin-dotnet`, moved 
minimal target to `.net8.0`
     add a4f3261202 rename `ResponseMessageSerializer` to `ResponseSerializer`, 
remove unused `StatusAttributes` API

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   (2f929bd27b)
            \
             N -- N -- N   refs/heads/net-streaming (a4f3261202)

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:
 AGENTS.md                                          |   11 +-
 CHANGELOG.asciidoc                                 |   10 +
 docs/src/dev/developer/for-committers.asciidoc     |    8 +
 docs/src/reference/gremlin-variants.asciidoc       |   97 +-
 docs/src/upgrade/release-4.x.x.asciidoc            |  172 ++-
 .../tinkerpop/gremlin/jsr223/CoreImports.java      |    3 +
 .../grammar/DefaultGremlinBaseVisitor.java         |   14 +-
 .../language/grammar/GenericLiteralVisitor.java    |   69 +-
 .../translator/AnonymizedTranslatorVisitor.java    |   17 +
 .../translator/DotNetTranslateVisitor.java         |   34 +
 .../language/translator/GoTranslateVisitor.java    |   30 +
 .../translator/GroovyTranslateVisitor.java         |   29 +
 .../language/translator/JavaTranslateVisitor.java  |   30 +
 .../translator/JavascriptTranslateVisitor.java     |   18 +
 .../translator/PythonTranslateVisitor.java         |   36 +
 .../language/translator/TranslateVisitor.java      |   18 +
 .../gremlin/process/traversal/GremlinLang.java     |   33 +
 .../grammar/GeneralLiteralVisitorTest.java         |  165 +++
 .../language/translator/GremlinTranslatorTest.java |   54 +
 .../gremlin/process/traversal/GremlinLangTest.java |   24 +
 .../Gremlin.Net/Process/Traversal/GremlinLang.cs   |   23 +-
 .../Gherkin/CommonSteps.cs                         |   24 +
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |   18 +
 .../Process/Traversal/GremlinLangTests.cs          |   16 +
 gremlin-go/build/generate.groovy                   |   66 +-
 gremlin-go/driver/client.go                        |    8 +-
 gremlin-go/driver/client_test.go                   |   54 +
 gremlin-go/driver/connection.go                    |   18 +-
 gremlin-go/driver/connection_test.go               |   36 +-
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |   39 +-
 gremlin-go/driver/cucumber/gremlin.go              |   18 +
 gremlin-go/driver/graphBinaryDeserializer.go       |   22 +-
 gremlin-go/driver/gremlinlang.go                   |   25 +
 gremlin-go/driver/gremlinlang_test.go              |   22 +
 gremlin-go/driver/request.go                       |    8 +-
 gremlin-go/driver/requestOptions.go                |   20 +-
 gremlin-go/driver/requestOptions_test.go           |    6 -
 gremlin-go/driver/request_test.go                  |    6 +
 gremlin-go/driver/result.go                        |   10 +-
 gremlin-go/driver/resultSet.go                     |    9 +-
 gremlin-go/driver/result_test.go                   |   25 +
 gremlin-go/driver/serializer.go                    |   15 +-
 gremlin-go/driver/serializer_test.go               |   65 +
 gremlin-go/driver/traversal.go                     |  101 +-
 gremlin-go/driver/traversal_test.go                |  125 ++
 gremlin-js/gremlin-javascript/lib/driver/client.ts |   87 +-
 .../gremlin-javascript/lib/driver/connection.ts    |  120 +-
 .../lib/driver/driver-remote-connection.ts         |   12 +-
 .../lib/driver/remote-connection.ts                |    9 +-
 .../lib/driver/response-error.ts                   |    8 +-
 .../translator/AnonymizedTranslateVisitor.ts       |   12 +
 .../language/translator/DotNetTranslateVisitor.ts  |   28 +
 .../lib/language/translator/GoTranslateVisitor.ts  |   39 +
 .../language/translator/GroovyTranslateVisitor.ts  |   26 +
 .../language/translator/JavaTranslateVisitor.ts    |   26 +
 .../translator/JavascriptTranslateVisitor.ts       |   14 +
 .../language/translator/PythonTranslateVisitor.ts  |   33 +
 .../lib/language/translator/TranslateVisitor.ts    |   12 +
 .../gremlin-javascript/lib/process/gremlin-lang.ts |    4 +
 .../gremlin-javascript/lib/process/traversal.ts    |  138 +-
 .../structure/io/binary/internals/AnySerializer.js |   42 +-
 .../io/binary/internals/ArraySerializer.js         |  116 +-
 .../io/binary/internals/BigIntegerSerializer.js    |   93 +-
 .../io/binary/internals/BinarySerializer.js        |   87 +-
 .../io/binary/internals/BooleanSerializer.js       |   76 +-
 .../io/binary/internals/ByteSerializer.js          |   67 +-
 .../io/binary/internals/DateTimeSerializer.js      |  134 +-
 .../io/binary/internals/DoubleSerializer.js        |   67 +-
 .../io/binary/internals/EdgeSerializer.js          |  183 +--
 .../io/binary/internals/EnumSerializer.js          |  107 +-
 .../io/binary/internals/FloatSerializer.js         |   67 +-
 .../io/binary/internals/GraphBinaryReader.js       |  154 ++-
 .../structure/io/binary/internals/IntSerializer.js |   75 +-
 .../io/binary/internals/LongSerializer.js          |   77 +-
 .../structure/io/binary/internals/MapSerializer.js |  109 +-
 .../io/binary/internals/MarkerSerializer.js        |   67 +-
 .../io/binary/internals/PathSerializer.js          |   91 +-
 .../io/binary/internals/PropertySerializer.js      |  108 +-
 .../structure/io/binary/internals/SetSerializer.js |  113 +-
 .../io/binary/internals/ShortSerializer.js         |   67 +-
 .../structure/io/binary/internals/StreamReader.js  |  203 +++
 .../io/binary/internals/StringSerializer.js        |   91 +-
 .../io/binary/internals/StubSerializer.js          |    4 +-
 .../binary/internals/UnspecifiedNullSerializer.js  |   42 +-
 .../io/binary/internals/UuidSerializer.js          |   89 +-
 .../binary/internals/VertexPropertySerializer.js   |  141 +-
 .../io/binary/internals/VertexSerializer.js        |  108 +-
 gremlin-js/gremlin-javascript/package.json         |    4 +-
 .../scripts/groovy/generate.groovy                 |   43 +-
 .../test/cucumber/feature-steps.js                 |    6 +
 .../gremlin-javascript/test/cucumber/gremlin.js    |   19 +
 .../gremlin-javascript/test/cucumber/world.js      |    8 +
 .../test/integration/remote-connection-tests.js    |    4 +-
 .../test/integration/socket-connection-tests.js    |  114 ++
 .../test/integration/traversal-test.js             |    2 +-
 .../unit/graphbinary/GraphBinaryReader-test.js     |  349 ++++-
 .../test/unit/graphbinary/StreamReader-test.js     |  215 ++++
 .../unit/graphbinary/async-deserialize-test.js     |  285 +++++
 .../test/unit/graphbinary/error-cases-test.js      |  370 ++++--
 .../test/unit/graphbinary/model-test.js            |   60 +-
 .../test/unit/graphbinary/null-handling-test.js    |  131 +-
 .../test/unit/graphbinary/type-detection-test.js   |  129 +-
 .../test/unit/gremlin-lang-test.js                 |   21 +
 .../unit/translator/gremlin-translator-test.js     |   57 +
 .../gremlin-javascript/test/unit/traversal-test.js |   20 +-
 gremlin-js/package-lock.json                       |   69 +-
 gremlin-language/src/main/antlr4/Gremlin.g4        |   44 +-
 .../test/resources/incorrect-gremlin-values.txt    |    4 +-
 gremlin-python/build/generate.groovy               |    4 +-
 gremlin-python/docker-compose.yml                  |   10 +-
 .../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 -
 .../python/gremlin_python/process/traversal.py     |   22 +-
 .../gremlin_python/structure/io/graphbinaryV4.py   |    5 +-
 .../gremlin_python/structure/io/graphsonV4.py      |  599 ---------
 .../src/main/python/tests/feature/feature_steps.py |   27 +-
 .../src/main/python/tests/feature/gremlin.py       |   22 +-
 .../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 ++++++++++++++++++++
 .../python/tests/unit/process/test_gremlin_lang.py |   14 +-
 .../tests/unit/structure/io/test_graphsonV4.py     |  567 --------
 .../unit/structure/io/test_graphsonv4model.py      |  306 -----
 .../tinkerpop/gremlin/features/StepDefinition.java |   24 +
 .../gremlin/language/translator/translations.json  |  324 +++++
 .../{map/Length.feature => data/Binary.feature}    |   61 +-
 .../{map/Length.feature => data/Char.feature}      |   61 +-
 .../{filter/Is.feature => data/Duration.feature}   |   88 +-
 .../ser/AbstractGraphSONMessageSerializerV4.java   |    2 +-
 .../util/ser/binary/RequestMessageSerializer.java  |    4 +-
 .../util/ser/binary/MessageSerializerTest.java     |   37 +
 143 files changed, 6747 insertions(+), 4516 deletions(-)
 create mode 100644 
gremlin-js/gremlin-javascript/lib/structure/io/binary/internals/StreamReader.js
 create mode 100644 
gremlin-js/gremlin-javascript/test/unit/graphbinary/StreamReader-test.js
 create mode 100644 
gremlin-js/gremlin-javascript/test/unit/graphbinary/async-deserialize-test.js
 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
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Length.feature
 => data/Binary.feature} (56%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{map/Length.feature
 => data/Char.feature} (56%)
 copy 
gremlin-test/src/main/resources/org/apache/tinkerpop/gremlin/test/features/{filter/Is.feature
 => data/Duration.feature} (50%)

Reply via email to