Skip to content

Commit 8c3ea6b

Browse files
chore(deps): update dependency buildifier_prebuilt to v8 (#491)
* chore(deps): update dependency buildifier_prebuilt to v8 * no more native java rules - also update some rust deps - make cache uploads async --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andy Aylward <[email protected]>
1 parent 49cc1dc commit 8c3ea6b

File tree

13 files changed

+62
-57
lines changed

13 files changed

+62
-57
lines changed

.bazelrc

+3
Original file line numberDiff line numberDiff line change
@@ -46,3 +46,6 @@ common --tool_java_runtime_version=remotejdk_21
4646

4747
common --test_verbose_timeout_warnings
4848
common --test_output=errors
49+
50+
# don't block on remote-cache uploads
51+
common --bes_upload_mode=fully_async

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ prost = { version = "0.13.4" }
2121
prost-types = { version = "0.13.4", default-features = false }
2222
tonic = { version = "0.12.3", features = ["transport"] }
2323
tonic-build = "0.12.3"
24-
tokio = { version = "1.42.0", default-features = false, features = ["macros", "net", "rt-multi-thread", "signal"] }
24+
tokio = { version = "1.43.0", default-features = false, features = ["macros", "net", "rt-multi-thread", "signal"] }
2525
protoc-gen-tonic = "0.4.1"
2626
protoc-gen-prost = "0.4.0"
2727
mongodb = "3.1.1"
2828
serde = { version = "1.0.217", features = ["derive"] }
2929
dotenv = "0.15.0"
3030
futures = "0.3.31"
31-
uuid = { version = "1.11.0", features = ["v4", "fast-rng"]}
31+
uuid = { version = "1.11.1", features = ["v4", "fast-rng"]}

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ bazel_dep(name = "bazel_features", version = "1.23.0")
3434
bazel_dep(name = "rules_rust", version = "0.54.1")
3535
bazel_dep(name = "gazelle", version = "0.41.0", repo_name = "bazel_gazelle")
3636

37-
bazel_dep(name = "buildifier_prebuilt", version = "7.3.1", dev_dependency = True)
37+
bazel_dep(name = "buildifier_prebuilt", version = "8.0.0", dev_dependency = True)
3838

3939
####### RUST ########
4040
rust = use_extension("@rules_rust//rust:extensions.bzl", "rust")

MODULE.bazel.lock

+31-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jvm/src/main/java/com/muchq/cards/BUILD.bazel

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "cards",
35
srcs = [

jvm/src/main/java/com/muchq/cards/castle/BUILD.bazel

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "castle",
35
srcs = [

jvm/src/main/java/com/muchq/imagine/BUILD.bazel

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
load("@rules_java//java:java_binary.bzl", "java_binary")
2+
load("@rules_java//java:java_library.bzl", "java_library")
3+
14
java_library(
25
name = "imagine",
36
srcs = [

jvm/src/main/java/com/muchq/json/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "json",
35
srcs = ["JsonUtils.java"],

jvm/src/main/java/com/muchq/logging/BUILD.bazel

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "logging",
35
resources = ["//jvm/src/main/resources:logback_config"],

jvm/src/main/java/com/muchq/yochat/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_binary.bzl", "java_binary")
2+
13
java_binary(
24
name = "yochat",
35
srcs = glob(["*.java"]),

jvm/src/main/java/com/muchq/yochat/lib/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "lib",
35
srcs = glob(["*.java"]),

jvm/src/test/java/com/muchq/json/utils/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
load("@rules_java//java:java_library.bzl", "java_library")
2+
13
java_library(
24
name = "utils",
35
srcs = [

0 commit comments

Comments
 (0)