This is an automated email from the ASF dual-hosted git repository.
kenhuuu pushed a change to branch stringify-params
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
discard 4ea102c33f update test to new structure
discard 9dc4903637 Convert request bindings to gremlin-lang string format
discard eabfcbaf93 Fix null map key parsing in GenericLiteralVisitor
discard a4e433e30e Add Char, Duration, Binary support to gremlin-lang. Squash
with GLV implemenetations later
add c29ce6e154 CTR Fix generate-modern-readonly.groovy
add 7e9615ef3b TINKERPOP-3225 conjoin has incorrect null handling (#3372)
add fae1dcc362 Merge branch '3.7-dev' into 3.8-dev
add 9509d4f92d Fix GHA exclusions for GLVs (#3378)
add e3be426d50 Merge branch '3.8-dev'
add 72d6881362 GO support for escaped characters (#3381)
add aa383872be CTR: Pin more-itertools for 3.9 compatibility in GHA
add f4516e4370 CTR Bump commons-beanutils to 1.11.0 (CVE-2025-48734)
add 0f02480e94 Merge branch '3.7-dev' into 3.8-dev
add b08a6f0f71 Merge branch '3.8-dev'
new cdf59f1e62 Add Char, Duration, Binary support to gremlin-lang.
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 (4ea102c33f)
\
N -- N -- N refs/heads/stringify-params (cdf59f1e62)
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:
.github/workflows/build-test.yml | 2 +-
CHANGELOG.asciidoc | 4 +-
docs/src/upgrade/release-3.7.x.asciidoc | 29 ++
docs/src/upgrade/release-4.x.x.asciidoc | 9 -
.../language/grammar/GenericLiteralVisitor.java | 19 +-
.../language/grammar/GremlinQueryParser.java | 105 +----
.../language/grammar/ParameterMapVisitor.java | 102 -----
.../gremlin/process/traversal/GremlinLang.java | 91 +----
.../process/traversal/step/map/ConjoinStep.java | 2 +-
.../grammar/GeneralLiteralVisitorTest.java | 68 +++-
.../language/grammar/ParameterMapVisitorTest.java | 220 -----------
.../gremlin/process/traversal/GremlinLangTest.java | 424 +--------------------
.../traversal/step/map/ConjoinStepTest.java | 3 +-
.../Gremlin.Net/Process/Traversal/GremlinLang.cs | 17 +-
.../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs | 18 +
.../Process/Traversal/GremlinLangTests.cs | 106 ++++++
.../tinkerpop/gremlin/driver/RequestOptions.java | 49 +--
.../driver/remote/DriverRemoteConnection.java | 6 -
.../driver/remote/TransactionRemoteConnection.java | 6 -
gremlin-go/driver/cucumber/gremlin.go | 2 +
gremlin-go/driver/gremlinlang.go | 93 ++++-
gremlin-go/driver/gremlinlang_test.go | 84 ++++
.../gremlin-javascript/lib/process/gremlin-lang.ts | 4 +
.../gremlin-javascript/test/cucumber/gremlin.js | 2 +
.../test/unit/gremlin-lang-test.js | 32 ++
gremlin-language/src/main/antlr4/Gremlin.g4 | 3 +-
.../python/gremlin_python/process/traversal.py | 52 ++-
.../src/main/python/tests/feature/gremlin.py | 2 +
.../python/tests/unit/process/test_gremlin_lang.py | 64 +++-
.../scripts/generate-modern-readonly.groovy | 2 +-
.../apache/tinkerpop/gremlin/server/Context.java | 10 -
.../server/handler/HttpGremlinEndpointHandler.java | 47 +--
.../server/handler/HttpRequestMessageDecoder.java | 8 +-
.../gremlin/server/util/GremlinError.java | 7 -
.../GremlinDriverTransactionIntegrateTest.java | 33 --
.../server/GremlinServerHttpIntegrateTest.java | 22 +-
.../gremlin/server/GremlinServerIntegrateTest.java | 50 +--
.../gremlin/server/HttpDriverIntegrateTest.java | 39 +-
.../handler/HttpRequestMessageDecoderTest.java | 9 +-
.../gremlin/language/translator/translations.json | 34 ++
.../gremlin/test/features/map/Conjoin.feature | 24 ++
.../gremlin/util/message/RequestMessage.java | 25 +-
.../ser/AbstractGraphSONMessageSerializerV4.java | 2 +-
.../util/ser/binary/RequestMessageSerializer.java | 2 +-
.../gremlin/util/message/RequestMessageTest.java | 44 +--
.../util/ser/binary/MessageSerializerTest.java | 2 +-
.../tinkergraph/structure/TinkerGraphTest.java | 26 --
47 files changed, 792 insertions(+), 1212 deletions(-)
delete mode 100644
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/language/grammar/ParameterMapVisitor.java
delete mode 100644
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/language/grammar/ParameterMapVisitorTest.java