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/16 12:01:25 UTC

[tinkerpop] branch master updated (886bf6d -> cc285d4)

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 886bf6d  Merge pull request #1110 from apache/TINKERPOP-2211
     add 010fc49  TINKERPOP-2212 Fixed detachement problem in Path
     new ad12862  Merge branch 'TINKERPOP-2212' into tp33
     new cc285d4  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                                 |  1 +
 .../structure/util/detached/DetachedPath.java      | 18 ++----
 .../structure/util/reference/ReferencePath.java    | 23 ++-----
 .../util/detached/DetachedFactoryTest.java         | 70 ++++++++++++++++++++++
 .../util/reference/ReferenceFactoryTest.java       | 66 ++++++++++++++++++++
 5 files changed, 147 insertions(+), 31 deletions(-)
 create mode 100644 gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/util/detached/DetachedFactoryTest.java
 create mode 100644 gremlin-core/src/test/java/org/apache/tinkerpop/gremlin/structure/util/reference/ReferenceFactoryTest.java


[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 cc285d40527681efd46505008b26c54887da7bd2
Merge: 886bf6d ad12862
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu May 16 08:01:05 2019 -0400

    Merge branch 'tp33'

 CHANGELOG.asciidoc                                 |  1 +
 .../structure/util/detached/DetachedPath.java      | 18 ++----
 .../structure/util/reference/ReferencePath.java    | 23 ++-----
 .../util/detached/DetachedFactoryTest.java         | 70 ++++++++++++++++++++++
 .../util/reference/ReferenceFactoryTest.java       | 66 ++++++++++++++++++++
 5 files changed, 147 insertions(+), 31 deletions(-)



[tinkerpop] 01/02: Merge branch 'TINKERPOP-2212' 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 ad12862289459e2dfae642f03fe15d8cbff49466
Merge: 783eb07 010fc49
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Thu May 16 08:00:58 2019 -0400

    Merge branch 'TINKERPOP-2212' into tp33

 CHANGELOG.asciidoc                                 |  1 +
 .../structure/util/detached/DetachedPath.java      | 18 ++----
 .../structure/util/reference/ReferencePath.java    | 23 ++-----
 .../util/detached/DetachedFactoryTest.java         | 70 ++++++++++++++++++++++
 .../util/reference/ReferenceFactoryTest.java       | 66 ++++++++++++++++++++
 5 files changed, 147 insertions(+), 31 deletions(-)

diff --cc CHANGELOG.asciidoc
index 21f0cfe,b92cb40..78f1aef
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@@ -32,12 -32,11 +32,13 @@@ image::https://raw.githubusercontent.co
  * Prevented client-side hangs if metadata generation fails on the server.
  * Fixed bug with `EventStrategy` in relation to `addE()` where detachment was not happening properly.
  * Ensured that `gremlin.sh` works when directories contain spaces.
+ * Fixed bug in detachment of `Path` where embedded collection objects would prevent that process.
  * 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.