From 15dc405fbe9ad794de2b1d5cef5c326dba3153a0 Mon Sep 17 00:00:00 2001 From: Dirk Kulawiak Date: Thu, 4 May 2023 16:35:28 +0200 Subject: [PATCH] add changelog --- docs/changelog.rst | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/changelog.rst b/docs/changelog.rst index c6b2d927f..8cc491ee5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,28 @@ Changelog ========= +Version 3.17.0 +-------------- +This minor version includes: + +- Add support for groupBy to group objects: + .. code-block:: python + + .with_group_by(properties=["caller"], groups=2, objects_per_group=3) + + +- Add support for `uuid` and `uuid[]` datatypes. +- Add `schema.exists(class)`. +- Add support for `Support GQL Get{} tunable consistency` + .. code-block:: python + + resp = ( + client.query.get("Article", ["name"]) + .with_additional("isConsistent") + .with_consistency_level(ConsistencyLevel.ALL) + .do() + ) + Version 3.16.2 -------------- This patch version includes: