Skip to content

Commit cd37503

Browse files
authored
Merge for 2.26.6 release (#199)
## Release notes: usage and product changes We merge development into master for 2.26.6 release.
2 parents db18f9f + 1611af8 commit cd37503

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

.factory/automation.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,14 @@ build:
3333
build:
3434
image: vaticle-ubuntu-22.04
3535
command: |
36+
bazel run @vaticle_dependencies//tool/bazelinstall:remote_cache_setup.sh
3637
bazel build //...
3738
bazel run @vaticle_dependencies//tool/checkstyle:test-coverage
3839
bazel test $(bazel query 'kind(checkstyle_test, //...)') --test_output=errors
3940
build-dependency:
4041
image: vaticle-ubuntu-22.04
4142
command: |
43+
bazel run @vaticle_dependencies//tool/bazelinstall:remote_cache_setup.sh
4244
dependencies/maven/update.sh
4345
git diff --exit-code dependencies/maven/artifacts.snapshot
4446
bazel run @vaticle_dependencies//tool/unuseddeps:unused-deps -- list
@@ -49,6 +51,7 @@ build:
4951
dependencies: [build, build-dependency]
5052
image: vaticle-ubuntu-22.04
5153
command: |
54+
bazel run @vaticle_dependencies//tool/bazelinstall:remote_cache_setup.sh
5255
export DEPLOY_CRATE_TOKEN=$REPO_TYPEDB_CRATES_TOKEN
5356
bazel run --define version=$(git rev-parse HEAD) //grpc/rust:deploy_crate -- snapshot
5457
deploy-npm-snapshot:

BUILD

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ checkstyle_test(
3232
"WORKSPACE",
3333
".factory/automation.yml",
3434
]),
35+
exclude = [
36+
".bazel-remote-cache.rc",
37+
".bazel-cache-credential.json",
38+
],
3539
license_type = "agpl-header",
3640
size = "small",
3741
)

RELEASE_NOTES_LATEST.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ Documentation: https://typedb.com/docs/clients/2.x/clients
77
Available from https://crates.io/crates/typedb-protocol
88

99
```sh
10-
cargo add typedb-protocol@2.26.6-rc0
10+
cargo add typedb-protocol@2.26.6
1111
```
1212

1313
#### For Node.js through npm
1414

1515
Available from https://www.npmjs.com/package/typedb-protocol
1616

1717
```sh
18-
npm install typedb-protocol@2.26.6-rc0
18+
npm install typedb-protocol@2.26.6
1919
```
2020
or
2121
```sh
22-
yarn add typedb-protocol@2.26.6-rc0
22+
yarn add typedb-protocol@2.26.6
2323
```
2424

2525

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.26.6-rc0
1+
2.26.6

dependencies/maven/artifacts.snapshot

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
@maven//:com_eclipsesource_minimal_json_minimal_json_0_9_5
22
@maven//:com_electronwill_night_config_core_3_6_5
33
@maven//:com_electronwill_night_config_toml_3_6_5
4-
@maven//:com_fasterxml_jackson_core_jackson_core_2_11_3
54
@maven//:com_google_android_annotations_4_1_1_4
65
@maven//:com_google_api_grpc_proto_google_common_protos_2_9_0
7-
@maven//:com_google_auth_google_auth_library_credentials_0_22_0
8-
@maven//:com_google_auth_google_auth_library_oauth2_http_0_22_0
6+
@maven//:com_google_auth_google_auth_library_credentials_1_6_0
7+
@maven//:com_google_auth_google_auth_library_oauth2_http_1_6_0
98
@maven//:com_google_auto_value_auto_value_1_9
109
@maven//:com_google_auto_value_auto_value_annotations_1_9
1110
@maven//:com_google_code_findbugs_jsr305_3_0_2
@@ -15,7 +14,7 @@
1514
@maven//:com_google_guava_guava_30_1_jre
1615
@maven//:com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava
1716
@maven//:com_google_http_client_google_http_client_1_34_2
18-
@maven//:com_google_http_client_google_http_client_jackson2_1_37_0
17+
@maven//:com_google_http_client_google_http_client_gson_1_41_4
1918
@maven//:com_google_j2objc_j2objc_annotations_1_3
2019
@maven//:com_google_protobuf_protobuf_java
2120
@maven//:com_google_re2j_re2j_1_6

dependencies/vaticle/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ def vaticle_dependencies():
2121
git_repository(
2222
name = "vaticle_dependencies",
2323
remote = "https://github.com/vaticle/dependencies",
24-
commit = "cd00aa9bc16bc2eb857b9b5e4d7a301bf19908dc", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
24+
commit = "08d4e3bafb5a90db76eb5188be6f90bee564eb01", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies
2525
)

0 commit comments

Comments
 (0)