Skip to content

Commit 087541f

Browse files
Update VERSION, dependencies, and WORKSPACE
1 parent 5db0f9e commit 087541f

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ You can provide several command arguments when running console in the terminal.
2424
- `--username=<username>` : TypeDB Cluster username to connect with.
2525
- `--password` : Interactively enter password to connect to TypeDB Cluster with.
2626
- `--script=<script>` : Run commands in the script file in non-interactive mode.
27+
- `--tls-enabled`: Enable TLS for connecting to TypeDB Cluster.
28+
- `--tls-root-ca`: Path to root CA certificate for TLS encryption.
2729
- `--command=<command1> --command=<command2> ...` : Run commands in non-interactive mode.
2830
- `-V, --version` : Print version information and exit.
2931
- `-h, --help` : Show help message.
@@ -72,8 +74,8 @@ Console also offers command completion, accessible with a `tab` keypress.
7274
- `<query>` : Once you're in the transaction REPL, the terminal immediately accepts a multi-line TypeQL query, and will execute it when you hit enter twice. For example:
7375
```
7476
my-typedb-database::schema::write> define
75-
name sub attribute, value string;
76-
person sub entity, owns name;
77+
name sub attribute, value string;
78+
person sub entity, owns name;
7779
7880
Concepts have been defined
7981
```

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.14.2
1+
2.15.0

WORKSPACE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@ java_deps()
3535
# Load //builder/kotlin
3636
load("@vaticle_dependencies//builder/kotlin:deps.bzl", kotlin_deps = "deps")
3737
kotlin_deps()
38-
load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains")
38+
load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories")
3939
kotlin_repositories()
40+
load("@io_bazel_rules_kotlin//kotlin:core.bzl", "kt_register_toolchains")
4041
kt_register_toolchains()
4142

4243
# Load //builder/python

dependencies/vaticle/repositories.bzl

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

2727
def vaticle_typedb_common():
@@ -35,5 +35,5 @@ def vaticle_typedb_client_java():
3535
git_repository(
3636
name = "vaticle_typedb_client_java",
3737
remote = "https://github.com/vaticle/typedb-client-java",
38-
tag = "2.14.2", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_client_java
38+
tag = "2.14.3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_client_java
3939
)

0 commit comments

Comments
 (0)