Skip to content

Commit

Permalink
Update protobuf
Browse files Browse the repository at this point in the history
  • Loading branch information
jjudd committed Nov 15, 2024
1 parent e13f20c commit 66f0c05
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
15 changes: 9 additions & 6 deletions WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -138,15 +138,18 @@ go_rules_dependencies()

go_register_toolchains(version = "1.23.0")

# Also for buildifier. Comes from
# https://github.com/bazelbuild/buildtools/blob/master/buildifier/README.md
protobuf_version = "3.19.4"
# protobuf

protobuf_tag = "28.3"

protobuf_sha256 = "5b2ff0f72e85dc1350b7bb1b4ea94d7e92e297f7a58b630e46fa6b430b5b253b"

http_archive(
name = "com_google_protobuf",
sha256 = "3bd7828aa5af4b13b99c191e8b1e884ebfa9ad371b0ce264605d347f135d2568",
strip_prefix = "protobuf-{}".format(protobuf_version),
url = "https://github.com/protocolbuffers/protobuf/archive/v{}.tar.gz".format(protobuf_version),
sha256 = protobuf_sha256,
strip_prefix = "protobuf-{}".format(protobuf_tag),
type = "zip",
url = "https://github.com/protocolbuffers/protobuf/archive/v{}.zip".format(protobuf_tag),
)

load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
Expand Down
10 changes: 5 additions & 5 deletions play_routes_compiler_cli_2_13_install.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": -1321367170,
"__RESOLVED_ARTIFACTS_HASH": -378258452,
"__INPUT_ARTIFACTS_HASH": 1429549754,
"__RESOLVED_ARTIFACTS_HASH": 1421109904,
"artifacts": {
"com.eed3si9n:shaded-jawn-parser_2.13": {
"shasums": {
Expand Down Expand Up @@ -40,10 +40,10 @@
},
"com.google.protobuf:protobuf-java": {
"shasums": {
"jar": "e8f524c2ad5965aae31b0527bf9d4e3bc19b0dfba8c05aef114fccc7f057c94d",
"sources": "7176e76e9585a151046e456029af87e35957006f5263e1343375cf7bcd871d6e"
"jar": "ba02977c0fef8b40af9f85fe69af362d8e13f2685b49a9752750b18da726157e",
"sources": "d368a684a2fd70c482dc7f842099a939b562effeee45c9a562dba8682f7133bc"
},
"version": "3.19.4"
"version": "4.28.3"
},
"com.lmax:disruptor": {
"shasums": {
Expand Down
10 changes: 5 additions & 5 deletions play_routes_compiler_cli_3_install.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"__AUTOGENERATED_FILE_DO_NOT_MODIFY_THIS_FILE_MANUALLY": "THERE_IS_NO_DATA_ONLY_ZUUL",
"__INPUT_ARTIFACTS_HASH": 1531353200,
"__RESOLVED_ARTIFACTS_HASH": -1522521253,
"__INPUT_ARTIFACTS_HASH": -476889668,
"__RESOLVED_ARTIFACTS_HASH": 838501119,
"artifacts": {
"com.eed3si9n:shaded-jawn-parser_2.13": {
"shasums": {
Expand Down Expand Up @@ -40,10 +40,10 @@
},
"com.google.protobuf:protobuf-java": {
"shasums": {
"jar": "e8f524c2ad5965aae31b0527bf9d4e3bc19b0dfba8c05aef114fccc7f057c94d",
"sources": "7176e76e9585a151046e456029af87e35957006f5263e1343375cf7bcd871d6e"
"jar": "ba02977c0fef8b40af9f85fe69af362d8e13f2685b49a9752750b18da726157e",
"sources": "d368a684a2fd70c482dc7f842099a939b562effeee45c9a562dba8682f7133bc"
},
"version": "3.19.4"
"version": "4.28.3"
},
"com.lmax:disruptor": {
"shasums": {
Expand Down
2 changes: 1 addition & 1 deletion workspace.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ load("//scala:version.bzl", "scala_2_13_version", "scala_3_version")

play_version = "3.0.4"
zinc_version = "1.10.1"
protobuf_version = "3.19.4"
protobuf_version = "4.28.3"
scopt_version = "4.1.0"

def play_routes_compiler_cli_3_repositories():
Expand Down

0 comments on commit 66f0c05

Please sign in to comment.