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

Commit d924037

Browse files
Update @vaticle_dependencies and fix build
1 parent c189e1a commit d924037

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.grabl/automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -276,8 +276,8 @@ release:
276276
export ARTIFACT_USERNAME=$REPO_VATICLE_USERNAME
277277
export ARTIFACT_PASSWORD=$REPO_VATICLE_PASSWORD
278278
bazel run @vaticle_dependencies//distribution/artifact:create-netrc
279-
export CREATE_NOTES_TOKEN=$REPO_GITHUB_TOKEN
280-
bazel run @vaticle_dependencies//tool/release/createnotes:bin -- $GRABL_OWNER $GRABL_REPO $GRABL_COMMIT $(cat VERSION) ./RELEASE_TEMPLATE.md
279+
export NOTES_CREATE_TOKEN=$REPO_GITHUB_TOKEN
280+
bazel run @vaticle_dependencies//tool/release/notes:create -- $GRABL_OWNER $GRABL_REPO $GRABL_COMMIT $(cat VERSION) ./RELEASE_TEMPLATE.md
281281
export DEPLOY_GITHUB_TOKEN=$REPO_GITHUB_TOKEN
282282
bazel run --define version=$(cat VERSION) //:deploy-github -- $GRABL_COMMIT
283283
deploy-pip-release:

BUILD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ load("@vaticle_bazel_distribution//pip:rules.bzl", "assemble_pip", "deploy_pip")
2828
load("@vaticle_bazel_distribution_pip//:requirements.bzl", vaticle_bazel_distribution_requirement = "requirement")
2929
load("@vaticle_bazel_distribution//github:rules.bzl", "deploy_github")
3030

31-
load("@vaticle_dependencies//tool/release:rules.bzl", "release_validate_python_deps")
31+
load("@vaticle_dependencies//tool/release/deps:rules.bzl", "release_validate_python_deps")
3232
load("@vaticle_dependencies//tool/checkstyle:rules.bzl", "checkstyle_test")
3333
load("@vaticle_dependencies//distribution:deployment.bzl", "deployment")
3434
load(":deployment.bzl", github_deployment = "deployment")
@@ -116,6 +116,6 @@ filegroup(
116116
data = [
117117
"@vaticle_dependencies//tool/checkstyle:test-coverage",
118118
"@vaticle_dependencies//distribution/artifact:create-netrc",
119-
"@vaticle_dependencies//tool/release/createnotes:bin",
119+
"@vaticle_dependencies//tool/release/notes:create",
120120
],
121121
)

dependencies/vaticle/artifacts.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def vaticle_typedb_artifacts():
2929
artifact_name = "typedb-server-{platform}-{version}.{ext}",
3030
tag_source = deployment["artifact.release"],
3131
commit_source = deployment["artifact.snapshot"],
32-
commit = "2367157bdd898e474198726d0ef5446372a73314",
32+
tag = "2.6.1",
3333
)
3434

3535
def vaticle_typedb_cluster_artifacts():

dependencies/vaticle/repositories.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ def vaticle_dependencies():
2525
git_repository(
2626
name = "vaticle_dependencies",
2727
remote = "https://github.com/vaticle/dependencies",
28-
commit = "4d6ca1b6d7fe93e4c11b18aeba5d5889b928aadd", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
28+
commit = "aa6eb2eab10b032c0ead898b0a5eead1bea057c0", # 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.6.0" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
35+
tag = "2.6.1" # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common
3636
)
3737

3838
def vaticle_typedb_behaviour():

0 commit comments

Comments
 (0)