Skip to content

Commit

Permalink
Update version to 3.0.0-alpha-7
Browse files Browse the repository at this point in the history
  • Loading branch information
farost committed Oct 25, 2024
1 parent 5aec62b commit fa60d32
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 37 deletions.
40 changes: 5 additions & 35 deletions RELEASE_NOTES_LATEST.md
Original file line number Diff line number Diff line change
@@ -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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.0-alpha-6
3.0.0-alpha-7
2 changes: 1 addition & 1 deletion dependencies/vaticle/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit fa60d32

Please sign in to comment.