Skip to content

Commit d552d60

Browse files
committed
chore: update Bazel dependencies
chore(push): Use curl 7.82.0 (cherry picked from commit 7817761) chore: Use Google Benchmark 1.6.1 (cherry picked from commit d2c9d38) Add third mirror for zlib The second mirror is not working anymore. At the moment, `mirror.bazel.build`'s SSL certificate is expired. This adds another mirror to make zlib available again. (cherry picked from commit f5ed185) chore(push): Use curl 7.83.1 (cherry picked from commit e29bfad) chore(core): Use zlib 1.2.12 (cherry picked from commit fcbd9f6)
1 parent 3a97688 commit d552d60

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

bazel/repositories.bzl

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -26,33 +26,34 @@ def prometheus_cpp_repositories():
2626
maybe(
2727
http_archive,
2828
name = "com_github_curl",
29-
sha256 = "dab997c9b08cb4a636a03f2f7f985eaba33279c1c52692430018fae4a4878dc7",
30-
strip_prefix = "curl-7.80.0",
29+
sha256 = "93fb2cd4b880656b4e8589c912a9fd092750166d555166370247f09d18f5d0c0",
30+
strip_prefix = "curl-7.83.1",
3131
urls = [
32-
"https://github.com/curl/curl/releases/download/curl-7_80_0/curl-7.80.0.tar.gz",
33-
"https://curl.haxx.se/download/curl-7.80.0.tar.gz",
32+
"https://github.com/curl/curl/releases/download/curl-7_83_1/curl-7.83.1.tar.gz",
33+
"https://curl.haxx.se/download/curl-7.83.1.tar.gz",
3434
],
3535
build_file = "@com_github_jupp0r_prometheus_cpp//bazel:curl.BUILD",
3636
)
3737

3838
maybe(
3939
http_archive,
4040
name = "com_github_google_benchmark",
41-
sha256 = "1f71c72ce08d2c1310011ea6436b31e39ccab8c2db94186d26657d41747c85d6",
42-
strip_prefix = "benchmark-1.6.0",
41+
sha256 = "6132883bc8c9b0df5375b16ab520fac1a85dc9e4cf5be59480448ece74b278d4",
42+
strip_prefix = "benchmark-1.6.1",
4343
urls = [
44-
"https://github.com/google/benchmark/archive/v1.6.0.tar.gz",
44+
"https://github.com/google/benchmark/archive/v1.6.1.tar.gz",
4545
],
4646
)
4747

4848
maybe(
4949
http_archive,
5050
name = "net_zlib_zlib",
51-
sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
52-
strip_prefix = "zlib-1.2.11",
51+
sha256 = "91844808532e5ce316b3c010929493c0244f3d37593afd6de04f71821d5136d9",
52+
strip_prefix = "zlib-1.2.12",
5353
urls = [
54-
"https://mirror.bazel.build/zlib.net/zlib-1.2.11.tar.gz",
55-
"https://zlib.net/zlib-1.2.11.tar.gz",
54+
"https://mirror.bazel.build/zlib.net/zlib-1.2.12.tar.gz",
55+
"https://zlib.net/zlib-1.2.12.tar.gz",
56+
"https://storage.googleapis.com/bazel-mirror/zlib.net/zlib-1.2.12.tar.gz",
5657
],
5758
build_file = "@com_github_jupp0r_prometheus_cpp//bazel:zlib.BUILD",
5859
)

0 commit comments

Comments
 (0)