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

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


 discard 5758e6b  Lots of grammar/spelling/formatting fixes
 discard edc47d1  Fixed up spacing/indentation in preface
 discard 46e13bb  Made code section on lambdas static
 discard 8b1c2a0  Moved driver oriented things to variants
 discard 59016fc  Changed from Gremlin Service Provider to Remote Gremlin 
Provider
 discard c940006  Rewrote the graph section of reference docs.
 discard 6188766  Reworked the reference doc introduction.
     add b6ebdaf  TINKERPOP-2059 Implemented `by()` and `with()` modulators for 
`valueMap()` step.
     add 935d513  Merge pull request #986 from apache/TINKERPOP-2059
     new 40e7974  Reworked the reference doc introduction.
     new 7825c54  Rewrote the graph section of reference docs.
     new 95d8daa  Changed from Gremlin Service Provider to Remote Gremlin 
Provider
     new 6205d30  Moved driver oriented things to variants
     new 70c90fb  Made code section on lambdas static
     new 66ba2f8  Fixed up spacing/indentation in preface
     new 863f901  Lots of grammar/spelling/formatting fixes

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   (5758e6b)
            \
             N -- N -- N   refs/heads/TINKERPOP-2002 (863f901)

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 7 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                                 |   1 +
 docs/src/recipes/collections.asciidoc              |   6 +-
 docs/src/recipes/duplicate-edge.asciidoc           |   4 +-
 docs/src/recipes/edge-move.asciidoc                |   4 +-
 docs/src/reference/gremlin-applications.asciidoc   |   6 +-
 docs/src/reference/gremlin-variants.asciidoc       |  10 +-
 docs/src/reference/the-traversal.asciidoc          |  29 ++-
 docs/src/upgrade/release-3.4.x.asciidoc            |  70 +++++++
 .../tinkerpop/gremlin/jsr223/CoreImports.java      |   2 +
 .../traversal/dsl/graph/GraphTraversal.java        |   5 +-
 .../gremlin/process/traversal/dsl/graph/__.java    |   5 +-
 .../traversal/step/map/PropertyMapStep.java        | 135 +++++++++----
 .../process/traversal/step/util/WithOptions.java   |  70 +++++++
 .../strategy/decoration/PartitionStrategy.java     |   4 +-
 .../traversal/step/map/PropertyMapStepTest.java    |  11 +-
 .../glv/{Token.template => WithOptions.template}   |  16 +-
 gremlin-dotnet/glv/generate.groovy                 |  21 +-
 .../Process/Traversal/{IO.cs => WithOptions.cs}    |  44 ++--
 .../TraversalEvaluationTests.cs                    |   4 +-
 .../Gherkin/TraversalEvaluation/TraversalParser.cs |   9 +-
 .../{IOParameter.cs => WithOptionsParameter.cs}    |  21 +-
 gremlin-javascript/glv/TraversalSource.template    |   5 +
 gremlin-javascript/glv/generate.groovy             |  11 +-
 .../main/javascript/gremlin-javascript/index.js    |   3 +-
 .../gremlin-javascript/lib/process/traversal.js    |  11 +
 .../test/cucumber/feature-steps.js                 |   3 +-
 gremlin-python/glv/TraversalSource.template        |   8 +
 gremlin-python/glv/generate.groovy                 |   9 +-
 .../gremlin/python/jsr223/SymbolHelper.java        |   1 +
 .../jython/gremlin_python/process/traversal.py     |  20 ++
 .../gremlin_python/structure/io/graphsonV2d0.py    |   2 +-
 .../gremlin_python/structure/io/graphsonV3d0.py    |   2 +-
 .../src/main/jython/radish/feature_steps.py        |   5 +-
 gremlin-test/features/map/AddVertex.feature        |   4 +-
 gremlin-test/features/map/ValueMap.feature         |  76 ++++++-
 .../process/computer/GraphComputerTest.java        |   2 +-
 .../process/traversal/step/map/AddVertexTest.java  |  19 +-
 .../process/traversal/step/map/PageRankTest.java   |  16 +-
 .../traversal/step/map/PeerPressureTest.java       |  16 +-
 .../process/traversal/step/map/ProgramTest.java    |   8 +-
 .../process/traversal/step/map/ValueMapTest.java   | 221 +++++++++++++++------
 .../tinkergraph/structure/TinkerGraphPlayTest.java | 120 +++--------
 42 files changed, 733 insertions(+), 306 deletions(-)
 create mode 100644 
gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/step/util/WithOptions.java
 copy gremlin-dotnet/glv/{Token.template => WithOptions.template} (77%)
 copy gremlin-dotnet/src/Gremlin.Net/Process/Traversal/{IO.cs => 
WithOptions.cs} (66%)
 copy 
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/TraversalEvaluation/{IOParameter.cs
 => WithOptionsParameter.cs} (75%)

Reply via email to