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 2019/04/09 10:16:59 UTC

[tinkerpop] branch TINKERPOP-2112 updated (e99496a -> 14d1fd0)

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

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


 discard e99496a  TINKERPOP-2112 Fold property() so that T values can work in any order
     new 70c8f7e  Bump GMavenPlus to 1.6.3 CTR
     new 9334272  TINKERPOP-2180: Make sure user.working_dir is still respected properly
     new 62158d2  TINKERPOP-2180: Fix -l DEBUG
     new 06cc959  TINKERPOP-2179: Have SerializationException extend IOException
     new b59d779  Merge pull request #1083 from newkek/TINKERPOP-2179
     new 0769976  Implemented EdgeLabelVerificationStrategy
     new bc2c3f5  Merge pull request #1087 from apache/TINKERPOP-2191
     new 14d1fd0  TINKERPOP-2112 Fold property() so that T values can work in any order

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   (e99496a)
            \
             N -- N -- N   refs/heads/TINKERPOP-2112 (14d1fd0)

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 14083 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            |  38 +++++
 gremlin-console/src/main/bin/gremlin.sh            |  13 +-
 .../src/test/python/tests/test_console.py          |   5 +
 .../tinkerpop/gremlin/jsr223/CoreImports.java      |   2 +
 .../EdgeLabelVerificationStrategy.java             | 131 ++++++++++++++
 .../structure/io/graphson/GraphSONModule.java      |   5 +
 .../gremlin/structure/io/gryo/GryoVersion.java     |   7 +-
 .../EdgeLabelVerificationStrategyTest.java         | 188 +++++++++++++++++++++
 .../gremlin/driver/ser/SerializationException.java |   8 +-
 .../gremlin/driver/SerializationExceptionTest.java |  31 ++--
 pom.xml                                            |   2 +-
 12 files changed, 408 insertions(+), 23 deletions(-)
 create mode 100644 gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/EdgeLabelVerificationStrategy.java
 create mode 100644 gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/process/traversal/strategy/verification/EdgeLabelVerificationStrategyTest.java
 copy gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/DirectionTest.java => gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/SerializationExceptionTest.java (59%)