You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2023/12/01 20:24:15 UTC

(tinkerpop) 01/01: Merge pull request #2366 from apache/TINKERPOP-3017

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

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 095718617e0f94f92545e0ac077ca0ab189d6b7f
Merge: e0f6ada5c8 133eb47702
Author: Stephen Mallette <sp...@users.noreply.github.com>
AuthorDate: Fri Dec 1 15:24:08 2023 -0500

    Merge pull request #2366 from apache/TINKERPOP-3017
    
    TINKERPOP-3017 Added AnonymousTraversalSource.with()

 CHANGELOG.asciidoc                                 |  3 +
 docs/src/dev/provider/index.asciidoc               |  4 +-
 docs/src/recipes/centrality.asciidoc               |  2 +-
 docs/src/recipes/olap-spark-yarn.asciidoc          |  2 +-
 docs/src/reference/compilers.asciidoc              |  6 +-
 docs/src/reference/gremlin-applications.asciidoc   | 26 ++++-----
 docs/src/reference/gremlin-variants.asciidoc       | 42 +++++++-------
 .../implementations-hadoop-start.asciidoc          |  2 +-
 docs/src/reference/implementations-neo4j.asciidoc  | 10 ++--
 docs/src/reference/implementations-spark.asciidoc  |  4 +-
 .../reference/implementations-tinkergraph.asciidoc | 20 +++----
 docs/src/reference/intro.asciidoc                  | 14 ++---
 docs/src/reference/the-graph.asciidoc              |  4 +-
 docs/src/reference/the-graphcomputer.asciidoc      | 14 ++---
 docs/src/reference/the-traversal.asciidoc          | 52 +++++++++---------
 docs/src/tutorials/getting-started/index.asciidoc  | 12 ++--
 .../tutorials/the-gremlin-console/index.asciidoc   |  8 +--
 docs/src/upgrade/release-4.x.x.asciidoc            | 43 +++++++++++++++
 .../src/test/java/SocialDslTest.java               |  2 +-
 .../archetype-resources/src/main/java/Service.java |  3 +-
 .../archetype-resources/src/main/java/App.java     |  7 ++-
 .../traversal/AnonymousTraversalSource.java        | 64 ++++++++++++++++++----
 .../gremlin/process/traversal/TraversalTest.java   |  2 +-
 gremlin-dotnet/src/Gremlin.Net.Template/Program.cs |  2 +-
 .../Process/Traversal/AnonymousTraversalSource.cs  | 20 ++++++-
 .../Process/Traversal/GraphTraversalSource.cs      |  1 +
 .../CompressionBenchmarks.cs                       |  2 +-
 .../MessageSerializerBenchmarks.cs                 |  2 +-
 .../Docs/Reference/GremlinApplicationsTests.cs     |  2 +-
 .../Docs/Reference/GremlinVariantsDslTests.cs      |  4 +-
 .../Docs/Reference/GremlinVariantsTests.cs         |  6 +-
 .../Docs/Reference/IntroTests.cs                   |  4 +-
 .../Docs/Upgrade/Release35Tests.cs                 |  2 +-
 .../Driver/PropertyDeserializationTests.cs         | 16 +++---
 .../Gherkin/CommonSteps.cs                         |  2 +-
 .../Gherkin/ScenarioData.cs                        |  6 +-
 .../BytecodeGeneration/BytecodeGenerationTests.cs  |  8 +--
 .../BytecodeGeneration/StrategiesTests.cs          | 16 +++---
 .../Traversal/DriverRemoteConnection/EnumTests.cs  |  4 +-
 .../GraphTraversalSourceTests.cs                   |  4 +-
 .../DriverRemoteConnection/GraphTraversalTests.cs  | 36 ++++++------
 .../GraphTraversalTransactionTests.cs              |  6 +-
 .../DriverRemoteConnection/PredicateTests.cs       |  6 +-
 .../DriverRemoteConnection/StrategiesTests.cs      | 24 ++++----
 .../ServiceTests.cs                                |  2 +-
 .../Process/Remote/RemoteTransactionTests.cs       |  4 +-
 .../Process/Traversal/GraphTraversalSourceTests.cs | 25 +++------
 .../Traversal/Translator/GroovyTranslatorTests.cs  |  2 +-
 gremlin-go/README.md                               |  2 +-
 gremlin-go/driver/anonymousTraversal.go            | 12 ++++
 gremlin-go/driver/connection_test.go               |  8 +--
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |  2 +-
 gremlin-go/driver/cucumber/cucumberWorld.go        |  4 +-
 gremlin-go/driver/performance/performanceSuite.go  |  2 +-
 gremlin-go/driver/strategies_test.go               |  2 +-
 gremlin-go/driver/traversal_test.go                | 22 ++++----
 gremlin-go/example/example.go                      |  2 +-
 .../main/javascript/gremlin-javascript/README.md   |  2 +-
 .../lib/process/anonymous-traversal.js             | 42 ++++++++------
 .../lib/process/graph-traversal.js                 | 21 -------
 .../test/cucumber/feature-steps.js                 |  2 +-
 .../test/integration/sasl-authentication-tests.js  |  2 +-
 .../test/integration/traversal-test.js             | 36 ++++++------
 .../gremlin-javascript/test/unit/traversal-test.js | 12 ++--
 .../gremlin_python/process/anonymous_traversal.py  | 21 +++----
 .../gremlin_python/process/graph_traversal.py      | 19 ++-----
 .../python/gremlin_python/process/strategies.py    |  2 +-
 .../python/gremlin_python/process/traversal.py     |  1 -
 .../main/python/gremlin_python/structure/graph.py  | 12 ----
 .../src/main/python/radish/feature_steps.py        |  2 +-
 gremlin-python/src/main/python/radish/terrain.py   |  2 +-
 gremlin-python/src/main/python/radish/utils.py     |  6 +-
 .../src/main/python/tests/driver/test_client.py    | 33 +++++------
 .../tests/driver/test_driver_remote_connection.py  | 26 ++++-----
 .../driver/test_driver_remote_connection_http.py   | 20 +++----
 .../test_driver_remote_connection_threaded.py      |  4 +-
 .../src/main/python/tests/process/test_dsl.py      |  4 +-
 .../main/python/tests/process/test_strategies.py   |  8 +--
 .../main/python/tests/process/test_translator.py   |  4 +-
 .../main/python/tests/process/test_traversal.py    | 28 +++++-----
 .../tests/structure/io/test_functionalityio.py     | 28 +++++-----
 .../python/tests/structure/io/test_graphsonV2d0.py |  7 ++-
 82 files changed, 510 insertions(+), 442 deletions(-)