Skip to content

Commit e66d4eb

Browse files
authored
Update protobuf-javascript to support Protobuf 25.2 (#196)
* Update protobuf-javascript to support Protobuf 25.2 * Fix usage of absl::StrReplaceAll
1 parent 5a00163 commit e66d4eb

File tree

6 files changed

+69
-65
lines changed

6 files changed

+69
-65
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ permissions: read-all
66

77
# update in build.yml and codeql.yml at same time
88
env:
9-
PROTOC_VERSION: 21.7
9+
PROTOC_VERSION: 23.1
1010

1111
jobs:
1212
build:

.github/workflows/codeql.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions: read-all
1515

1616
# update in build.yml and codeql.yml at same time
1717
env:
18-
PROTOC_VERSION: 21.7
18+
PROTOC_VERSION: 23.1
1919

2020
on:
2121
push:

MODULE.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module(name = "protobuf_javascript", version = "3.21.2")
22

3-
bazel_dep(name = "protobuf", version = "21.7", repo_name = "com_google_protobuf")
3+
bazel_dep(name = "protobuf", version = "23.1", repo_name = "com_google_protobuf")
44
bazel_dep(name = "rules_pkg", version = "0.7.0")

WORKSPACE

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
44

55
http_archive(
66
name = "com_google_protobuf",
7-
urls = ["https://github.com/protocolbuffers/protobuf/archive/refs/tags/v21.7.zip"],
8-
sha256 = "e13ca6c2f1522924b8482f3b3a482427d0589ff8ea251088f7e39f4713236053",
9-
strip_prefix = "protobuf-21.7",
7+
urls = ["https://github.com/protocolbuffers/protobuf/archive/refs/tags/v23.1.zip"],
8+
sha256 = "c0ea9f4d75b37ea8e9d78ce4c670d066bcb7cebdba190fa5fc8c57b1f00c0c2c",
9+
strip_prefix = "protobuf-23.1",
1010
)
1111

1212
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")

0 commit comments

Comments
 (0)