Skip to content

Commit 04dfb94

Browse files
authored
Update BoringSSL to 2023-08-28. (#391)
* fix: Update boringssl to match Envoy (2022-02-07 -> 2023-08-28) Fixes build warning-as-error: ``` external/boringssl/src/crypto/x509/t_x509.c:326:18: error: variable 'l' set but not used [-Werror,-Wunused-but-set-variable] int ret = 0, l, i; ^ ``` Signed-off-by: Martijn Stevenson <[email protected]>
1 parent 265e9d8 commit 04dfb94

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bazel/repositories.bzl

+4-4
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ def proxy_wasm_cpp_host_repositories():
8787
maybe(
8888
http_archive,
8989
name = "boringssl",
90-
# 2022-02-07 (master-with-bazel)
91-
sha256 = "7dec97795a7ac7e3832228e4440ee06cceb18d3663f4580b0840e685281e28a0",
92-
strip_prefix = "boringssl-eaa29f431f71b8121e1da76bcd3ddc2248238ade",
93-
urls = ["https://github.com/google/boringssl/archive/eaa29f431f71b8121e1da76bcd3ddc2248238ade.tar.gz"],
90+
# 2023-08-28 (master-with-bazel)
91+
sha256 = "f1f421738e9ba39dd88daf8cf3096ddba9c53e2b6b41b32fff5a3ff82f4cd162",
92+
strip_prefix = "boringssl-45cf810dbdbd767f09f8cb0b0fcccd342c39041f",
93+
urls = ["https://github.com/google/boringssl/archive/45cf810dbdbd767f09f8cb0b0fcccd342c39041f.tar.gz"],
9494
)
9595

9696
maybe(

0 commit comments

Comments
 (0)