From a02fe9de0e466537ec48b7b4434969f292f8e651 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 20 Oct 2025 18:55:28 +0000 Subject: [PATCH 1/3] chore(deps): update dependency com_github_grpc_grpc to v1.76.0 --- WORKSPACE.bazel | 6 +++--- bazel_example/WORKSPACE.bazel | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/WORKSPACE.bazel b/WORKSPACE.bazel index b34809f56..46e5bf74f 100644 --- a/WORKSPACE.bazel +++ b/WORKSPACE.bazel @@ -48,9 +48,9 @@ switched_rules_by_language( # gRPC. http_archive( name = "com_github_grpc_grpc", - sha256 = "4b64cbc454cc4fd0801a2823111e1d99f519c765dfa116905740f7ca2256d085", - urls = ["https://github.com/grpc/grpc/archive/v1.51.1.zip"], - strip_prefix = "grpc-1.51.1", + sha256 = "b09a005da8fa7876c9374f8857b3933242a94e40d67c72e373e8f2ccc3322a06", + urls = ["https://github.com/grpc/grpc/archive/v1.76.0.zip"], + strip_prefix = "grpc-1.76.0", ) load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps") diff --git a/bazel_example/WORKSPACE.bazel b/bazel_example/WORKSPACE.bazel index a7f72a347..9e67974b9 100644 --- a/bazel_example/WORKSPACE.bazel +++ b/bazel_example/WORKSPACE.bazel @@ -27,9 +27,9 @@ protobuf_deps() http_archive( name = "com_github_grpc_grpc", - sha256 = "4b64cbc454cc4fd0801a2823111e1d99f519c765dfa116905740f7ca2256d085", - strip_prefix = "grpc-1.51.1", - urls = ["https://github.com/grpc/grpc/archive/v1.51.1.zip"], + sha256 = "b09a005da8fa7876c9374f8857b3933242a94e40d67c72e373e8f2ccc3322a06", + strip_prefix = "grpc-1.76.0", + urls = ["https://github.com/grpc/grpc/archive/v1.76.0.zip"], ) load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps") From dc795bf8cface0ddcca08ed3f5525ebbfeaf9717 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Wed, 19 Nov 2025 10:13:39 -0800 Subject: [PATCH 2/3] add missing rules_java dependency --- bazel_example/WORKSPACE.bazel | 14 ++++++++++++++ googleapis | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/bazel_example/WORKSPACE.bazel b/bazel_example/WORKSPACE.bazel index 9e67974b9..664e88ee4 100644 --- a/bazel_example/WORKSPACE.bazel +++ b/bazel_example/WORKSPACE.bazel @@ -25,6 +25,20 @@ load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") protobuf_deps() +http_archive( + name = "rules_java", + sha256 = "b5c4b526803a5ab8ad3f0455b8a573a7a24f328a31a3a1890d1df481442c4613", + strip_prefix = "rules_java-5.1.0", + urls = [ + "https://mirror.bazel.build/github.com/bazelbuild/rules_java/releases/download/5.1.0/rules_java-5.1.0.tar.gz", + "https://github.com/bazelbuild/rules_java/releases/download/5.1.0/rules_java-5.1.0.tar.gz", + ], +) + +load("@rules_java//java:repositories.bzl", "java_repositories") + +java_repositories() + http_archive( name = "com_github_grpc_grpc", sha256 = "b09a005da8fa7876c9374f8857b3933242a94e40d67c72e373e8f2ccc3322a06", diff --git a/googleapis b/googleapis index 9841522f9..d931df43c 160000 --- a/googleapis +++ b/googleapis @@ -1 +1 @@ -Subproject commit 9841522f92c6542aad0049d98721cba04f541f29 +Subproject commit d931df43c4686be708ddfee74ee3be64571af0a2 From 2aea648918c069897a3b1fc5895d869192f06f10 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Wed, 19 Nov 2025 10:50:47 -0800 Subject: [PATCH 3/3] fix checksum --- bazel_example/WORKSPACE.bazel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel_example/WORKSPACE.bazel b/bazel_example/WORKSPACE.bazel index 664e88ee4..77f302b88 100644 --- a/bazel_example/WORKSPACE.bazel +++ b/bazel_example/WORKSPACE.bazel @@ -27,7 +27,7 @@ protobuf_deps() http_archive( name = "rules_java", - sha256 = "b5c4b526803a5ab8ad3f0455b8a573a7a24f328a31a3a1890d1df481442c4613", + sha256 = "d974a2d6e1a534856d1b60ad6a15e57f3970d8596fbb0bb17b9ee26ca209332a", strip_prefix = "rules_java-5.1.0", urls = [ "https://mirror.bazel.build/github.com/bazelbuild/rules_java/releases/download/5.1.0/rules_java-5.1.0.tar.gz",