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 2018/10/17 22:14:35 UTC

[tinkerpop] branch master updated (e2c862c -> 6fcb227)

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

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


    from e2c862c  Merge pull request #960 from apache/TINKERPOP-2060
     add 72be354  TINKERPOP-2058 Use `Compare.eq` in `Contains.within` to ensure equal filter behaviors.
     add f5ffa63  added note in upgrade docs
     new d7d8e1d  Merge branch 'TINKERPOP-2058'
     new 7f3d175  Merge branch 'master' of https://gitbox.apache.org/repos/asf/tinkerpop
     new e87e8a4  CTR: removed invalid comma from preprocessor script
     new 387d1b7  CTR: removed control characters from console output fed into preprocessor script
     new 6fcb227  CTR: fixed syntax error in SPARQL query

The 5 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/preprocessor/install-plugins.sh               |  2 +-
 docs/preprocessor/preprocess-file.sh               |  2 +-
 docs/src/reference/compilers.asciidoc              |  2 +-
 docs/src/upgrade/release-3.4.x.asciidoc            | 26 ++++++++++++++++++++++
 .../gremlin/process/traversal/Contains.java        | 16 ++++++++++---
 .../gremlin/process/traversal/ContainsTest.java    |  2 +-
 .../tinkerpop/gremlin/process/traversal/PTest.java |  2 +-
 8 files changed, 45 insertions(+), 8 deletions(-)


[tinkerpop] 02/05: Merge branch 'master' of https://gitbox.apache.org/repos/asf/tinkerpop

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

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

commit 7f3d17501aaa7d631e331c068c9dc16aa05fbf30
Merge: d7d8e1d e2c862c
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Wed Oct 17 06:36:54 2018 -0700

    Merge branch 'master' of https://gitbox.apache.org/repos/asf/tinkerpop

 CHANGELOG.asciidoc                                 | 119 ++++++++++++++++++++-
 bin/validate-distribution.sh                       |   6 +-
 docs/site/home/downloads.html                      |  60 +++++++++--
 docs/site/home/index.html                          |  10 +-
 docs/site/home/template/header-footer.html         |  12 +--
 docs/src/dev/provider/index.asciidoc               |   6 +-
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |   2 +-
 docs/src/upgrade/release-3.3.x.asciidoc            |   2 +-
 gremlin-core/pom.xml                               |   2 +-
 .../process/traversal/step/filter/DropStep.java    |   2 +-
 .../traversal/step/map/AddEdgeStartStep.java       |   3 +-
 .../process/traversal/step/map/AddEdgeStep.java    |   3 +-
 .../traversal/step/map/AddVertexStartStep.java     |   3 +-
 .../process/traversal/step/map/AddVertexStep.java  |   2 +-
 .../traversal/step/sideEffect/AddPropertyStep.java |   3 +-
 15 files changed, 194 insertions(+), 41 deletions(-)



[tinkerpop] 05/05: CTR: fixed syntax error in SPARQL query

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

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

commit 6fcb22744fe163ac853e5a1239b152d394805a8f
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Wed Oct 17 12:34:47 2018 -0700

    CTR: fixed syntax error in SPARQL query
---
 docs/src/reference/compilers.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/src/reference/compilers.asciidoc b/docs/src/reference/compilers.asciidoc
