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

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


 discard 216b8b10c3 wip - params
     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 812bc1de78 Add getter for private fields to Concat, Conjoin, 
SplitGlobal/Local Step (#2687)
     add ef466de995 improvement: add necessary parameters for logging (#2684)
     add 33d5cf8f69 Fixed up some formatting and confusing upgrade notes CTR
     new 5d34e4edf9 wip - params
     new 8b97ff5998 wip - params

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   (216b8b10c3)
            \
             N -- N -- N   refs/heads/gvalue-3.7 (8b97ff5998)

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 2 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                                 |   2 +
 docs/src/upgrade/release-3.7.x.asciidoc            |  23 +-
 .../gremlin/process/traversal/Bytecode.java        |  10 +-
 .../traversal/dsl/graph/GraphTraversal.java        | 258 ++++++++++++++++-
 .../traversal/lambda/ConstantTraversal.java        |  15 +-
 .../gremlin/process/traversal/step/GValue.java     | 179 +++++++++++-
 .../process/traversal/step/filter/CoinStep.java    |   2 +-
 .../process/traversal/step/map/AddEdgeStep.java    |   6 +
 .../process/traversal/step/map/AddVertexStep.java  |   5 +
 .../process/traversal/step/map/ConcatStep.java     |   8 +
 .../process/traversal/step/map/ConjoinStep.java    |   4 +
 .../process/traversal/step/map/ConstantStep.java   |  19 +-
 .../process/traversal/step/map/GraphStep.java      |  30 +-
 .../process/traversal/step/map/MergeEdgeStep.java  |   5 +
 .../process/traversal/step/map/MergeStep.java      |  18 +-
 .../traversal/step/map/MergeVertexStep.java        |   5 +
 .../traversal/step/map/SplitGlobalStep.java        |   4 +
 .../process/traversal/step/map/SplitLocalStep.java |   4 +
 .../process/traversal/step/map/VertexStep.java     |  37 ++-
 .../process/traversal/step/util/Parameters.java    |  21 +-
 .../strategy/decoration/SubgraphStrategy.java      |   2 +-
 .../optimization/AdjacentToIncidentStrategy.java   |   2 +-
 .../optimization/IncidentToAdjacentStrategy.java   |   2 +-
 .../optimization/InlineFilterStrategy.java         |  20 +-
 .../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 +-
 .../Gremlin.Net.IntegrationTest.csproj             |   4 +-
 .../Gremlin.Net.Template.IntegrationTest.csproj    |   4 +-
 .../Gremlin.Net.UnitTest.csproj                    |   4 +-
 gremlin-go/driver/graphBinary.go                   |   2 +-
 gremlin-go/driver/graphBinary_test.go              |   2 +-
 35 files changed, 1047 insertions(+), 76 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