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/05/09 14:00:44 UTC

[tinkerpop] branch master updated (48e44b2 -> a837170)

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

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


    from 48e44b2  Merge branch 'tp33'
     add 7190091  TINKERPOP-2199 Fixed P.within()/without() behavior in gremlin-python
     add ef41dca  TINKERPOP-2199 P.within()/without() behaves more consistently for .NET
     add 2e5a70b  TINKERPOP-2199 Fixed the bad GraphSON 3.0 docs for within() and without()
     add 52159f6  TINKERPOP-2199 Added some more java tests for within()/without() for GraphSON
     add fddb6cf  TINKERPOP-2206 Fixed g:List serialization
     add c75a1d9  TINKERPOP-2206 Minor fixes
     new dfe9a93  Merge remote-tracking branch 'origin/TINKERPOP-2206' into tp33
     new a837170  Merge branch 'tp33'

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/dev/io/graphson.asciidoc                  | 28 ++++++++------
 .../graphson/GraphSONMapperEmbeddedTypeTest.java   | 43 ++++++++++++++++++++++
 gremlin-dotnet/glv/P.template                      | 11 +++---
 .../src/Gremlin.Net/Process/Traversal/P.cs         | 17 ++++-----
 .../Structure/IO/GraphSON/GraphSONWriterTests.cs   | 40 ++++++++++++++++++--
 gremlin-javascript/glv/TraversalSource.template    | 19 +++++++++-
 .../gremlin-javascript/lib/process/traversal.js    | 27 +++++++++-----
 .../lib/structure/io/graph-serializer.js           | 12 ++++--
 .../lib/structure/io/type-serializers.js           |  2 +-
 .../gremlin-javascript/test/unit/graphson-test.js  | 18 +++++++++
 gremlin-python/glv/TraversalSource.template        | 16 +++++++-
 .../jython/gremlin_python/process/traversal.py     | 12 ++++--
 .../src/main/jython/tests/process/test_dsl.py      |  2 +-
 .../jython/tests/structure/io/test_graphsonV2d0.py |  7 +++-
 .../jython/tests/structure/io/test_graphsonV3d0.py |  6 +++
 16 files changed, 211 insertions(+), 51 deletions(-)


[tinkerpop] 02/02: Merge branch 'tp33'

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

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

commit a837170ecdf9aa3926c8db7f1fa64dd2faa4aecc
Merge: 48e44b2 dfe9a93
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu May 9 10:00:30 2019 -0400

    Merge branch 'tp33'

 CHANGELOG.asciidoc                                 |  2 +
 docs/src/dev/io/graphson.asciidoc                  | 28 ++++++++------
 .../graphson/GraphSONMapperEmbeddedTypeTest.java   | 43 ++++++++++++++++++++++
 gremlin-dotnet/glv/P.template                      | 11 +++---
 .../src/Gremlin.Net/Process/Traversal/P.cs         | 17 ++++-----
 .../Structure/IO/GraphSON/GraphSONWriterTests.cs   | 40 ++++++++++++++++++--
 gremlin-javascript/glv/TraversalSource.template    | 19 +++++++++-
 .../gremlin-javascript/lib/process/traversal.js    | 27 +++++++++-----
 .../lib/structure/io/graph-serializer.js           | 12 ++++--
 .../lib/structure/io/type-serializers.js           |  2 +-
 .../gremlin-javascript/test/unit/graphson-test.js  | 18 +++++++++
 gremlin-python/glv/TraversalSource.template        | 16 +++++++-
 .../jython/gremlin_python/process/traversal.py     | 12 ++++--
 .../src/main/jython/tests/process/test_dsl.py      |  2 +-
 .../jython/tests/structure/io/test_graphsonV2d0.py |  7 +++-
 .../jython/tests/structure/io/test_graphsonV3d0.py |  6 +++
 16 files changed, 211 insertions(+), 51 deletions(-)

diff --cc gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/io/graphson/GraphSONMapperEmbeddedTypeTest.java
index 10d738b,23d727c..af569e2
--- a/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/io/graphson/GraphSONMapperEmbeddedTypeTest.java
+++ b/gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/io/graphson/GraphSONMapperEmbeddedTypeTest.java
@@@ -20,8 -20,8 +20,9 @@@ package org.apache.tinkerpop.gremlin.st
  
  import org.apache.tinkerpop.gremlin.process.remote.traversal.DefaultRemoteTraverser;
  import org.apache.tinkerpop.gremlin.process.traversal.Bytecode;
+ import org.apache.tinkerpop.gremlin.process.traversal.P;
  import org.apache.tinkerpop.gremlin.process.traversal.Traverser;
 +import org.apache.tinkerpop.gremlin.process.traversal.step.util.BulkSet;
  import org.apache.tinkerpop.gremlin.util.function.Lambda;
  import org.apache.tinkerpop.shaded.jackson.databind.ObjectMapper;
  import org.junit.Test;


[tinkerpop] 01/02: Merge remote-tracking branch 'origin/TINKERPOP-2206' into tp33

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

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

commit dfe9a930d43f569afccb5c3175e37f57737df33d
Merge: 52159f6 c75a1d9
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu May 9 09:41:08 2019 -0400

    Merge remote-tracking branch 'origin/TINKERPOP-2206' into tp33

 CHANGELOG.asciidoc                                 |  1 +
 gremlin-javascript/glv/TraversalSource.template    | 19 ++++++++++++++-
 .../gremlin-javascript/lib/process/traversal.js    | 27 ++++++++++++++--------
 .../lib/structure/io/graph-serializer.js           | 12 +++++++---
 .../lib/structure/io/type-serializers.js           |  2 +-
 .../gremlin-javascript/test/unit/graphson-test.js  | 18 +++++++++++++++
 6 files changed, 64 insertions(+), 15 deletions(-)

diff --cc CHANGELOG.asciidoc
index 53d4ac5,e10a0c7..21f0cfe
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@@ -34,10 -31,9 +34,11 @@@ image::https://raw.githubusercontent.co
  * Ensured that `gremlin.sh` works when directories contain spaces.
  * Enabled `ctrl+c` to interrupt long running processes in Gremlin Console.
  * Quieted "host unavailable" warnings for both the driver and Gremlin Console.
+ * Fixed construction of `g:List` from arrays in gremlin-javascript.
  * Fixed bug in `GremlinGroovyScriptEngine` interpreter mode around class definitions.
  * Implemented `EdgeLabelVerificationStrategy`.
 +* Fixed behavior of `P` for `within()` and `without()` in GLVs to be consistent with Java when using varargs.
 +* Cleared the input buffer after exceptions in Gremlin Console.
  * Added parameter to configure the `processor` in the gremlin-javascript `client` constructor.
  
  [[release-3-3-6]]