Skip to content

Commit 753f864

Browse files
ahumeskycopybara-github
authored andcommitted
Update rules_android to Protobuf 29.3.
Matches rules_jvm_external update to 29.3: bazel-contrib/rules_jvm_external@0b5d9da One blocker for bazel-contrib/rules_jvm_external#1297 PiperOrigin-RevId: 728683174 Change-Id: I36d9e3e87a7a63203fa9823b6d5a007489b7def1
1 parent de5a97f commit 753f864

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True)
1414
rules_java_toolchains = use_extension("@rules_java//java:extensions.bzl", "toolchains")
1515
use_repo(rules_java_toolchains, "remote_java_tools")
1616

17-
bazel_dep(name = "protobuf", version = "29.0", repo_name = "com_google_protobuf")
17+
bazel_dep(name = "protobuf", version = "29.3", repo_name = "com_google_protobuf")
1818
bazel_dep(name = "rules_jvm_external", version = "6.6")
1919
bazel_dep(name = "bazel_skylib", version = "1.0.3")
2020
bazel_dep(name = "rules_robolectric", version = "4.14.1.2", repo_name = "robolectric")
@@ -85,8 +85,8 @@ maven.install(
8585
"jakarta.inject:jakarta.inject-api:2.0.1",
8686
"junit:junit:4.13.2",
8787
"com.beust:jcommander:1.82",
88-
"com.google.protobuf:protobuf-java:4.29.0",
89-
"com.google.protobuf:protobuf-java-util:4.29.0",
88+
"com.google.protobuf:protobuf-java:4.29.3",
89+
"com.google.protobuf:protobuf-java-util:4.29.3",
9090
"com.google.code.findbugs:jsr305:3.0.2",
9191
"androidx.databinding:databinding-compiler:8.7.0",
9292
"org.ow2.asm:asm:9.6",

defs.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ def rules_android_workspace():
6767
"jakarta.inject:jakarta.inject-api:2.0.1",
6868
"junit:junit:4.13.2",
6969
"com.beust:jcommander:1.82",
70-
"com.google.protobuf:protobuf-java:4.29.0",
71-
"com.google.protobuf:protobuf-java-util:4.29.0",
70+
"com.google.protobuf:protobuf-java:4.29.3",
71+
"com.google.protobuf:protobuf-java-util:4.29.3",
7272
"com.google.code.findbugs:jsr305:3.0.2",
7373
"androidx.databinding:databinding-compiler:8.7.0",
7474
"org.ow2.asm:asm:9.6",

prereqs.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ def rules_android_prereqs(dev_mode = False):
5353
url = "https://github.com/bazelbuild/rules_jvm_external/releases/download/%s/rules_jvm_external-%s.tar.gz" % (RULES_JVM_EXTERNAL_TAG, RULES_JVM_EXTERNAL_TAG),
5454
)
5555

56-
PROTOBUF_VERSION = "29.0"
57-
PROTOBUF_HASH = "10a0d58f39a1a909e95e00e8ba0b5b1dc64d02997f741151953a2b3659f6e78c"
56+
PROTOBUF_VERSION = "29.3"
57+
PROTOBUF_HASH = "008a11cc56f9b96679b4c285fd05f46d317d685be3ab524b2a310be0fbad987e"
5858
maybe(
5959
http_archive,
6060
name = "com_google_protobuf",

0 commit comments

Comments
 (0)