index fd41e92..687dc61 100644
--- a/docs/src/reference/compilers.asciidoc
+++ b/docs/src/reference/compilers.asciidoc
@@ -350,7 +350,7 @@ WHERE {
   ?person v:label "person" .
   ?person v:age ?age .
   ?person v:name ?name .
-} ORDER BY (?age))
+} ORDER BY (?age)""")
 ----
 
 ==== Group By


[tinkerpop] 03/05: CTR: removed invalid comma from preprocessor script

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

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

commit e87e8a488451b36fbcfd2eeababa43d276477845
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Wed Oct 17 12:32:56 2018 -0700

    CTR: removed invalid comma from preprocessor script
---
 docs/preprocessor/install-plugins.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/preprocessor/install-plugins.sh b/docs/preprocessor/install-plugins.sh
index f1da197..5855e92 100755
--- a/docs/preprocessor/install-plugins.sh
+++ b/docs/preprocessor/install-plugins.sh
@@ -25,7 +25,7 @@ TMP_DIR=$3
 INSTALL_TEMPLATE="docs/preprocessor/install-plugins.groovy"
 INSTALL_FILE="${TMP_DIR}/install-plugins.groovy"
 
-plugins=("hadoop-gremlin" "spark-gremlin" "neo4j-gremlin", "sparql-gremlin")
+plugins=("hadoop-gremlin" "spark-gremlin" "neo4j-gremlin" "sparql-gremlin")
 # plugins=()
 pluginsCount=${#plugins[@]}
 


[tinkerpop] 01/05: Merge branch 'TINKERPOP-2058'

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

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

commit d7d8e1d22cb397b1b7b296eb2a07a88c10ab9558
Merge: 1a968f8 f5ffa63
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Mon Oct 15 07:17:22 2018 -0700

    Merge branch 'TINKERPOP-2058'

 CHANGELOG.asciidoc                                 |  1 +
 docs/src/upgrade/release-3.4.x.asciidoc            | 26 ++++++++++++++++++++++
 .../gremlin/process/traversal/Contains.java        | 16 ++++++++++---
 .../gremlin/process/traversal/ContainsTest.java    |  2 +-
 .../tinkerpop/gremlin/process/traversal/PTest.java |  2 +-
 5 files changed, 42 insertions(+), 5 deletions(-)

diff --cc CHANGELOG.asciidoc
index 4e490b4,cbe60f4..2befe1a
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@@ -25,7 -25,7 +25,8 @@@ image::https://raw.githubusercontent.co
  
  This release also includes changes from <<release-3-3-3, 3.3.3>>.
  
+ * Use `Compare.eq` in `Contains` predicates to ensure the same filter behavior for numeric values.
 +* Added `OptionsStrategy` to allow traversals to take arbitrary traversal-wide configurations.
  * Added text predicates.
  * Removed groovy-sql
  * Rewrote `ConnectiveStrategy` to support an arbitrary number of infix notations in a single traversal.


[tinkerpop] 04/05: CTR: removed control characters from console output fed into preprocessor script

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

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

commit 387d1b783ad65182a35511ec68902c3eefa35106
Author: Daniel Kuppitz <da...@hotmail.com>
AuthorDate: Wed Oct 17 12:34:15 2018 -0700

    CTR: removed control characters from console output fed into preprocessor script
---
 docs/preprocessor/preprocess-file.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/preprocessor/preprocess-file.sh b/docs/preprocessor/preprocess-file.sh
index e1a4df6..2a8023d 100755
--- a/docs/preprocessor/preprocess-file.sh
+++ b/docs/preprocessor/preprocess-file.sh
@@ -135,7 +135,7 @@ if [ ! ${SKIP} ] && [ $(grep -c '^\[gremlin' ${input}) -gt 0 ]; then
   awk -f ${AWK_SCRIPTS}/prepare.awk |
   awk -f ${AWK_SCRIPTS}/init-code-blocks.awk -v TP_HOME="${TP_HOME}" -v PYTHONPATH="${TP_HOME}/gremlin-python/target/classes/Lib" |
   awk -f ${AWK_SCRIPTS}/progressbar.awk -v tpl=${AWK_SCRIPTS}/progressbar.groovy.template |
-  HADOOP_GREMLIN_LIBS="${CONSOLE_HOME}/ext/tinkergraph-gremlin/lib" bin/gremlin.sh |
+  HADOOP_GREMLIN_LIBS="${CONSOLE_HOME}/ext/tinkergraph-gremlin/lib" bin/gremlin.sh | sed 's/\x1b\[m//g' |
   ${lb} awk -f ${AWK_SCRIPTS}/ignore.awk   |
   ${lb} awk -f ${AWK_SCRIPTS}/prettify.awk |
   ${lb} awk -f ${AWK_SCRIPTS}/cleanup.awk  |