[tinkerpop] Git Push Summary

2018-05-08 Thread rdale
Repository: tinkerpop
Updated Tags:  refs/tags/3.2.9 [created] 721fd3c32


[2/2] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-05-08 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4e3a0a9b
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4e3a0a9b
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/4e3a0a9b

Branch: refs/heads/tp33
Commit: 4e3a0a9bc5b72d7d98cb4b95d647f62dea23c9ee
Parents: 2d39f9b 2f8f74a
Author: Daniel Kuppitz 
Authored: Tue May 8 12:43:51 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue May 8 12:43:51 2018 -0700

--
 bin/validate-distribution.sh | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)
--




[2/3] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-05-08 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/4e3a0a9b
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/4e3a0a9b
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/4e3a0a9b

Branch: refs/heads/master
Commit: 4e3a0a9bc5b72d7d98cb4b95d647f62dea23c9ee
Parents: 2d39f9b 2f8f74a
Author: Daniel Kuppitz 
Authored: Tue May 8 12:43:51 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue May 8 12:43:51 2018 -0700

--
 bin/validate-distribution.sh | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)
--




[1/3] tinkerpop git commit: CTR: Some necessary changes in the release validation script to make it work on all systems.

2018-05-08 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/master bf77d6d1b -> 31d20633e


CTR: Some necessary changes in the release validation script to make it work on 
all systems.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2f8f74a7
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2f8f74a7
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2f8f74a7

Branch: refs/heads/master
Commit: 2f8f74a780356850cb6cb0ef6ac96e4a024a6d41
Parents: fde136b
Author: Daniel Kuppitz 
Authored: Tue May 8 12:43:11 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue May 8 12:43:11 2018 -0700

--
 bin/validate-distribution.sh | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2f8f74a7/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 76e0974..3622905 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -22,11 +22,7 @@
 # artifacts. You must have gpg installed and must import the
 # published KEYS file in order for that aspect of the validation
 # to pass.
-#
-# curl -L -O https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS
-# gpg --import KEYS
 
-COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
 TMP_DIR="/tmp/tpdv"
 
 # Required. Only the latest version on each release stream is available on 
