Skip to content

Commit 72773d3

Browse files
Prepare release 3.7.0-rc0 (#311)
## Usage and product changes We update the dependencies and bump the version to 3.7.0-rc0. ## Implementation
1 parent cd6ea50 commit 72773d3

File tree

3 files changed

+5
-30
lines changed

3 files changed

+5
-30
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 2 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,13 @@
11
## Distribution
22

3-
Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.5.4
3+
Download from TypeDB Package Repository: https://cloudsmith.io/~typedb/repos/public-release/packages/?q=name:^typedb-console+version:3.7.0-rc0
44

55

66
## New Features
77

88

99
## Bugs Fixed
10-
- **Fix optional argument parsing and add tests**
11-
12-
We fix a reported error where optional arguments (such as the sha for a `source` command) would cause errors when not present in a script. In particular, the next script line would be consumed as the sha.
13-
14-
For example, pasting the following script into a open transaction repl would error:
15-
```
16-
source attributes.tql
17-
source entities.tql
18-
19-
++ source /Users/joshua/Documents/vaticle/gh_vaticle/typedb-console/attributes.tql
20-
source
21-
error: **Error executing command**
22-
Expected 'attributes.tql' to have sha256 'source', but calculated 'e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855',
23-
```
24-
25-
We fix this by annotating which commands are multiline and which are single line. Single-line commands always stop parsing at a newline. Only queries are allowed to be multiline at this point in time.
26-
27-
We also add a new assembly test, which runs an extensive script testing various parts of Console:
28-
29-
- user management
30-
- database management
31-
- import/export
32-
- transaction management
33-
- single line and multi-line queries
34-
35-
10+
3611

3712
## Code Refactors
3813

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.5.4
1+
3.7.0-rc0

dependencies/typedb/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ def typedb_driver():
1515
git_repository(
1616
name = "typedb_driver",
1717
remote = "https://github.com/typedb/typedb-driver",
18-
tag = "3.5.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
18+
tag = "3.7.0-rc3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
1919
)
2020

2121
def typeql():
2222
git_repository(
2323
name = "typeql",
2424
remote = "https://github.com/typedb/typeql",
25-
tag = "3.5.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
25+
tag = "3.7.0-rc0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @typedb_driver
2626
)

0 commit comments

Comments
 (0)