This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/gremlin-js/master/types/node-25.6.0
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard c0912511e1 Bump @types/node from 22.19.17 to 25.6.0 in /gremlin-js
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 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 bcb152cc17 Bump @types/node from 22.19.17 to 25.6.0 in /gremlin-js
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 (c0912511e1)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/gremlin-js/master/types/node-25.6.0
(bcb152cc17)
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 | 7 +
docs/src/dev/developer/for-committers.asciidoc | 8 +
docs/src/reference/gremlin-variants.asciidoc | 15 +-
docs/src/upgrade/release-4.x.x.asciidoc | 137 ++
.../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/cucumber/cucumberSteps_test.go | 39 +-
gremlin-go/driver/cucumber/gremlin.go | 18 +
gremlin-go/driver/gremlinlang.go | 25 +
gremlin-go/driver/gremlinlang_test.go | 22 +
.../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-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/traversal-test.js | 2 +-
.../test/unit/gremlin-lang-test.js | 21 +
.../unit/translator/gremlin-translator-test.js | 57 +
gremlin-js/gremlin-mcp/package.json | 4 +-
gremlin-js/gremlint/package.json | 2 +-
gremlin-js/package-lock.json | 471 +------
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 +
86 files changed, 3523 insertions(+), 2871 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
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%)