From fa60d32a969190760d7c887231dea8bda97d50b2 Mon Sep 17 00:00:00 2001 From: Georgii Novoselov Date: Fri, 25 Oct 2024 14:34:19 +0100 Subject: [PATCH] Update version to 3.0.0-alpha-7 --- RELEASE_NOTES_LATEST.md | 40 ++++----------------------- VERSION | 2 +- dependencies/vaticle/repositories.bzl | 2 +- 3 files changed, 7 insertions(+), 37 deletions(-) diff --git a/RELEASE_NOTES_LATEST.md b/RELEASE_NOTES_LATEST.md index f878ee7..bd18c3d 100644 --- a/RELEASE_NOTES_LATEST.md +++ b/RELEASE_NOTES_LATEST.md @@ -1,49 +1,19 @@ ## Distribution -Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.0.0-alpha-6 +Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.0.0-alpha-7 ## New Features -- **Add fetch queries result printing.** We add `ConceptDocument` printer option to show the results of `fetch` - queries. - - That's how we print the `match` and `fetch` queries results now: - ``` - hi::read> match $x isa! person; - - Finished validation and compilation... - Streaming answers... - -------- - $x | iid 0x1e00000000000000000000 isa person - -------- - - Finished. Total answers: 1 - hi::read> match $x isa! person; fetch {$x.*}; - - Finished validation and compilation... - Streaming documents... - - { - "age": [ 25 ], - "balance": [ "1234567890.000123456789" ], - "birth-date": [ "2024-09-20" ], - "birth-time": [ "1999-02-26T12:15:05.000000000" ], - "current-time": [ "2024-09-20T16:40:05.000000000 Europe/London" ], - "current-time-off": [ "2024-09-20T16:40:05.028129323+05:45" ], - "expiration": [ "P1Y10M7DT15H44M5.003948920S" ], - "is-new": [ true ], - "name": [ "John" ], - "success": [ 66.6 ] - } - - Finished. Total answers: 1 - ``` ## Bugs Fixed +- **Update driver to eliminate redundant error message on transactions opening** + We eliminate the wrong error shown in Console when opening a transaction. ## Code Refactors ## Other Improvements + + diff --git a/VERSION b/VERSION index 3be842b..0623510 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0-alpha-6 +3.0.0-alpha-7 diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index 85a84a9..001d194 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -15,5 +15,5 @@ def vaticle_typedb_driver(): git_repository( name = "vaticle_typedb_driver", remote = "https://github.com/typedb/typedb-driver", - tag = "3.0.0-alpha-6", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver + tag = "3.0.0-alpha-7", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver )