diff --git a/.bazelrc b/.bazelrc index 4a7cb03..a463249 100644 --- a/.bazelrc +++ b/.bazelrc @@ -7,3 +7,7 @@ try-import ./.bazel-remote-cache.rc build --incompatible_strict_action_env --java_language_version=11 --javacopt='--release 11' --enable_runfiles run --incompatible_strict_action_env --java_runtime_version=remotejdk_11 test --incompatible_strict_action_env --test_env=PATH --cache_test_results=no --java_runtime_version=remotejdk_11 + +build --@aspect_rules_ts//ts:skipLibCheck=always +fetch --@aspect_rules_ts//ts:skipLibCheck=always +query --@aspect_rules_ts//ts:skipLibCheck=always diff --git a/RELEASE_NOTES_LATEST.md b/RELEASE_NOTES_LATEST.md index bfc2af7..73df692 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.28.0 +cargo add typedb-protocol@2.28.4 ``` #### For Node.js through npm @@ -15,11 +15,11 @@ cargo add typedb-protocol@2.28.0 Available from https://www.npmjs.com/package/typedb-protocol ```sh -npm install typedb-protocol@2.28.0 +npm install typedb-protocol@2.28.4 ``` or ```sh -yarn add typedb-protocol@2.28.0 +yarn add typedb-protocol@2.28.4 ``` @@ -33,6 +33,4 @@ yarn add typedb-protocol@2.28.0 ## Other Improvements -- **Replace AGPL v3.0 with MPL 2.0** - - +- **Update dependencies for TypeScript rules build** diff --git a/VERSION b/VERSION index 90efbd4..d422cdf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.28.0 +2.28.4 diff --git a/dependencies/maven/artifacts.snapshot b/dependencies/maven/artifacts.snapshot index 32edc38..a734b59 100644 --- a/dependencies/maven/artifacts.snapshot +++ b/dependencies/maven/artifacts.snapshot @@ -1,9 +1,9 @@ @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_annotations_2_10_1 -@maven//:com_fasterxml_jackson_core_jackson_core_2_10_1 -@maven//:com_fasterxml_jackson_core_jackson_databind_2_10_1 +@maven//:com_fasterxml_jackson_core_jackson_annotations_2_16_0 +@maven//:com_fasterxml_jackson_core_jackson_core_2_16_0 +@maven//:com_fasterxml_jackson_core_jackson_databind_2_16_0 @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_1_6_0 @@ -25,6 +25,7 @@ @maven//:com_googlecode_java_diff_utils_diffutils_1_3_0 @maven//:com_squareup_okhttp_okhttp_2_7_5 @maven//:com_squareup_okio_okio_1_17_5 +@maven//:com_vdurmont_semver4j_3_1_0 @maven//:commons_codec_commons_codec_1_13 @maven//:commons_io_commons_io_2_3 @maven//:commons_logging_commons_logging_1_2 diff --git a/dependencies/vaticle/repositories.bzl b/dependencies/vaticle/repositories.bzl index 1103514..1f9cd63 100644 --- a/dependencies/vaticle/repositories.bzl +++ b/dependencies/vaticle/repositories.bzl @@ -8,5 +8,5 @@ def vaticle_dependencies(): git_repository( name = "vaticle_dependencies", remote = "https://github.com/vaticle/dependencies", - commit = "e349dcd1ee646f679de254f9bea10d5cab61e606", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies + commit = "b89c25993c1e4f11b367435b83ac19bb658bb712", # sync-marker: do not remove this comment, this is used for sync-dependencies by @vaticle_dependencies ) diff --git a/grpc/nodejs/BUILD b/grpc/nodejs/BUILD index b86a5e3..d89784f 100644 --- a/grpc/nodejs/BUILD +++ b/grpc/nodejs/BUILD @@ -63,6 +63,7 @@ ts_project( ":node_modules/@types/node", ":node_modules/typescript", ], + transpiler = "tsc", visibility = ["//visibility:public"], )