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/07/15 23:35:37 UTC

[tinkerpop] branch TINKERPOP-1921 updated: TINKERPOP-1921 Added changelog and upgrade docs for hasNext()

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

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


The following commit(s) were added to refs/heads/TINKERPOP-1921 by this push:
     new 9f369ed  TINKERPOP-1921 Added changelog and upgrade docs for hasNext()
9f369ed is described below

commit 9f369ed72e9f72adf52212fc86aae67ce7fe1c1e
Author: Stephen Mallette <sp...@genoprime.com>
AuthorDate: Mon Jul 15 19:35:12 2019 -0400

    TINKERPOP-1921 Added changelog and upgrade docs for hasNext()
---
 CHANGELOG.asciidoc                      | 1 +
 docs/src/upgrade/release-3.3.x.asciidoc | 8 ++++++++
 2 files changed, 9 insertions(+)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index a0e54b2..48c94ab 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -33,6 +33,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
 * Fixed `optional()` so that the child traversal is treated as local.
 * Changed default keep-alive time for driver to 3 minutes.
 * Fixed bug where server-side keep-alive was not always disabled when its setting was zero.
+* Added support for `hasNext()` in Javascript and .NET.
 * Improved error messaging for invalid inputs to the TinkerGraph `IdManager` instances.
 * Forced replacement of connections in Java driver for certain exception types that seem to ultimately kill the connection.
 * Changed the `reverse()` of `desc` and `asc` on `Order` to not use the deprecated `decr` and `incr`.
diff --git a/docs/src/upgrade/release-3.3.x.asciidoc b/docs/src/upgrade/release-3.3.x.asciidoc
index d1400e7..c262d4d 100644
--- a/docs/src/upgrade/release-3.3.x.asciidoc
+++ b/docs/src/upgrade/release-3.3.x.asciidoc
@@ -64,6 +64,14 @@ Gremlin steps that require a `GraphComputer` to execute (e.g. `pageRank()` and `
 
 See: link:https://issues.apache.org/jira/browse/TINKERPOP-2251[TINKERPOP-2251]
 
+==== JavaScript and .NET hasNext()
+
+There is now greater consistency across Gremlin Language Variants with `hasNext()` support added to both JavaScript
+and .NET. Note that in .NET, the proper method name follows C# capitalization semantics and is referred to as
+`HasNext()`.
+
+See: link:https://issues.apache.org/jira/browse/TINKERPOP-1921[TINKERPOP-1921]
+
 == TinkerPop 3.3.7
 
 *Release Date: May 28, 2019*