Skip to content

Commit 405d204

Browse files
Update VERSION and notes
1 parent 1153bbe commit 405d204

File tree

3 files changed

+27
-8
lines changed

3 files changed

+27
-8
lines changed

RELEASE_NOTES_LATEST.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,35 @@
11

22
## New Features
33

4-
- **Upgrade to the latest TypeDB Driver, which includes improved error messages**
5-
64

75
## Bugs Fixed
86

97

108
## Code Refactors
11-
9+
- **Replace all instances of 'enterprise' with 'cloud'**
10+
11+
We replace the term 'enterprise' with 'cloud', to reflect the new consistent terminology used throughout Vaticle.
12+
In particular, this means that to connect to a Cloud instance (previously Enterprise), `typedb console --cloud <address>` replaces `typedb console --enterprise <address>`.
13+
14+
- **Update command line interface**
15+
16+
We update the CLI options to use the more distinct `--core` flag for connecting to the core server, mirroring `--enterprise` (note: subsequently renamed to `--cloud`).
17+
18+
Connecting to TypeDB Core:
19+
```
20+
typedb console --core=<address>
21+
```
22+
Connecting to TypeDB Cloud:
23+
```
24+
typedb console --cloud=<address> --username=<username> --password --tls-enabled
25+
```
26+
27+
See https://github.com/vaticle/typedb/issues/6942 for full details.
28+
29+
We also improve the UX of the windows version of the entry point. Console no longer opens in a new window, but rather begins the REPL in the current command line window.
30+
1231

1332
## Other Improvements
14-
- **Add ulimits to mac and linux releases**
33+
- **Add aliases for encryption enable to match Cloud options more closely**
1534

1635

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.25.7
1+
2.26.0

dependencies/vaticle/repositories.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ def vaticle_dependencies():
2121
git_repository(
2222
name = "vaticle_dependencies",
2323
remote = "https://github.com/vaticle/dependencies",
24-
commit = "1200b4aef118e75ca070c4944e9459b2aab7982a", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
24+
commit = "371a67999d92b4d0833cd5e016ec01c6278e72c4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2525
)
2626

2727
def vaticle_typedb_common():
2828
git_repository(
2929
name = "vaticle_typedb_common",
3030
remote = "https://github.com/vaticle/typedb-common",
31-
commit = "4d2adde1cb75a40ca1629eed258d2a7dcda9f5e3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
31+
tag = "2.26.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
3232
)
3333

3434
def vaticle_typedb_driver():
3535
git_repository(
3636
name = "vaticle_typedb_driver",
3737
remote = "https://github.com/vaticle/typedb-driver",
38-
commit = "927343bbb09ad12ba74d88c94d443f3f81cc2e09", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver
38+
tag = "2.26.1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver
3939
)

0 commit comments

Comments
 (0)