added Pick to the io graphson.asciidoc docs. updated CHANGELOG.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2817c01c Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2817c01c Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2817c01c Branch: refs/heads/TINKERPOP-1235 Commit: 2817c01c1ea1a8fdb17c8f3bd8a9149585926b0d Parents: fc6ce29 Author: Marko A. Rodriguez <[email protected]> Authored: Tue Oct 25 06:08:00 2016 -0600 Committer: Marko A. Rodriguez <[email protected]> Committed: Tue Oct 25 06:08:00 2016 -0600 ---------------------------------------------------------------------- CHANGELOG.asciidoc | 1 + docs/src/dev/io/graphson.asciidoc | 1 + 2 files changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2817c01c/CHANGELOG.asciidoc ---------------------------------------------------------------------- diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 4dee4c2..d2cd065 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -26,6 +26,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima TinkerPop 3.2.4 (Release Date: NOT OFFICIALLY RELEASED YET) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +* Added `Pick.none` and `Pick.any` to the serializers and importers. * Fixed a severe bug where `GraphComputer` strategies are not being loaded until the second use of the traversal source. [[release-3-2-3]] http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2817c01c/docs/src/dev/io/graphson.asciidoc ---------------------------------------------------------------------- diff --git a/docs/src/dev/io/graphson.asciidoc b/docs/src/dev/io/graphson.asciidoc index 511a0fc..5858b95 100644 --- a/docs/src/dev/io/graphson.asciidoc +++ b/docs/src/dev/io/graphson.asciidoc @@ -149,6 +149,7 @@ file.withWriter { writer -> writer.write(toJson(Operator.sum, "Operator")) writer.write(toJson(Order.incr, "Order")) writer.write(toJson(Pop.all, "Pop")) + writer.write(toJson(Pick.any, "Pick")) writer.write(toJson(org.apache.tinkerpop.gremlin.util.function.Lambda.function("{ it.get() }"), "Lambda")) tm = g.V().hasLabel('person').out().out().tree().profile().next() metrics = new org.apache.tinkerpop.gremlin.process.traversal.util.MutableMetrics(tm.getMetrics(0));
