Skip to content

Commit 336bd0f

Browse files
author
James Sharpe
authored
chore: Update openssl version to latest of the 1.1.1 series (#1410)
1 parent 13138d5 commit 336bd0f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

examples/third_party/curl/curl_test.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ int main(int argc, char* argv[]) {
1111

1212
assertm(std::string(data->version) == std::string("7.74.0"),
1313
"The version of curl does not match the expected version");
14-
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1o"),
14+
assertm(std::string(data->ssl_version) == std::string("OpenSSL/1.1.1w"),
1515
"The version of openssl does not match the expected version");
1616

1717
return 0;

examples/third_party/openssl/openssl_repositories.bzl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ def openssl_repositories():
88
http_archive,
99
name = "openssl",
1010
build_file = Label("//openssl:BUILD.openssl.bazel"),
11-
sha256 = "9384a2b0570dd80358841464677115df785edb941c71211f75076d72fe6b438f",
12-
strip_prefix = "openssl-1.1.1o",
11+
integrity = "sha256-zzCYlQy02FOtlcCEHx+cbT3BAtzPys1SHZOSUgi3asg=",
12+
strip_prefix = "openssl-1.1.1w",
1313
urls = [
14-
"https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1o.tar.gz",
15-
"https://www.openssl.org/source/openssl-1.1.1o.tar.gz",
16-
"https://github.com/openssl/openssl/archive/OpenSSL_1_1_1o.tar.gz",
14+
"https://mirror.bazel.build/www.openssl.org/source/openssl-1.1.1w.tar.gz",
15+
"https://www.openssl.org/source/openssl-1.1.1w.tar.gz",
16+
"https://github.com/openssl/openssl/archive/OpenSSL_1_1_1w.tar.gz",
1717
],
1818
)
1919

0 commit comments

Comments
 (0)