From 08dd26690cc40be557f1551b67c14622e4c0977b Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Thu, 15 Feb 2024 17:04:12 +0000 Subject: [PATCH 1/3] Update version and release notes --- RELEASE_NOTES_LATEST.md | 6 +++--- VERSION | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE_NOTES_LATEST.md b/RELEASE_NOTES_LATEST.md index be448e41..e40e52b6 100644 --- a/RELEASE_NOTES_LATEST.md +++ b/RELEASE_NOTES_LATEST.md @@ -7,7 +7,7 @@ Documentation: https://typedb.com/docs/clients/2.x/clients Available from https://crates.io/crates/typedb-protocol ```sh -cargo add typedb-protocol@2.26.6-rc0 +cargo add typedb-protocol@2.26.6 ``` #### For Node.js through npm @@ -15,11 +15,11 @@ cargo add typedb-protocol@2.26.6-rc0 Available from https://www.npmjs.com/package/typedb-protocol ```sh -npm install typedb-protocol@2.26.6-rc0 +npm install typedb-protocol@2.26.6 ``` or ```sh -yarn add typedb-protocol@2.26.6-rc0 +yarn add typedb-protocol@2.26.6 ``` diff --git a/VERSION b/VERSION index 74111246..16b93267 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.26.6-rc0 +2.26.6 From acc842a260af0081b468b6298343cf59c365dd12 Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Thu, 15 Feb 2024 17:13:11 +0000 Subject: [PATCH 2/3] maven update --- dependencies/maven/artifacts.snapshot | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/dependencies/maven/artifacts.snapshot b/dependencies/maven/artifacts.snapshot index 95f29654..54b8495d 100644 --- a/dependencies/maven/artifacts.snapshot +++ b/dependencies/maven/artifacts.snapshot @@ -1,11 +1,10 @@ @maven//:com_eclipsesource_minimal_json_minimal_json_0_9_5 @maven//:com_electronwill_night_config_core_3_6_5 @maven//:com_electronwill_night_config_toml_3_6_5 -@maven//:com_fasterxml_jackson_core_jackson_core_2_11_3 @maven//:com_google_android_annotations_4_1_1_4 @maven//:com_google_api_grpc_proto_google_common_protos_2_9_0 -@maven//:com_google_auth_google_auth_library_credentials_0_22_0 -@maven//:com_google_auth_google_auth_library_oauth2_http_0_22_0 +@maven//:com_google_auth_google_auth_library_credentials_1_6_0 +@maven//:com_google_auth_google_auth_library_oauth2_http_1_6_0 @maven//:com_google_auto_value_auto_value_1_9 @maven//:com_google_auto_value_auto_value_annotations_1_9 @maven//:com_google_code_findbugs_jsr305_3_0_2 @@ -15,7 +14,7 @@ @maven//:com_google_guava_guava_30_1_jre @maven//:com_google_guava_listenablefuture_9999_0_empty_to_avoid_conflict_with_guava @maven//:com_google_http_client_google_http_client_1_34_2 -@maven//:com_google_http_client_google_http_client_jackson2_1_37_0 +@maven//:com_google_http_client_google_http_client_gson_1_41_4 @maven//:com_google_j2objc_j2objc_annotations_1_3 @maven//:com_google_protobuf_protobuf_java @maven//:com_google_re2j_re2j_1_6 From f077097e996b07de425491302e07357a5645c060 Mon Sep 17 00:00:00 2001 From: Dmitrii Ubskii <18616863+dmitrii-ubskii@users.noreply.github.com> Date: Thu, 15 Feb 2024 17:15:21 +0000 Subject: [PATCH 3/3] explicitly exclude generated bazel cache files --- BUILD | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BUILD b/BUILD index 40f4c49a..3ee61436 100644 --- a/BUILD +++ b/BUILD @@ -32,6 +32,10 @@ checkstyle_test( "WORKSPACE", ".factory/automation.yml", ]), + exclude = [ + ".bazel-remote-cache.rc", + ".bazel-cache-credential.json", + ], license_type = "agpl-header", size = "small", )