Skip to content
This repository was archived by the owner on Oct 9, 2023. It is now read-only.

Commit 86c18e6

Browse files
Update Vaticle dependencies (#284)
## What is the goal of this PR? Upgrade to the latest Vaticle dependencies, and incorporate required build-system changes. ## What are the changes implemented in this PR? * Update dependencies * Update WORKSPACE files to include Kotlin in the updated way
1 parent de017e3 commit 86c18e6

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

WORKSPACE

+2-1
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,9 @@ java_deps()
3939
# Load //builder/kotlin
4040
load("@vaticle_dependencies//builder/kotlin:deps.bzl", kotlin_deps = "deps")
4141
kotlin_deps()
42-
load("@io_bazel_rules_kotlin//kotlin:kotlin.bzl", "kotlin_repositories", "kt_register_toolchains")
42+
load("@io_bazel_rules_kotlin//kotlin:repositories.bzl", "kotlin_repositories")
4343
kotlin_repositories()
44+
load("@io_bazel_rules_kotlin//kotlin:core.bzl", "kt_register_toolchains")
4445
kt_register_toolchains()
4546

4647
# Load //builder/python

dependencies/vaticle/repositories.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ def vaticle_dependencies():
2525
git_repository(
2626
name = "vaticle_dependencies",
2727
remote = "https://github.com/vaticle/dependencies",
28-
commit = "4464b506ca469f37d3b696fb2f1eda34061cdaa1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
28+
commit = "0daf20ca5efc141fc8e3f9a767a9118b6eee0980", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2929
)
3030

3131
def vaticle_typedb_common():
3232
git_repository(
3333
name = "vaticle_typedb_common",
3434
remote = "https://github.com/vaticle/typedb-common",
35-
tag = "2.12.0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
35+
tag = "2.16.0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
3636
)
3737

3838
def vaticle_typedb_behaviour():
3939
git_repository(
4040
name = "vaticle_typedb_behaviour",
4141
remote = "https://github.com/vaticle/typedb-behaviour",
42-
commit = "21ae86ac44e84c7dbb4351a9006b97a555f0a215" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_behaviour
42+
commit = "04ec1f75cc376524b3cac75af37e1716230845e0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_behaviour
4343
)

0 commit comments

Comments
 (0)