From 7698c14a1381614775e57b9564c4e429096df973 Mon Sep 17 00:00:00 2001 From: joshua Date: Fri, 15 Dec 2023 15:33:47 +0000 Subject: [PATCH] Update VERSION and dependencies for 2.26.0 --- RELEASE_NOTES_LATEST.md | 10 +++++----- VERSION | 2 +- dependencies/vaticle/artifacts.bzl | 2 +- dependencies/vaticle/repositories.bzl | 8 ++++---- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/RELEASE_NOTES_LATEST.md b/RELEASE_NOTES_LATEST.md index f1932640..916e1641 100644 --- a/RELEASE_NOTES_LATEST.md +++ b/RELEASE_NOTES_LATEST.md @@ -21,16 +21,16 @@ which versions of Studio are compatible with which versions of TypeDB server. ## Bugs Fixed -- **Update Cloud error code prefix** - - * We've updated the cloud error prefix in places where we detect certain errors. - - + ## Code Refactors +- **Replace all instances of 'enterprise' with 'cloud'** + + We replace the term 'enterprise' with 'cloud', to reflect the new consistent terminology used throughout Vaticle. ## Other Improvements +- **Remove approval step in CircleCI release workflow** diff --git a/VERSION b/VERSION index 79e76204..7a25c70f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.25.11 +2.26.0 diff --git a/dependencies/vaticle/artifacts.bzl b/dependencies/vaticle/artifacts.bzl index 878ab459..8c4556fa 100644 --- a/dependencies/vaticle/artifacts.bzl +++ b/dependencies/vaticle/artifacts.bzl @@ -25,5 +25,5 @@ def vaticle_typedb_artifact(): artifact_name = "typedb-server-{platform}-{version}.{ext}", tag_source = deployment["artifact.release"], commit_source = deployment["artifact.snapshot"], - commit = "525ac0f5e072242c1d2f360379e9622397497ef2", + tag = "2.26.0", ) diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index b5191383..18bd0cee 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -21,14 +21,14 @@ def vaticle_bazel_distribution(): git_repository( name = "vaticle_bazel_distribution", remote = "https://github.com/vaticle/bazel-distribution", - commit = "724aa176da48d126296bd4d3ef07c4905b8a82c8", + commit = "bc2fcd5d0caf521d54acf2b7dfe214352e0292d6", ) def vaticle_dependencies(): git_repository( name = "vaticle_dependencies", remote = "https://github.com/vaticle/dependencies", - commit = "1200b4aef118e75ca070c4944e9459b2aab7982a", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies + commit = "371a67999d92b4d0833cd5e016ec01c6278e72c4", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies ) def vaticle_force_graph(): @@ -42,12 +42,12 @@ def vaticle_typedb_common(): git_repository( name = "vaticle_typedb_common", remote = "https://github.com/vaticle/typedb-common", - commit = "4d2adde1cb75a40ca1629eed258d2a7dcda9f5e3", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common + tag = "2.26.0", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_common ) def vaticle_typedb_driver(): git_repository( name = "vaticle_typedb_driver", remote = "https://github.com/vaticle/typedb-driver", - commit = "927343bbb09ad12ba74d88c94d443f3f81cc2e09", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver + tag = "2.26.1", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_typedb_driver )