You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by dk...@apache.org on 2019/06/28 15:32:24 UTC

[tinkerpop] branch tp33 updated (59445da -> 5f05bf1)

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

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


    from 59445da  Removed some old references to BLVP - it's been long deprecated. CTR
     add 9a6bf66  TINKERPOP-1084 Allow predicates and traversals to be used as options in `BranchStep`.
     new 5f05bf1  Merge pull request #1129 from apache/TINKERPOP-1084

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:
 CHANGELOG.asciidoc                                 |   1 +
 docs/src/upgrade/release-3.3.x.asciidoc            |  30 +++++
 ...{LoopTraversal.java => PredicateTraversal.java} |  36 ++++--
 .../process/traversal/step/branch/BranchStep.java  | 139 +++++++++++----------
 .../process/traversal/step/branch/ChooseStep.java  |  10 +-
 .../process/traversal/step/branch/UnionStep.java   |   2 +-
 gremlin-test/features/branch/Branch.feature        |  37 +++++-
 .../process/traversal/step/ComplexTest.java        |  46 ++++++-
 .../process/traversal/step/branch/BranchTest.java  |  47 +++++++
 .../tinkergraph/structure/TinkerGraphPlayTest.java |  26 +++-
 10 files changed, 278 insertions(+), 96 deletions(-)
 copy gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/lambda/{LoopTraversal.java => PredicateTraversal.java} (56%)


[tinkerpop] 01/01: Merge pull request #1129 from apache/TINKERPOP-1084

Posted by dk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 5f05bf164a2a575d11471ebc4e5daf6fa777ee3e
Merge: 59445da 9a6bf66
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Fri Jun 28 08:32:20 2019 -0700

    Merge pull request #1129 from apache/TINKERPOP-1084
    
    TINKERPOP-1084 Branch option tokens should be allowed to be traversals

 CHANGELOG.asciidoc                                 |   1 +
 docs/src/upgrade/release-3.3.x.asciidoc            |  30 +++++
 .../traversal/lambda/PredicateTraversal.java       |  68 ++++++++++
 .../process/traversal/step/branch/BranchStep.java  | 139 +++++++++++----------
 .../process/traversal/step/branch/ChooseStep.java  |  10 +-
 .../process/traversal/step/branch/UnionStep.java   |   2 +-
 gremlin-test/features/branch/Branch.feature        |  37 +++++-
 .../process/traversal/step/ComplexTest.java        |  46 ++++++-
 .../process/traversal/step/branch/BranchTest.java  |  47 +++++++
 .../tinkergraph/structure/TinkerGraphPlayTest.java |  26 +++-
 10 files changed, 323 insertions(+), 83 deletions(-)