updated changelog and upgrade docs
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/46612842 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/46612842 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/46612842 Branch: refs/heads/TINKERPOP-1827 Commit: 4661284292306fecb67fbcc46617af97b3b7762f Parents: 3b651ff Author: davebshow <davebs...@gmail.com> Authored: Tue Nov 7 09:40:05 2017 -0800 Committer: davebshow <davebs...@gmail.com> Committed: Tue Nov 7 09:40:05 2017 -0800 ---------------------------------------------------------------------- CHANGELOG.asciidoc | 1 + docs/src/upgrade/release-3.2.x-incubating.asciidoc | 9 +++++++++ 2 files changed, 10 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/46612842/CHANGELOG.asciidoc ---------------------------------------------------------------------- diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index fcba906..acfa892 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -23,6 +23,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima [[release-3-2-7]] === TinkerPop 3.2.7 (Release Date: NOT OFFICIALLY RELEASED YET) +* Added core GraphSON classes for Gremlin-Python: `UUID`, `Date`, and `Timestamp`. * `TraversalVertexProgram` ``profile()` now accounts for worker iteration in `GraphComputer` OLAP. * Added a test for self-edges and fixed `Neo4jVertex` to provided repeated self-edges on `BOTH`. * Better respected permissions on the `plugins.txt` file and prevented writing if marked as read-only. http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/46612842/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 60fd320..9be51f9 100644 --- a/docs/src/upgrade/release-3.2.x-incubating.asciidoc +++ b/docs/src/upgrade/release-3.2.x-incubating.asciidoc @@ -29,6 +29,15 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima Please see the link:https://github.com/apache/tinkerpop/blob/3.2.7/CHANGELOG.asciidoc#release-3-2-7[changelog] for a complete list of all the modifications that are part of this release. +==== Gremlin-Python Core Types +With the addition of `UUID`, `Date`, and `Timestamp`, Gremlin-Python now implements serializers for all core GraphSON types. Users +that were using other types to represent this data can now use the Python classes `datetime.datetime` and`uuid.UUID` in GLV traversals. +Since Python does not support a native `Timestamp` object, Gremlin-Python now offers a dummy class `Timestamp`, which allows +users to wrap a float and submit it to the Gremlin Server as a `Timestamp` GraphSON type. `Timestamp` can be found in +`gremlin_python.statics`. + +See: link:https://issues.apache.org/jira/browse/TINKERPOP-1807[TINKERPOP-1807] + ==== Embedded Remote Connection As Gremlin Language Variants (GLVs) expand their usage and use of `withRemote()` becomes more common, the need to mock