dist.
@@ -73,6 +69,9 @@ mkdir -p ${TMP_DIR}
 rm -rf ${TMP_DIR}/*
 cd ${TMP_DIR}
 
+COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
tee ${TMP_DIR}/KEYS | grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
+gpg --import ${TMP_DIR}/KEYS 2> /dev/null && rm ${TMP_DIR}/KEYS
+
 curl -Ls https://people.apache.org/keys/committer/ | grep -v invalid > 
${TMP_DIR}/.committers
 
 # validate downloads
@@ -97,7 +96,7 @@ echo "OK"
 echo "* validating signatures and checksums ... "
 
 echo -n "  * PGP signature ... "
-gpg --verify ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > ${TMP_DIR}/.verify 2>&1
+gpg --verify --with-fingerprint ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > 
${TMP_DIR}/.verify 2>&1
 
 verified=0
 
@@ -117,11 +116,11 @@ done
 [ ${verified} -eq 1 ] || { echo "failed"; exit 1; }
 echo "OK"
 
-echo -n "  * MD5 checksum ... "
-EXPECTED=`cat ${ZIP_FILENAME}.md5`
-ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
-[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
-echo "OK"
+#echo -n "  * MD5 checksum ... "
+#EXPECTED=`cat ${ZIP_FILENAME}.md5`
+#ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
+#[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
+#echo "OK"
 
 echo -n "  * SHA1 checksum ... "
 EXPECTED=`cat ${ZIP_FILENAME}.sha1`



[1/2] tinkerpop git commit: CTR: Some necessary changes in the release validation script to make it work on all systems.

2018-05-08 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/tp33 2d39f9b80 -> 4e3a0a9bc


CTR: Some necessary changes in the release validation script to make it work on 
all systems.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2f8f74a7
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2f8f74a7
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2f8f74a7

Branch: refs/heads/tp33
Commit: 2f8f74a780356850cb6cb0ef6ac96e4a024a6d41
Parents: fde136b
Author: Daniel Kuppitz 
Authored: Tue May 8 12:43:11 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue May 8 12:43:11 2018 -0700

--
 bin/validate-distribution.sh | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2f8f74a7/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 76e0974..3622905 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -22,11 +22,7 @@
 # artifacts. You must have gpg installed and must import the
 # published KEYS file in order for that aspect of the validation
 # to pass.
-#
-# curl -L -O https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS
-# gpg --import KEYS
 
-COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
 TMP_DIR="/tmp/tpdv"
 
 # Required. Only the latest version on each release stream is available on 
dist.
@@ -73,6 +69,9 @@ mkdir -p ${TMP_DIR}
 rm -rf ${TMP_DIR}/*
 cd ${TMP_DIR}
 
+COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
tee ${TMP_DIR}/KEYS | grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
+gpg --import ${TMP_DIR}/KEYS 2> /dev/null && rm ${TMP_DIR}/KEYS
+
 curl -Ls https://people.apache.org/keys/committer/ | grep -v invalid > 
${TMP_DIR}/.committers
 
 # validate downloads
@@ -97,7 +96,7 @@ echo "OK"
 echo "* validating signatures and checksums ... "
 
 echo -n "  * PGP signature ... "
-gpg --verify ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > ${TMP_DIR}/.verify 2>&1
+gpg --verify --with-fingerprint ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > 
${TMP_DIR}/.verify 2>&1
 
 verified=0
 
@@ -117,11 +116,11 @@ done
 [ ${verified} -eq 1 ] || { echo "failed"; exit 1; }
 echo "OK"
 
-echo -n "  * MD5 checksum ... "
-EXPECTED=`cat ${ZIP_FILENAME}.md5`
-ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
-[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
-echo "OK"
+#echo -n "  * MD5 checksum ... "
+#EXPECTED=`cat ${ZIP_FILENAME}.md5`
+#ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
+#[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
+#echo "OK"
 
 echo -n "  * SHA1 checksum ... "
 EXPECTED=`cat ${ZIP_FILENAME}.sha1`



tinkerpop git commit: CTR: Some necessary changes in the release validation script to make it work on all systems.

2018-05-08 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 fde136b1d -> 2f8f74a78


CTR: Some necessary changes in the release validation script to make it work on 
all systems.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2f8f74a7
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2f8f74a7
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2f8f74a7

Branch: refs/heads/tp32
Commit: 2f8f74a780356850cb6cb0ef6ac96e4a024a6d41
Parents: fde136b
Author: Daniel Kuppitz 
Authored: Tue May 8 12:43:11 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue May 8 12:43:11 2018 -0700

--
 bin/validate-distribution.sh | 19 +--
 1 file changed, 9 insertions(+), 10 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2f8f74a7/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 76e0974..3622905 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -22,11 +22,7 @@
 # artifacts. You must have gpg installed and must import the
 # published KEYS file in order for that aspect of the validation
 # to pass.
-#
-# curl -L -O https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS
-# gpg --import KEYS
 
-COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
 TMP_DIR="/tmp/tpdv"
 
 # Required. Only the latest version on each release stream is available on 
dist.
@@ -73,6 +69,9 @@ mkdir -p ${TMP_DIR}
 rm -rf ${TMP_DIR}/*
 cd ${TMP_DIR}
 
+COMMITTERS=$(curl -Ls https://dist.apache.org/repos/dist/dev/tinkerpop/KEYS | 
tee ${TMP_DIR}/KEYS | grep -Po '(?<=<)[^<]*(?=@apache.org>)' | uniq)
+gpg --import ${TMP_DIR}/KEYS 2> /dev/null && rm ${TMP_DIR}/KEYS
+
 curl -Ls https://people.apache.org/keys/committer/ | grep -v invalid > 
${TMP_DIR}/.committers
 
 # validate downloads
@@ -97,7 +96,7 @@ echo "OK"
 echo "* validating signatures and checksums ... "
 
 echo -n "  * PGP signature ... "
-gpg --verify ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > ${TMP_DIR}/.verify 2>&1
+gpg --verify --with-fingerprint ${ZIP_FILENAME}.asc ${ZIP_FILENAME} > 
${TMP_DIR}/.verify 2>&1
 
 verified=0
 
@@ -117,11 +116,11 @@ done
 [ ${verified} -eq 1 ] || { echo "failed"; exit 1; }
 echo "OK"
 
-echo -n "  * MD5 checksum ... "
-EXPECTED=`cat ${ZIP_FILENAME}.md5`
-ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
-[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
-echo "OK"
+#echo -n "  * MD5 checksum ... "
+#EXPECTED=`cat ${ZIP_FILENAME}.md5`
+#ACTUAL=`md5sum ${ZIP_FILENAME} | awk '{print $1}'`
+#[ "$ACTUAL" = "${EXPECTED}" ] || { echo "failed"; exit 1; }
+#echo "OK"
 
 echo -n "  * SHA1 checksum ... "
 EXPECTED=`cat ${ZIP_FILENAME}.sha1`



[tinkerpop] Git Push Summary

2018-05-08 Thread spmallette
Repository: tinkerpop
Updated Tags:  refs/tags/3.3.3 [created] 696f5e40e


svn commit: r26773 - /dev/tinkerpop/3.3.3/

2018-05-08 Thread spmallette
Author: spmallette
Date: Tue May  8 18:50:34 2018
New Revision: 26773

Log:
TinkerPop 3.3.3 release

Added:
dev/tinkerpop/3.3.3/
dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip   (with props)
dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.asc
dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.sha1
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip   (with 
props)
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.asc
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.sha1
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-server-3.3.3-bin.zip   (with 
props)
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-server-3.3.3-bin.zip.asc
dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-server-3.3.3-bin.zip.sha1

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip
==
Binary file - no diff available.

Propchange: dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip
--
svn:mime-type = application/octet-stream

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.asc
==
--- dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.asc (added)
+++ dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.asc Tue May  8 18:50:34 
2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJa8edqAAoJEOpTqZhU6rDmjpMP/1r0+nVZsIOhDfGe4JKL1r2Q
+U/3ok1PUurK7vRlOKeW0pqljmwr+VJxnUM9aicg25TfCO7lx85El/Qv23f7uyxKI
+YFz95UT42BAB7tIQSVjAvC+aQhAoas+KSK4bAuZxe4bkZEb6xB6+z3r+9IVIMtUq
+65zcUIiTm989e9cEB4JCUlsoVrIIBTg/i0gahkS5bEzwd7RLjyGxdrBGfQlIIRqU
+oh4grlPF9GmWbmhAa/TvNNVpbmVINVya5xKPvoGnUnPfaXJJ5m0Kt9Qwb0Hmygx3
+AlGEC4OLGUstu1eIBtCh0w9gSinZGUv17qWS2STaLh8LQ15lEKrTsQvmYoXkT7v0
+XAb1JMnedGZJNyqy+u9zphsJoZaSYpsyG3iNMjMsUu6V4CrpHPiF497/ORhh1w7n
+zr02Z2IHcAVltHr0wmnRoKqmE+kjekG2ead/MIXOq1p08VhP0t5GFGjoUXScIfxd
+t+753O8YrAKRcOn2jM3kjtQNysnp34JtLQyqHUlTZdsYm4KyEFZOl63rvjqTyY1V
++ZoEmgIx4bWxZ5ahUvaiFxzlHbqANfp6f3YY9PUZAZFGQ7yF1dgNYTqM7foFIqgV
+ZDPgs8rn0DCr0hx59+wEVM0TQDTfC58Ot73i4wu7nQyCSVDv11yD+s2EahJhw8l9
+esnWZ41BYoKDzPbZY3Gu
+=/HZn
+-END PGP SIGNATURE-

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.sha1
==
--- dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.sha1 (added)
+++ dev/tinkerpop/3.3.3/apache-tinkerpop-3.3.3-src.zip.sha1 Tue May  8 18:50:34 
2018
@@ -0,0 +1 @@
+29a194dc556c575b8d461dd57a60aba51c502f11
\ No newline at end of file

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip
==
Binary file - no diff available.

Propchange: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip
--
svn:mime-type = application/octet-stream

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.asc
==
--- dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.asc 
(added)
+++ dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.asc Tue 
May  8 18:50:34 2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJa8ekYAAoJEOpTqZhU6rDmLeUQAJR4YTnUKiRAZK9bvxPBB7Ax
+wdQHW1bYzxAModtt6emjqQYepg3A8IplaEUQPdn8a9IQ09ORLikq80j/p7LdbwzD
++8Dy2sP0/vHOT3qiSmfuQvSSsrjtYtkHRseu+cuvNWxRIQDoYGr87ph55QpzlbNu
+0NMhF6cjYE6k1oM7UKMiz04gBvkc8ou2i9GlrwkgPgk866O1PG3Ewe52Zy8z7PXL
+UYXe8pnaXgJegsGDu4k5osXICvJKSTArwMFleQdgibMqTZAm6POXV+g1Aszacu1N
+tiuQPG52S7UTPpXKttc64fqjWcQeRscQq0lJOgJjNqHa4TTfljaDIUWR2T3edt4V
+ZDezYL1k41E1vQGkPpRjOqv7UjNdL8Gxe3Tw36I1MUzVT9JvMSjwWkUubY/XNx4V
+zhO2RcABCCEa6zG2NOqxCrqkmRBMPD1/joBviCXdnOg6GRbeYBHy+d8H5+zMX/9D
+c6n4k6WZGw9HqdiFFukRE9sagzAEiP6EX5fH9cVtmg0Wk7gOOPursANBSyZNfOt0
+Quc3mm+Fq8+okFNljhZusNjj0s98h6c24uSRDtAam8/RBJnYPG03jT/XKcpMVH50
+sJjWJ/TVCrWGUvS9g4bdJHXL/XKAzaIrJ9VKChItvn7Wa/4yOFzgddsbQQtByu0P
+r0dGVTDZntRgF8f5+wWV
+=Kddo
+-END PGP SIGNATURE-

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.sha1
==
--- dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.sha1 
(added)
+++ dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-console-3.3.3-bin.zip.sha1 Tue 
May  8 18:50:34 2018
@@ -0,0 +1 @@
+d7924c6b3c81a9a900f846adae1346c9ac72a542
\ No newline at end of file

Added: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-server-3.3.3-bin.zip
==
Binary file - no diff available.

Propchange: dev/tinkerpop/3.3.3/apache-tinkerpop-gremlin-server-3.3.3-bin.zip

svn commit: r26772 - /dev/tinkerpop/3.3.2/

2018-05-08 Thread spmallette
Author: spmallette
Date: Tue May  8 18:33:30 2018
New Revision: 26772

Log:
Remove TinkerPop 3.3.2 in prep for next release

Removed:
dev/tinkerpop/3.3.2/



[3/5] tinkerpop git commit: Update release date for 3.3.3 and JIRAs in changelog CTR

2018-05-08 Thread spmallette
Update release date for 3.3.3 and JIRAs in changelog CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/d86fcc59
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/d86fcc59
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/d86fcc59

Branch: refs/heads/master
Commit: d86fcc590033e4e40f791fe81a8889a928166e6f
Parents: 7b2783f
Author: Stephen Mallette 
Authored: Tue May 8 12:10:33 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 12:10:33 2018 -0400

--
 CHANGELOG.asciidoc  | 21 -
 docs/src/upgrade/release-3.3.x.asciidoc |  2 +-
 2 files changed, 21 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d86fcc59/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 246db49..8535bad 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -21,7 +21,7 @@ limitations under the License.
 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/gremlin-mozart.png[width=185]
 
 [[release-3-3-3]]
-=== TinkerPop 3.3.3 (Release Date: NOT OFFICIALLY RELEASED YET)
+=== TinkerPop 3.3.3 (Release Date: May 8, 2018)
 
 This release also includes changes from <>.
 
@@ -30,6 +30,25 @@ This release also includes changes from <>.
 * Deprecated `CredentialsGraph` DSL in favor of `CredentialsTraversalDsl` 
which uses the recommended method for Gremlin DSL development.
 * Allowed `iterate()` to be called after `profile()`.
 
+ Bugs
+
+* TINKERPOP-1869 Profile step and iterate do not play nicely with each other
+* TINKERPOP-1927 Gherkin scenario expects list with duplicates, but receives 
g:Set
+* TINKERPOP-1947 Path history isn't preserved for keys in mutations
+
+ Improvements
+
+* TINKERPOP-1628 Implement TraversalSelectStep
+* TINKERPOP-1755 No docs for ReferenceElements
+* TINKERPOP-1903 Credentials DSL should use the Java annotation processor
+* TINKERPOP-1912 Remove MD5 checksums
+* TINKERPOP-1934 Bump to latest version of httpclient
+* TINKERPOP-1936 Performance enhancement to Bytecode deserialization
+* TINKERPOP-1943 JavaScript GLV: Support GraphSON3
+* TINKERPOP-1944 JavaScript GLV: DriverRemoteConnection is not exported in the 
root module
+* TINKERPOP-1950 Traversal construction performance enhancements
+* TINKERPOP-1953 Bump to Groovy 2.4.15
+
 [[release-3-3-2]]
 === TinkerPop 3.3.2 (Release Date: April 2, 2018)
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/d86fcc59/docs/src/upgrade/release-3.3.x.asciidoc
--
diff --git a/docs/src/upgrade/release-3.3.x.asciidoc 
b/docs/src/upgrade/release-3.3.x.asciidoc
index 79b7ef5..e6c15cd 100644
--- a/docs/src/upgrade/release-3.3.x.asciidoc
+++ b/docs/src/upgrade/release-3.3.x.asciidoc
@@ -23,7 +23,7 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 
 == TinkerPop 3.3.2
 
-*Release Date: NOT OFFICIALLY RELEASED YET*
+*Release Date: May 8, 2018*
 
 Please see the 
link:https://github.com/apache/tinkerpop/blob/3.3.3/CHANGELOG.asciidoc#release-3-3-3[changelog]
 for a complete list of all the modifications that are part of this release.
 



[2/4] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-05-08 Thread spmallette
Merge branch 'tp32' into tp33

Conflicts:
giraph-gremlin/pom.xml
gremlin-archetype/gremlin-archetype-dsl/pom.xml
gremlin-archetype/gremlin-archetype-server/pom.xml
gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
gremlin-archetype/pom.xml
gremlin-console/bin/gremlin.sh
gremlin-console/pom.xml
gremlin-core/pom.xml
gremlin-dotnet/pom.xml
gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
gremlin-dotnet/src/pom.xml
gremlin-dotnet/test/pom.xml
gremlin-driver/pom.xml
gremlin-groovy-test/pom.xml
gremlin-groovy/pom.xml
gremlin-javascript/pom.xml
gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
gremlin-python/pom.xml
gremlin-server/pom.xml
gremlin-shaded/pom.xml
gremlin-test/pom.xml
gremlin-tools/gremlin-benchmark/pom.xml
hadoop-gremlin/pom.xml
neo4j-gremlin/pom.xml
pom.xml
spark-gremlin/pom.xml
tinkergraph-gremlin/pom.xml


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/7b2783f4
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/7b2783f4
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/7b2783f4

Branch: refs/heads/tp33
Commit: 7b2783f4acb7940c19464d758a28eaa00987ee4f
Parents: ea59446 fde136b
Author: Stephen Mallette 
Authored: Tue May 8 12:03:52 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 12:03:52 2018 -0400

--
 CHANGELOG.asciidoc | 17 -
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |  4 ++--
 2 files changed, 18 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7b2783f4/CHANGELOG.asciidoc
--

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7b2783f4/docs/src/upgrade/release-3.2.x-incubating.asciidoc
--



[2/5] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-05-08 Thread spmallette
Merge branch 'tp32' into tp33

Conflicts:
giraph-gremlin/pom.xml
gremlin-archetype/gremlin-archetype-dsl/pom.xml
gremlin-archetype/gremlin-archetype-server/pom.xml
gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
gremlin-archetype/pom.xml
gremlin-console/bin/gremlin.sh
gremlin-console/pom.xml
gremlin-core/pom.xml
gremlin-dotnet/pom.xml
gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
gremlin-dotnet/src/pom.xml
gremlin-dotnet/test/pom.xml
gremlin-driver/pom.xml
gremlin-groovy-test/pom.xml
gremlin-groovy/pom.xml
gremlin-javascript/pom.xml
gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
gremlin-python/pom.xml
gremlin-server/pom.xml
gremlin-shaded/pom.xml
gremlin-test/pom.xml
gremlin-tools/gremlin-benchmark/pom.xml
hadoop-gremlin/pom.xml
neo4j-gremlin/pom.xml
pom.xml
spark-gremlin/pom.xml
tinkergraph-gremlin/pom.xml


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/7b2783f4
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/7b2783f4
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/7b2783f4

Branch: refs/heads/master
Commit: 7b2783f4acb7940c19464d758a28eaa00987ee4f
Parents: ea59446 fde136b
Author: Stephen Mallette 
Authored: Tue May 8 12:03:52 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 12:03:52 2018 -0400

--
 CHANGELOG.asciidoc | 17 -
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |  4 ++--
 2 files changed, 18 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7b2783f4/CHANGELOG.asciidoc
--

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7b2783f4/docs/src/upgrade/release-3.2.x-incubating.asciidoc
--



[4/4] tinkerpop git commit: TinkerPop 3.3.3 release

2018-05-08 Thread spmallette
TinkerPop 3.3.3 release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2d39f9b8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2d39f9b8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2d39f9b8

Branch: refs/heads/tp33
Commit: 2d39f9b803e02f18d09c8fc1cced29cb903eb7d0
Parents: d86fcc5
Author: Stephen Mallette 
Authored: Tue May 8 14:06:53 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 14:06:53 2018 -0400

--
 giraph-gremlin/pom.xml | 2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml| 2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml | 2 +-
 gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml| 2 +-
 gremlin-archetype/pom.xml  | 2 +-
 gremlin-console/bin/gremlin.sh | 2 +-
 gremlin-console/pom.xml| 2 +-
 gremlin-core/pom.xml   | 2 +-
 gremlin-dotnet/pom.xml | 2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  | 2 +-
 gremlin-dotnet/src/pom.xml | 2 +-
 gremlin-dotnet/test/pom.xml| 2 +-
 gremlin-driver/pom.xml | 2 +-
 gremlin-groovy/pom.xml | 2 +-
 gremlin-javascript/pom.xml | 2 +-
 .../src/main/javascript/gremlin-javascript/package.json| 2 +-
 gremlin-python/pom.xml | 2 +-
 gremlin-server/pom.xml | 2 +-
 gremlin-shaded/pom.xml | 2 +-
 gremlin-test/pom.xml   | 2 +-
 gremlin-tools/gremlin-benchmark/pom.xml| 2 +-
 gremlin-tools/gremlin-coverage/pom.xml | 2 +-
 gremlin-tools/gremlin-io-test/pom.xml  | 2 +-
 gremlin-tools/pom.xml  | 2 +-
 hadoop-gremlin/pom.xml | 2 +-
 neo4j-gremlin/pom.xml  | 2 +-
 pom.xml| 2 +-
 spark-gremlin/pom.xml  | 2 +-
 tinkergraph-gremlin/pom.xml| 2 +-
 29 files changed, 29 insertions(+), 29 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/giraph-gremlin/pom.xml
--
diff --git a/giraph-gremlin/pom.xml b/giraph-gremlin/pom.xml
index 4bdbbcf..5c8e7fe 100644
--- a/giraph-gremlin/pom.xml
+++ b/giraph-gremlin/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 tinkerpop
-3.3.3-SNAPSHOT
+3.3.3
 
 giraph-gremlin
 Apache TinkerPop :: Giraph Gremlin

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-dsl/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-dsl/pom.xml 
b/gremlin-archetype/gremlin-archetype-dsl/pom.xml
index ca0fd53..812172b 100644
--- a/gremlin-archetype/gremlin-archetype-dsl/pom.xml
+++ b/gremlin-archetype/gremlin-archetype-dsl/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 gremlin-archetype
-3.3.3-SNAPSHOT
+3.3.3
 
 
 gremlin-archetype-dsl

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-server/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-server/pom.xml 
b/gremlin-archetype/gremlin-archetype-server/pom.xml
index 3d0d167..409f3c8 100644
--- a/gremlin-archetype/gremlin-archetype-server/pom.xml
+++ b/gremlin-archetype/gremlin-archetype-server/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 gremlin-archetype
-3.3.3-SNAPSHOT
+3.3.3
 
 
 gremlin-archetype-server

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml 

[5/5] tinkerpop git commit: Merge branch 'tp33'

2018-05-08 Thread spmallette
Merge branch 'tp33'

Conflicts:
giraph-gremlin/pom.xml
gremlin-archetype/gremlin-archetype-dsl/pom.xml
gremlin-archetype/gremlin-archetype-server/pom.xml
gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
gremlin-archetype/pom.xml
gremlin-console/bin/gremlin.sh
gremlin-console/pom.xml
gremlin-core/pom.xml
gremlin-dotnet/pom.xml
gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
gremlin-dotnet/src/pom.xml
gremlin-dotnet/test/pom.xml
gremlin-driver/pom.xml
gremlin-groovy/pom.xml
gremlin-javascript/pom.xml
gremlin-javascript/src/main/javascript/gremlin-javascript/package.json
gremlin-python/pom.xml
gremlin-server/pom.xml
gremlin-shaded/pom.xml
gremlin-test/pom.xml
gremlin-tools/gremlin-benchmark/pom.xml
gremlin-tools/gremlin-coverage/pom.xml
gremlin-tools/gremlin-io-test/pom.xml
gremlin-tools/pom.xml
hadoop-gremlin/pom.xml
neo4j-gremlin/pom.xml
pom.xml
spark-gremlin/pom.xml
tinkergraph-gremlin/pom.xml


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/bf77d6d1
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/bf77d6d1
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/bf77d6d1

Branch: refs/heads/master
Commit: bf77d6d1bdd7d81dc0215addaf4fefc304367f99
Parents: 1818c89 2d39f9b
Author: Stephen Mallette 
Authored: Tue May 8 14:21:19 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 14:21:19 2018 -0400

--
 CHANGELOG.asciidoc  | 38 ++--
 .../upgrade/release-3.2.x-incubating.asciidoc   |  4 +--
 docs/src/upgrade/release-3.3.x.asciidoc |  2 +-
 3 files changed, 39 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bf77d6d1/CHANGELOG.asciidoc
--



[1/4] tinkerpop git commit: TinkerPop 3.2.9 release

2018-05-08 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp33 ea594461e -> 2d39f9b80


TinkerPop 3.2.9 release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/fde136b1
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/fde136b1
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/fde136b1

Branch: refs/heads/tp33
Commit: fde136b1dd707398803fe337344d1ba5969a66bb
Parents: f64afe5
Author: Robert Dale 
Authored: Tue May 8 08:48:16 2018 -0400
Committer: Robert Dale 
Committed: Tue May 8 08:48:16 2018 -0400

--
 CHANGELOG.asciidoc | 17 -
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |  4 ++--
 giraph-gremlin/pom.xml |  2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml|  2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml |  2 +-
 .../gremlin-archetype-tinkergraph/pom.xml  |  2 +-
 gremlin-archetype/pom.xml  |  2 +-
 gremlin-benchmark/pom.xml  |  2 +-
 gremlin-console/bin/gremlin.sh |  2 +-
 gremlin-console/pom.xml|  2 +-
 gremlin-core/pom.xml   |  2 +-
 gremlin-dotnet/pom.xml |  2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  2 +-
 gremlin-dotnet/src/pom.xml |  2 +-
 gremlin-dotnet/test/pom.xml|  2 +-
 gremlin-driver/pom.xml |  2 +-
 gremlin-groovy-test/pom.xml|  2 +-
 gremlin-groovy/pom.xml |  2 +-
 gremlin-javascript/pom.xml |  2 +-
 .../javascript/gremlin-javascript/package.json |  2 +-
 gremlin-python/pom.xml |  2 +-
 gremlin-server/pom.xml |  2 +-
 gremlin-shaded/pom.xml |  2 +-
 gremlin-test/pom.xml   |  2 +-
 hadoop-gremlin/pom.xml |  2 +-
 neo4j-gremlin/pom.xml  |  2 +-
 pom.xml|  2 +-
 spark-gremlin/pom.xml  |  2 +-
 tinkergraph-gremlin/pom.xml|  2 +-
 29 files changed, 45 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index f6ca111..18f36ed 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -21,7 +21,7 @@ limitations under the License.
 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/nine-inch-gremlins.png[width=185]
 
 [[release-3-2-9]]
-=== TinkerPop 3.2.9 (Release Date: NOT OFFICIALLY RELEASED YET)
+=== TinkerPop 3.2.9 (Release Date: May 8, 2018)
 
 * Fixed bug where path history was not being preserved for keys in mutations.
 * Bumped to httpclient 4.5.5.
@@ -29,6 +29,21 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 * Improved performance of GraphSON deserialization of `Bytecode`.
 * Improved performance of traversal construction.
 
+  Bugs
+
+* TINKERPOP-1947 Path history isn't preserved for keys in mutations
+
+ Improvements
+
+* TINKERPOP-1755 No docs for ReferenceElements
+* TINKERPOP-1912 Remove MD5 checksums
+* TINKERPOP-1934 Bump to latest version of httpclient
+* TINKERPOP-1936 Performance enhancement to Bytecode deserialization
+* TINKERPOP-1944 JavaScript GLV: DriverRemoteConnection is not exported in the 
root module
+* TINKERPOP-1950 Traversal construction performance enhancements
+* TINKERPOP-1953 Bump to Groovy 2.4.15
+
+
 [[release-3-2-8]]
 === TinkerPop 3.2.8 (Release Date: April 2, 2018)
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/docs/src/upgrade/release-3.2.x-incubating.asciidoc
--
diff --git a/docs/src/upgrade/release-3.2.x-incubating.asciidoc 
b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
index 51b85d3..06e4f59 100644
--- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
@@ -23,9 +23,9 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 
 == TinkerPop 3.2.9
 
-*Release Date: NOT OFFICIALLY RELEASED YET*
+*Release Date: May 8, 2018*
 
-Please see the 
link:https://github.com/apache/tinkerpop/blob/3.2.8/CHANGELOG.asciidoc#release-3-2-9[changelog]
 for a complete list of all the modifications that are part of this release.
+Please see the 

[4/5] tinkerpop git commit: TinkerPop 3.3.3 release

2018-05-08 Thread spmallette
TinkerPop 3.3.3 release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2d39f9b8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2d39f9b8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2d39f9b8

Branch: refs/heads/master
Commit: 2d39f9b803e02f18d09c8fc1cced29cb903eb7d0
Parents: d86fcc5
Author: Stephen Mallette 
Authored: Tue May 8 14:06:53 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 14:06:53 2018 -0400

--
 giraph-gremlin/pom.xml | 2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml| 2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml | 2 +-
 gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml| 2 +-
 gremlin-archetype/pom.xml  | 2 +-
 gremlin-console/bin/gremlin.sh | 2 +-
 gremlin-console/pom.xml| 2 +-
 gremlin-core/pom.xml   | 2 +-
 gremlin-dotnet/pom.xml | 2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  | 2 +-
 gremlin-dotnet/src/pom.xml | 2 +-
 gremlin-dotnet/test/pom.xml| 2 +-
 gremlin-driver/pom.xml | 2 +-
 gremlin-groovy/pom.xml | 2 +-
 gremlin-javascript/pom.xml | 2 +-
 .../src/main/javascript/gremlin-javascript/package.json| 2 +-
 gremlin-python/pom.xml | 2 +-
 gremlin-server/pom.xml | 2 +-
 gremlin-shaded/pom.xml | 2 +-
 gremlin-test/pom.xml   | 2 +-
 gremlin-tools/gremlin-benchmark/pom.xml| 2 +-
 gremlin-tools/gremlin-coverage/pom.xml | 2 +-
 gremlin-tools/gremlin-io-test/pom.xml  | 2 +-
 gremlin-tools/pom.xml  | 2 +-
 hadoop-gremlin/pom.xml | 2 +-
 neo4j-gremlin/pom.xml  | 2 +-
 pom.xml| 2 +-
 spark-gremlin/pom.xml  | 2 +-
 tinkergraph-gremlin/pom.xml| 2 +-
 29 files changed, 29 insertions(+), 29 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/giraph-gremlin/pom.xml
--
diff --git a/giraph-gremlin/pom.xml b/giraph-gremlin/pom.xml
index 4bdbbcf..5c8e7fe 100644
--- a/giraph-gremlin/pom.xml
+++ b/giraph-gremlin/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 tinkerpop
-3.3.3-SNAPSHOT
+3.3.3
 
 giraph-gremlin
 Apache TinkerPop :: Giraph Gremlin

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-dsl/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-dsl/pom.xml 
b/gremlin-archetype/gremlin-archetype-dsl/pom.xml
index ca0fd53..812172b 100644
--- a/gremlin-archetype/gremlin-archetype-dsl/pom.xml
+++ b/gremlin-archetype/gremlin-archetype-dsl/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 gremlin-archetype
-3.3.3-SNAPSHOT
+3.3.3
 
 
 gremlin-archetype-dsl

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-server/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-server/pom.xml 
b/gremlin-archetype/gremlin-archetype-server/pom.xml
index 3d0d167..409f3c8 100644
--- a/gremlin-archetype/gremlin-archetype-server/pom.xml
+++ b/gremlin-archetype/gremlin-archetype-server/pom.xml
@@ -21,7 +21,7 @@ limitations under the License.
 
 org.apache.tinkerpop
 gremlin-archetype
-3.3.3-SNAPSHOT
+3.3.3
 
 
 gremlin-archetype-server

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2d39f9b8/gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml
--
diff --git a/gremlin-archetype/gremlin-archetype-tinkergraph/pom.xml 

[1/5] tinkerpop git commit: TinkerPop 3.2.9 release

2018-05-08 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/master 1818c8933 -> bf77d6d1b


TinkerPop 3.2.9 release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/fde136b1
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/fde136b1
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/fde136b1

Branch: refs/heads/master
Commit: fde136b1dd707398803fe337344d1ba5969a66bb
Parents: f64afe5
Author: Robert Dale 
Authored: Tue May 8 08:48:16 2018 -0400
Committer: Robert Dale 
Committed: Tue May 8 08:48:16 2018 -0400

--
 CHANGELOG.asciidoc | 17 -
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |  4 ++--
 giraph-gremlin/pom.xml |  2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml|  2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml |  2 +-
 .../gremlin-archetype-tinkergraph/pom.xml  |  2 +-
 gremlin-archetype/pom.xml  |  2 +-
 gremlin-benchmark/pom.xml  |  2 +-
 gremlin-console/bin/gremlin.sh |  2 +-
 gremlin-console/pom.xml|  2 +-
 gremlin-core/pom.xml   |  2 +-
 gremlin-dotnet/pom.xml |  2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  2 +-
 gremlin-dotnet/src/pom.xml |  2 +-
 gremlin-dotnet/test/pom.xml|  2 +-
 gremlin-driver/pom.xml |  2 +-
 gremlin-groovy-test/pom.xml|  2 +-
 gremlin-groovy/pom.xml |  2 +-
 gremlin-javascript/pom.xml |  2 +-
 .../javascript/gremlin-javascript/package.json |  2 +-
 gremlin-python/pom.xml |  2 +-
 gremlin-server/pom.xml |  2 +-
 gremlin-shaded/pom.xml |  2 +-
 gremlin-test/pom.xml   |  2 +-
 hadoop-gremlin/pom.xml |  2 +-
 neo4j-gremlin/pom.xml  |  2 +-
 pom.xml|  2 +-
 spark-gremlin/pom.xml  |  2 +-
 tinkergraph-gremlin/pom.xml|  2 +-
 29 files changed, 45 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index f6ca111..18f36ed 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -21,7 +21,7 @@ limitations under the License.
 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/nine-inch-gremlins.png[width=185]
 
 [[release-3-2-9]]
-=== TinkerPop 3.2.9 (Release Date: NOT OFFICIALLY RELEASED YET)
+=== TinkerPop 3.2.9 (Release Date: May 8, 2018)
 
 * Fixed bug where path history was not being preserved for keys in mutations.
 * Bumped to httpclient 4.5.5.
@@ -29,6 +29,21 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 * Improved performance of GraphSON deserialization of `Bytecode`.
 * Improved performance of traversal construction.
 
+  Bugs
+
+* TINKERPOP-1947 Path history isn't preserved for keys in mutations
+
+ Improvements
+
+* TINKERPOP-1755 No docs for ReferenceElements
+* TINKERPOP-1912 Remove MD5 checksums
+* TINKERPOP-1934 Bump to latest version of httpclient
+* TINKERPOP-1936 Performance enhancement to Bytecode deserialization
+* TINKERPOP-1944 JavaScript GLV: DriverRemoteConnection is not exported in the 
root module
+* TINKERPOP-1950 Traversal construction performance enhancements
+* TINKERPOP-1953 Bump to Groovy 2.4.15
+
+
 [[release-3-2-8]]
 === TinkerPop 3.2.8 (Release Date: April 2, 2018)
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/docs/src/upgrade/release-3.2.x-incubating.asciidoc
--
diff --git a/docs/src/upgrade/release-3.2.x-incubating.asciidoc 
b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
index 51b85d3..06e4f59 100644
--- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
@@ -23,9 +23,9 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 
 == TinkerPop 3.2.9
 
-*Release Date: NOT OFFICIALLY RELEASED YET*
+*Release Date: May 8, 2018*
 
-Please see the 
link:https://github.com/apache/tinkerpop/blob/3.2.8/CHANGELOG.asciidoc#release-3-2-9[changelog]
 for a complete list of all the modifications that are part of this release.
+Please see the 

svn commit: r26771 - /dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip.md5

2018-05-08 Thread rdale
Author: rdale
Date: Tue May  8 16:16:18 2018
New Revision: 26771

Log:
remove md5 per policy

Removed:
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip.md5



svn commit: r26770 - /dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.md5

2018-05-08 Thread rdale
Author: rdale
Date: Tue May  8 16:16:05 2018
New Revision: 26770

Log:
remove md5 per policy

Removed:
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.md5



svn commit: r26768 - /dev/tinkerpop/3.2.8/

2018-05-08 Thread rdale
Author: rdale
Date: Tue May  8 15:48:50 2018
New Revision: 26768

Log:
making room for 3.2.9

Removed:
dev/tinkerpop/3.2.8/



svn commit: r26767 - /dev/tinkerpop/3.2.9/

2018-05-08 Thread rdale
Author: rdale
Date: Tue May  8 15:32:07 2018
New Revision: 26767

Log:
TinkerPop 3.2.9 release

Added:
dev/tinkerpop/3.2.9/
dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip   (with props)
dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.asc
dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.md5
dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.sha1
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip   (with 
props)
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.asc
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.md5
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.sha1
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip   (with 
props)
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip.asc
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip.md5
dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-server-3.2.9-bin.zip.sha1

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip
==
Binary file - no diff available.

Propchange: dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip
--
svn:mime-type = application/octet-stream

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.asc
==
--- dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.asc (added)
+++ dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.asc Tue May  8 15:32:07 
2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJa8bv2AAoJEPDlrknXWsBpfvcP/Rz5aSz7No3Dfth7r7Wda7jy
+67QsmxMARMW7ORPCMGxbSiGd91SatF6LHV7XffZWlCcA/P5QdH7SE93kkrE+3O5I
+pawVF2HpKTBjfPR4utN5C8rRFpqfHQgG8rfuvlXbJDf5Lhw/REIGp13mLZ/fWThP
+wlMBUaLVCs9ba8E/myW3qMf7yREPEkIMZJSklfb6J3rpXQX7tkqKg1QWF9uflhVN
+wnJKmHty75ut0c+xIm/Di15ITmLwXgNwZ8brzL+iWpQMC8GunhYDfMoiiT9L2jyA
+L1uCi+LhJ9zgolNUikhYxfV7q34SkMHmnTMuU2JSh+dItzAO+2vNreiRkIxVMUUy
+M4OkKtzM2GdzY9qdCwUTTbuxtA/6NymAvJw21UdI3xoVlEQoV0/MX/qKZrMBNAaQ
+o7zfrYtrc4CBN74Xqvv3o28Z83mERlmGLR32xZ9rV6XkA7dUVTZRMuc9qmijy8qx
+qcqVBsJWr63HVf8GfItcO4gCbEG6umCya/Wh7bCgn1UabCi7h3ujvtrfi+6Q9Hz7
+5lgxgVyJA43fCQ9dQbQ+TmxXPiXG3yVRPkgQ0WhNBEzipDAByI88Ig02jsmqe84O
+x+uO6NiVDjmM4prskUcWSvnlBta+e7Mpgz0UcH1vMyluZByed7SgXbNV1TYZUCzl
+xCaJ814HhW79ZtsVaeNW
+=Szdt
+-END PGP SIGNATURE-

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.md5
==
--- dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.md5 (added)
+++ dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.md5 Tue May  8 15:32:07 
2018
@@ -0,0 +1 @@
+f6b9ccb38de66f415880498747f0f2ca
\ No newline at end of file

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.sha1
==
--- dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.sha1 (added)
+++ dev/tinkerpop/3.2.9/apache-tinkerpop-3.2.9-src.zip.sha1 Tue May  8 15:32:07 
2018
@@ -0,0 +1 @@
+b600faa3a5403e6caac7ce91ce1adcf29aa9df8d
\ No newline at end of file

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip
==
Binary file - no diff available.

Propchange: dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip
--
svn:mime-type = application/octet-stream

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.asc
==
--- dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.asc 
(added)
+++ dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.asc Tue 
May  8 15:32:07 2018
@@ -0,0 +1,17 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v1
+
+iQIcBAABCgAGBQJa8b4JAAoJEPDlrknXWsBpub8QAMFyyEs7V+gH6sQm4+cdLsQp
+jgfCpaIcCXSUDgSjj/Ff8MjqzIKkfhkqbDBdLrrKVXH/N6DVWY6sBCkvIid0Td51
+2RybRLxzhjYF7jxJ8Ajx0LPQI30xGXyFdtfIVCpcDIAjWmlXnnu+BBLxjxnFZ777
+WynbrkPs3+v5vLvhhpSsVj5Y7cbyxBoQm8qpGxF5zFoNB9TGFYxFTUttV62WyTxh
+gjz01fCv8WboUkXDTwLrP2K3ptjboAMYqCdYSnzC/FwB7H7UQWXgqCf/IYeZtwaa
+MJZdvn2k5IeAMbLiFQAZuH78mspMVsjb3c1/OpvDBhNMmBQyUMCxwJGvWq8v1gqZ
+EJD6JJJX8zowiOwgd3OAUgHHT2AEULKarl2UgXDSAZVC0M7+lO4OOQmbPwiLT6nv
+J+GaxduEHCJbqUpEslfRS3YXGtrdOlVeRZfY/CefyQLKO1uysnQnGQ/RrCNYExA8
+SKRvqjIZFh6c9ymLOWSCnNZYtzw4rSRyRVeyvSTIgSFNYGNssKFUq2Kd51+bFotS
+yx7ZvjbF210Iwk98Ojc40Acy7ag+p17oDmT3B5Po2xC6ZJ8mLpu98qFakCcEdSfF
+CWwFrzZvoA0MIZnTlwiKRitt01rhhDGThfLRTkRPciqy++5JHcdCGq0aBdFCDm6K
+S8ZiVfwS0T3TgWcnLm/0
+=EUhV
+-END PGP SIGNATURE-

Added: dev/tinkerpop/3.2.9/apache-tinkerpop-gremlin-console-3.2.9-bin.zip.md5

svn commit: r1831193 - in /tinkerpop/site: docs/3.2.9/ docs/3.2.9/dev/ docs/3.2.9/dev/developer/ docs/3.2.9/dev/io/ docs/3.2.9/dev/provider/ docs/3.2.9/images/ docs/3.2.9/images/icons/ docs/3.2.9/logs

2018-05-08 Thread rdale
Author: rdale
Date: Tue May  8 14:47:37 2018
New Revision: 1831193

URL: http://svn.apache.org/viewvc?rev=1831193=rev
Log:
Deploy docs for TinkerPop 3.2.9


[This commit notification would consist of 1002 parts, 
which exceeds the limit of 50 ones, so it was shortened to the summary.]


tinkerpop git commit: TinkerPop 3.2.9 release

2018-05-08 Thread rdale
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 f64afe52a -> fde136b1d


TinkerPop 3.2.9 release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/fde136b1
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/fde136b1
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/fde136b1

Branch: refs/heads/tp32
Commit: fde136b1dd707398803fe337344d1ba5969a66bb
Parents: f64afe5
Author: Robert Dale 
Authored: Tue May 8 08:48:16 2018 -0400
Committer: Robert Dale 
Committed: Tue May 8 08:48:16 2018 -0400

--
 CHANGELOG.asciidoc | 17 -
 docs/src/upgrade/release-3.2.x-incubating.asciidoc |  4 ++--
 giraph-gremlin/pom.xml |  2 +-
 gremlin-archetype/gremlin-archetype-dsl/pom.xml|  2 +-
 gremlin-archetype/gremlin-archetype-server/pom.xml |  2 +-
 .../gremlin-archetype-tinkergraph/pom.xml  |  2 +-
 gremlin-archetype/pom.xml  |  2 +-
 gremlin-benchmark/pom.xml  |  2 +-
 gremlin-console/bin/gremlin.sh |  2 +-
 gremlin-console/pom.xml|  2 +-
 gremlin-core/pom.xml   |  2 +-
 gremlin-dotnet/pom.xml |  2 +-
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj  |  2 +-
 gremlin-dotnet/src/pom.xml |  2 +-
 gremlin-dotnet/test/pom.xml|  2 +-
 gremlin-driver/pom.xml |  2 +-
 gremlin-groovy-test/pom.xml|  2 +-
 gremlin-groovy/pom.xml |  2 +-
 gremlin-javascript/pom.xml |  2 +-
 .../javascript/gremlin-javascript/package.json |  2 +-
 gremlin-python/pom.xml |  2 +-
 gremlin-server/pom.xml |  2 +-
 gremlin-shaded/pom.xml |  2 +-
 gremlin-test/pom.xml   |  2 +-
 hadoop-gremlin/pom.xml |  2 +-
 neo4j-gremlin/pom.xml  |  2 +-
 pom.xml|  2 +-
 spark-gremlin/pom.xml  |  2 +-
 tinkergraph-gremlin/pom.xml|  2 +-
 29 files changed, 45 insertions(+), 30 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index f6ca111..18f36ed 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -21,7 +21,7 @@ limitations under the License.
 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/images/nine-inch-gremlins.png[width=185]
 
 [[release-3-2-9]]
-=== TinkerPop 3.2.9 (Release Date: NOT OFFICIALLY RELEASED YET)
+=== TinkerPop 3.2.9 (Release Date: May 8, 2018)
 
 * Fixed bug where path history was not being preserved for keys in mutations.
 * Bumped to httpclient 4.5.5.
@@ -29,6 +29,21 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 * Improved performance of GraphSON deserialization of `Bytecode`.
 * Improved performance of traversal construction.
 
+  Bugs
+
+* TINKERPOP-1947 Path history isn't preserved for keys in mutations
+
+ Improvements
+
+* TINKERPOP-1755 No docs for ReferenceElements
+* TINKERPOP-1912 Remove MD5 checksums
+* TINKERPOP-1934 Bump to latest version of httpclient
+* TINKERPOP-1936 Performance enhancement to Bytecode deserialization
+* TINKERPOP-1944 JavaScript GLV: DriverRemoteConnection is not exported in the 
root module
+* TINKERPOP-1950 Traversal construction performance enhancements
+* TINKERPOP-1953 Bump to Groovy 2.4.15
+
+
 [[release-3-2-8]]
 === TinkerPop 3.2.8 (Release Date: April 2, 2018)
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/fde136b1/docs/src/upgrade/release-3.2.x-incubating.asciidoc
--
diff --git a/docs/src/upgrade/release-3.2.x-incubating.asciidoc 
b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
index 51b85d3..06e4f59 100644
--- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc
+++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc
@@ -23,9 +23,9 @@ 
image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 
 == TinkerPop 3.2.9
 
-*Release Date: NOT OFFICIALLY RELEASED YET*
+*Release Date: May 8, 2018*
 
-Please see the 
link:https://github.com/apache/tinkerpop/blob/3.2.8/CHANGELOG.asciidoc#release-3-2-9[changelog]
 for a complete list of all the modifications that are part of this release.
+Please see the 

[2/4] tinkerpop git commit: TINKERPOP-1707 Removed deprecated AuthenticationSettings.className

2018-05-08 Thread spmallette
TINKERPOP-1707 Removed deprecated AuthenticationSettings.className


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/908107c5
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/908107c5
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/908107c5

Branch: refs/heads/master
Commit: 908107c56a4ccbcdb4e160bf43d3c437fd1f20e2
Parents: 4e46f71
Author: Stephen Mallette 
Authored: Wed Apr 25 19:44:37 2018 -0400
Committer: Stephen Mallette 
Committed: Thu Apr 26 06:37:30 2018 -0400

--
 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.4.x.asciidoc |  5 -
 .../tinkerpop/gremlin/server/AbstractChannelizer.java   |  7 +--
 .../org/apache/tinkerpop/gremlin/server/Settings.java   | 12 +---
 .../server/GremlinServerAuditLogIntegrateTest.java  |  2 +-
 .../gremlin/server/GremlinServerAuthIntegrateTest.java  |  2 +-
 .../server/GremlinServerAuthKrb5IntegrateTest.java  |  2 +-
 7 files changed, 10 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/908107c5/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 833d0e5..3248bf1 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -34,6 +34,7 @@ This release also includes changes from <>.
 * Moved `TraversalEngine` to `gremlin-test` as it has long been only used in 
testing infrastructure.
 * Removed previously deprecated Structure API exceptions related to "element 
not found" situations.
 * Removed previously deprecated `rebindings` options from the Java driver API.
+* Removed previously deprecated `AuthenticationSettings.className` 
configuration option in Gremlin Server.
 * Removed support for Giraph.
 
 == TinkerPop 3.3.0 (Gremlin Symphony #40 in G Minor)

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/908107c5/docs/src/upgrade/release-3.4.x.asciidoc
--
diff --git a/docs/src/upgrade/release-3.4.x.asciidoc 
b/docs/src/upgrade/release-3.4.x.asciidoc
index cae8917..6f47646 100644
--- a/docs/src/upgrade/release-3.4.x.asciidoc
+++ b/docs/src/upgrade/release-3.4.x.asciidoc
@@ -91,12 +91,15 @@ The following deprecated classes, methods or fields have 
been removed in this ve
 ** `org.apache.tinkerpop.gremlin.driver.Client#rebind(String)`
 ** `org.apache.tinkerpop.gremlin.driver.Client.ReboundClusterdClient`
 ** `org.apache.tinkerpop.gremlin.driver.Tokens#ARGS_REBINDINGS`
+* `gremlin-server`
+** 
`org.apache.tinkerpop.gremlin.server.Settings.AuthenticationSettings.className`
 
 Please see the javadoc deprecation notes or upgrade documentation specific to 
when the deprecation took place to
 understand how to resolve this breaking change.
 
 See: link:https://issues.apache.org/jira/browse/TINKERPOP-1143[TINKERPOP-1143],
-link:https://issues.apache.org/jira/browse/TINKERPOP-1705[TINKERPOP-1705]
+link:https://issues.apache.org/jira/browse/TINKERPOP-1705[TINKERPOP-1705],
+link:https://issues.apache.org/jira/browse/TINKERPOP-1707[TINKERPOP-1707]
 
  Modifications to reducing barrier steps
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/908107c5/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
--
diff --git 
a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
 
b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
index e7f299b..388bf0b 100644
--- 
a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
+++ 
b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/AbstractChannelizer.java
@@ -179,12 +179,7 @@ public abstract class AbstractChannelizer extends 
ChannelInitializer clazz = Class.forName(authenticatorClass);
 final Authenticator authenticator = (Authenticator) 
clazz.newInstance();

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/908107c5/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
--
diff --git 
a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
 
b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
index 9921817..66fcd86 100644
--- 
a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
+++ 
b/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
@@ -30,7 +30,6 @@ import 

[3/4] tinkerpop git commit: TINKERPOP-1954 Removed Gremlin Server deprecated methods

2018-05-08 Thread spmallette
TINKERPOP-1954 Removed Gremlin Server deprecated methods

Specifically, removed deprecated GraphManager and Handler/OpProcessor


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1e0bc5fc
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1e0bc5fc
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/1e0bc5fc

Branch: refs/heads/master
Commit: 1e0bc5fc9f3753697621b2b54a0e6a1021363fb6
Parents: f123758
Author: Stephen Mallette 
Authored: Thu Apr 26 06:58:27 2018 -0400
Committer: Stephen Mallette 
Committed: Thu Apr 26 06:58:27 2018 -0400

--
 CHANGELOG.asciidoc  |  5 +++-
 docs/src/upgrade/release-3.4.x.asciidoc | 17 +++-
 .../tinkerpop/gremlin/server/GraphManager.java  | 22 
 .../server/handler/OpSelectorHandler.java   |  9 ---
 .../gremlin/server/op/AbstractOpProcessor.java  | 11 +---
 .../server/util/DefaultGraphManager.java| 27 
 6 files changed, 16 insertions(+), 75 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/1e0bc5fc/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 84ecdc4..a405ba0 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -32,10 +32,13 @@ This release also includes changes from <>.
 * Changed the order of `select()` scopes. The order is now: maps, 
side-effects, paths.
 * Removed previously deprecated Credentials DSL infrastructure.
 * Moved `TraversalEngine` to `gremlin-test` as it has long been only used in 
testing infrastructure.
+* Removed previously deprecated `OpSelectorHandler` constructor.
+* Removed previously deprecated `AbstractOpProcessor#makeFrame()` method.
+* Removed previously deprecated `AuthenticationSettings.className` 
configuration option in Gremlin Server.
+* Removed previously deprecated `GraphManager` methods `getGraphs()` and 
`getTraversalSources()`.
 * Removed previously deprecated Gremlin Server setting for 
`serializedResponseTimeout`.
 * Removed previously deprecated Structure API exceptions related to "element 
not found" situations.
 * Removed previously deprecated `rebindings` options from the Java driver API.
-* Removed previously deprecated `AuthenticationSettings.className` 
configuration option in Gremlin Server.
 * Removed support for Giraph.
 
 == TinkerPop 3.3.0 (Gremlin Symphony #40 in G Minor)

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/1e0bc5fc/docs/src/upgrade/release-3.4.x.asciidoc
--
diff --git a/docs/src/upgrade/release-3.4.x.asciidoc 
b/docs/src/upgrade/release-3.4.x.asciidoc
index c486df8..a3de9e7 100644
--- a/docs/src/upgrade/release-3.4.x.asciidoc
+++ b/docs/src/upgrade/release-3.4.x.asciidoc
@@ -84,16 +84,20 @@ The following deprecated classes, methods or fields have 
been removed in this ve
 * `gremlin-core`
 ** `org.apache.tinkerpop.gremlin.process.traversal.engine.*`
 ** `org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine`
-** 
`org.apache.tinkerpop.gremlin.structure.Element.Exceptions.elementAlreadyRemoved(Class,
 Object)`
-** 
`org.apache.tinkerpop.gremlin.structure.Graph.Exceptions.elementNotFound(Class, 
Object)`
-** 
`org.apache.tinkerpop.gremlin.structure.Graph.Exceptions.elementNotFound(Class, 
Object, Exception)`
+** 
`org.apache.tinkerpop.gremlin.structure.Element.Exceptions#elementAlreadyRemoved(Class,
 Object)`
+** 
`org.apache.tinkerpop.gremlin.structure.Graph.Exceptions#elementNotFound(Class, 
Object)`
+** 
`org.apache.tinkerpop.gremlin.structure.Graph.Exceptions#elementNotFound(Class, 
Object, Exception)`
 * `gremlin-driver`
 ** `org.apache.tinkerpop.gremlin.driver.Client#rebind(String)`
 ** `org.apache.tinkerpop.gremlin.driver.Client.ReboundClusterdClient`
 ** `org.apache.tinkerpop.gremlin.driver.Tokens#ARGS_REBINDINGS`
 * `gremlin-server`
-** `org.apache.tinkerpop.gremlin.server.Settings.serializedResponseTimeout`
-** 
`org.apache.tinkerpop.gremlin.server.Settings.AuthenticationSettings.className`
+** `org.apache.tinkerpop.gremlin.server.GraphManager#getGraphs()`
+** `org.apache.tinkerpop.gremlin.server.GraphManager#getTraversalSources()`
+** `org.apache.tinkerpop.gremlin.server.Settings#serializedResponseTimeout`
+** 
`org.apache.tinkerpop.gremlin.server.Settings.AuthenticationSettings#className`
+** `org.apache.tinkerpop.gremlin.server.handler.OpSelectorHandler(Settings, 
GraphManager, GremlinExecutor, ScheduledExecutorService)`
+** 
`org.apache.tinkerpop.gremlin.server.op.AbstractOpProcessor#makeFrame(ChannelHandlerContext,
 RequestMessage, MessageSerializer serializer, boolean, List, 
ResponseStatusCode 

[4/4] tinkerpop git commit: Merge branch 'TINKERPOP-1296'

2018-05-08 Thread spmallette
Merge branch 'TINKERPOP-1296'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/1818c893
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/1818c893
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/1818c893

Branch: refs/heads/master
Commit: 1818c8933da53a7749b705ce71bfe3de587a5d38
Parents: 9bff0f4 1e0bc5f
Author: Stephen Mallette 
Authored: Tue May 8 08:27:28 2018 -0400
Committer: Stephen Mallette 
Committed: Tue May 8 08:27:28 2018 -0400

--
 CHANGELOG.asciidoc  |  5 +++
 docs/src/upgrade/release-3.4.x.asciidoc | 18 +++---
 .../src/test/resources/gremlin-server.yaml  |  1 -
 .../gremlin/server/AbstractChannelizer.java |  7 +---
 .../tinkerpop/gremlin/server/GraphManager.java  | 22 
 .../tinkerpop/gremlin/server/Settings.java  | 21 +---
 .../server/handler/OpSelectorHandler.java   |  9 -
 .../gremlin/server/op/AbstractOpProcessor.java  | 36 ++--
 .../op/traversal/TraversalOpProcessor.java  |  9 -
 .../server/util/DefaultGraphManager.java| 27 ---
 .../GremlinServerAuditLogIntegrateTest.java |  2 +-
 .../server/GremlinServerAuthIntegrateTest.java  |  2 +-
 .../GremlinServerAuthKrb5IntegrateTest.java |  2 +-
 .../server/GremlinServerIntegrateTest.java  | 24 -
 14 files changed, 27 insertions(+), 158 deletions(-)
--




[1/4] tinkerpop git commit: TINKERPOP-1296 Removed deprecated serializedResponseTimeout from Gremlin Server

2018-05-08 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/master 9bff0f439 -> 1818c8933


TINKERPOP-1296 Removed deprecated serializedResponseTimeout from Gremlin Server


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/f1237587
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/f1237587
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/f1237587

Branch: refs/heads/master
Commit: f1237587ea4d691f691f55c6b6c42de1f7c52a9d
Parents: 908107c
Author: Stephen Mallette 
Authored: Wed Apr 25 21:34:43 2018 -0400
Committer: Stephen Mallette 
Committed: Thu Apr 26 06:37:30 2018 -0400

--
 CHANGELOG.asciidoc  |  1 +
 docs/src/upgrade/release-3.4.x.asciidoc |  2 ++
 .../src/test/resources/gremlin-server.yaml  |  1 -
 .../tinkerpop/gremlin/server/Settings.java  |  9 ---
 .../gremlin/server/op/AbstractOpProcessor.java  | 25 ++--
 .../op/traversal/TraversalOpProcessor.java  |  9 ---
 .../server/GremlinServerIntegrateTest.java  | 24 ---
 7 files changed, 5 insertions(+), 66 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f1237587/CHANGELOG.asciidoc
--
diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 3248bf1..84ecdc4 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -32,6 +32,7 @@ This release also includes changes from <>.
 * Changed the order of `select()` scopes. The order is now: maps, 
side-effects, paths.
 * Removed previously deprecated Credentials DSL infrastructure.
 * Moved `TraversalEngine` to `gremlin-test` as it has long been only used in 
testing infrastructure.
+* Removed previously deprecated Gremlin Server setting for 
`serializedResponseTimeout`.
 * Removed previously deprecated Structure API exceptions related to "element 
not found" situations.
 * Removed previously deprecated `rebindings` options from the Java driver API.
 * Removed previously deprecated `AuthenticationSettings.className` 
configuration option in Gremlin Server.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f1237587/docs/src/upgrade/release-3.4.x.asciidoc
--
diff --git a/docs/src/upgrade/release-3.4.x.asciidoc 
b/docs/src/upgrade/release-3.4.x.asciidoc
index 6f47646..c486df8 100644
--- a/docs/src/upgrade/release-3.4.x.asciidoc
+++ b/docs/src/upgrade/release-3.4.x.asciidoc
@@ -92,12 +92,14 @@ The following deprecated classes, methods or fields have 
been removed in this ve
 ** `org.apache.tinkerpop.gremlin.driver.Client.ReboundClusterdClient`
 ** `org.apache.tinkerpop.gremlin.driver.Tokens#ARGS_REBINDINGS`
 * `gremlin-server`
+** `org.apache.tinkerpop.gremlin.server.Settings.serializedResponseTimeout`
 ** 
`org.apache.tinkerpop.gremlin.server.Settings.AuthenticationSettings.className`
 
 Please see the javadoc deprecation notes or upgrade documentation specific to 
when the deprecation took place to
 understand how to resolve this breaking change.
 
 See: link:https://issues.apache.org/jira/browse/TINKERPOP-1143[TINKERPOP-1143],
+link:https://issues.apache.org/jira/browse/TINKERPOP-1296[TINKERPOP-1296],
 link:https://issues.apache.org/jira/browse/TINKERPOP-1705[TINKERPOP-1705],
 link:https://issues.apache.org/jira/browse/TINKERPOP-1707[TINKERPOP-1707]
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f1237587/gremlin-archetype/gremlin-archetype-server/src/main/resources/archetype-resources/src/test/resources/gremlin-server.yaml
--
diff --git 
a/gremlin-archetype/gremlin-archetype-server/src/main/resources/archetype-resources/src/test/resources/gremlin-server.yaml
 
b/gremlin-archetype/gremlin-archetype-server/src/main/resources/archetype-resources/src/test/resources/gremlin-server.yaml
index f5613ef..fb5e140 100644
--- 
a/gremlin-archetype/gremlin-archetype-server/src/main/resources/archetype-resources/src/test/resources/gremlin-server.yaml
+++ 
b/gremlin-archetype/gremlin-archetype-server/src/main/resources/archetype-resources/src/test/resources/gremlin-server.yaml
@@ -20,7 +20,6 @@ port: 45940
 threadPoolWorker: 1
 gremlinPool: 8
 scriptEvaluationTimeout: 3
-serializedResponseTimeout: 3
 graphs: {
   graph: conf/tinkergraph-empty.properties}
 scriptEngines: {

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/f1237587/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java
--
diff --git 
a/gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/Settings.java