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

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


 discard 71adcf4d5f wip - params
     add 4d9347088d Fixes neo4j when used with jdk17 CTR
     add e6e6e9beac Merge branch '3.7-dev'
     add 14ce7be463 fix java feature test tag CTR
     add 859894261c Bump Polly from 8.4.0 to 8.4.1 in /gremlin-dotnet
     add 98e5b3e9fb Bump xunit from 2.8.1 to 2.9.0 in /gremlin-dotnet
     add 2c6d334e37 Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit-2.9.0' into 3.6-dev
     add d6e4a2d0dd Bump xunit.runner.visualstudio from 2.8.1 to 2.8.2 in 
/gremlin-dotnet
     add ce6caa155d Merge branch 
'dependabot/nuget/gremlin-dotnet/3.6-dev/xunit.runner.visualstudio-2.8.2' into 
3.6-dev
     add 37d865d237 Merge branch '3.6-dev' into 3.7-dev
     add f4b636ced2 Merge branch '3.7-dev'
     add 812bc1de78 Add getter for private fields to Concat, Conjoin, 
SplitGlobal/Local Step (#2687)
     add 2bfd44b97f Merge branch '3.7-dev'
     add ef466de995 improvement: add necessary parameters for logging (#2684)
     add 5697d0735d Merge branch '3.7-dev'
     add 33d5cf8f69 Fixed up some formatting and confusing upgrade notes CTR
     add 93879c826d Merge branch '3.7-dev'
     add 39d7ed100c added configuration for logging level for Gremlin Console 
in Windows (#2694)
     add 97e1c7ada0 Merge branch '3.6-dev' into 3.7-dev
     add 14604a563a Merge branch '3.7-dev'
     add b382a1c751 Remove redundant six dependency (#2692)
     add a846d88d19 Merge branch '3.6-dev' into 3.7-dev
     add 418d049939 Merge branch '3.7-dev'
     new 6fffb2a6f6 wip - params
     new ce8a452549 Get rid of P as a parameter in gherkin
     new 3775b6fe71 wip

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   (71adcf4d5f)
            \
             N -- N -- N   refs/heads/gvalue (3775b6fe71)

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 3 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:
 CHANGELOG.asciidoc                                 |  17 +-
 docs/src/reference/implementations-neo4j.asciidoc  |   3 +
 docs/src/upgrade/release-3.7.x.asciidoc            |  23 +-
 gremlin-console/src/main/bin/gremlin-java8.bat     |  13 +-
 gremlin-console/src/main/bin/gremlin.bat           |  13 +-
 gremlin-console/src/main/bin/gremlin.sh            |   6 +
 .../language/grammar/TraversalMethodVisitor.java   |  61 +++-
 .../grammar/TraversalSourceSpawnMethodVisitor.java |  14 +-
 .../gremlin/process/traversal/Bytecode.java        |  10 +-
 .../traversal/dsl/graph/GraphTraversal.java        | 330 ++++++++++++++++++++-
 .../traversal/dsl/graph/GraphTraversalSource.java  |  46 +++
 .../traversal/lambda/ConstantTraversal.java        |  15 +-
 .../gremlin/process/traversal/step/GType.java      |  16 +-
 .../gremlin/process/traversal/step/GValue.java     | 184 +++++++++++-
 .../process/traversal/step/filter/CoinStep.java    |   8 +-
 .../process/traversal/step/map/AddEdgeStep.java    |   6 +
 .../process/traversal/step/map/AddVertexStep.java  |   5 +
 .../process/traversal/step/map/CombineStep.java    |  11 +-
 .../process/traversal/step/map/ConcatStep.java     |   8 +
 .../process/traversal/step/map/ConjoinStep.java    |  19 +-
 .../process/traversal/step/map/ConstantStep.java   |  17 +-
 .../process/traversal/step/map/GraphStep.java      |  74 +++--
 .../process/traversal/step/map/IntersectStep.java  |  11 +-
 .../process/traversal/step/map/MergeEdgeStep.java  |   5 +
 .../process/traversal/step/map/MergeStep.java      |  23 +-
 .../traversal/step/map/MergeVertexStep.java        |   5 +
 .../traversal/step/map/SplitGlobalStep.java        |   4 +
 .../process/traversal/step/map/SplitLocalStep.java |   4 +
 .../traversal/step/map/TraversalMergeStep.java     |  19 +-
 .../process/traversal/step/map/VertexStep.java     |  37 ++-
 .../traversal/step/sideEffect/InjectStep.java      |  14 +-
 .../process/traversal/step/util/AbstractStep.java  |  27 ++
 .../process/traversal/step/util/Parameters.java    |  21 +-
 .../strategy/decoration/SubgraphStrategy.java      |   2 +-
 .../optimization/AdjacentToIncidentStrategy.java   |   2 +-
 .../optimization/IncidentToAdjacentStrategy.java   |   2 +-
 .../optimization/InlineFilterStrategy.java         |  20 +-
 .../process/traversal/util/ListFunction.java       |  16 +-
 .../gremlin/structure/io/gryo/GryoVersion.java     |  12 +-
 .../gremlin/process/traversal/step/GTypeTest.java  |  77 +++++
 .../gremlin/process/traversal/step/GValueTest.java | 316 ++++++++++++++++++++
 .../traversal/step/util/ParametersTest.java        |  11 +
 .../translator/JavascriptTranslatorTest.java       |   8 +
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |   2 +-
 .../Gherkin/CommonSteps.cs                         |   7 -
 .../Gremlin.Net.IntegrationTest/Gherkin/Gremlin.cs |   8 +-
 .../Gremlin.Net.IntegrationTest.csproj             |   4 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj    |   4 +-
 .../Gremlin.Net.UnitTest.csproj                    |   4 +-
 gremlin-go/driver/cucumber/cucumberSteps_test.go   |  15 +-
 gremlin-go/driver/cucumber/gremlin.go              |   8 +-
 gremlin-go/driver/graphBinary.go                   |   2 +-
 gremlin-go/driver/graphBinary_test.go              |   2 +-
 .../test/cucumber/feature-steps.js                 |   4 -
 .../gremlin-javascript/test/cucumber/gremlin.js    |   8 +-
 gremlin-python/docker-compose.yml                  |   2 +-
 .../src/main/python/examples/requirements.txt      |   1 -
 .../src/main/python/radish/feature_steps.py        |  11 -
 gremlin-python/src/main/python/radish/gremlin.py   |   8 +-
 gremlin-python/src/main/python/setup.cfg           |   3 -
 gremlin-python/src/main/python/setup.py            |   7 +-
 .../python/tests/structure/io/test_graphsonV2d0.py |  12 +-
 .../python/tests/structure/io/test_graphsonV3d0.py |  14 +-
 .../tinkerpop/gremlin/features/StepDefinition.java |  37 ++-
 .../apache/tinkerpop/gremlin/features/World.java   |   9 +
 .../gremlin/test/features/filter/HasId.feature     |  13 +-
 .../gremlin/test/features/map/Conjoin.feature      |  12 +
 .../gremlin/test/features/map/Select.feature       |   2 +-
 .../traversal/step/sideEffect/Neo4jGraphStep.java  |   4 +-
 .../traversal/step/sideEffect/TinkerGraphStep.java |   4 +-
 .../tinkergraph/TinkerGraphFeatureTest.java        |   3 +-
 .../tinkerpop/gremlin/tinkergraph/TinkerWorld.java |   5 +
 72 files changed, 1489 insertions(+), 261 deletions(-)
 create mode 100644 
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GTypeTest.java
 create mode 100644 
gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/step/GValueTest.java

Reply via email to