From 7a5fb50f0b86898ef196d4afdc3d5c0918168d60 Mon Sep 17 00:00:00 2001 From: Marc Alff Date: Wed, 16 Nov 2022 21:41:48 +0100 Subject: [PATCH 1/2] Fixes #1778 Bazel build: Upgrade Abseil to abseil-cpp-20220623.1 --- bazel/repository.bzl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bazel/repository.bzl b/bazel/repository.bzl index 6ed9c470f8..3e18f51948 100644 --- a/bazel/repository.bzl +++ b/bazel/repository.bzl @@ -54,10 +54,10 @@ def opentelemetry_cpp_deps(): maybe( http_archive, name = "com_google_absl", - sha256 = "dd7db6815204c2a62a2160e32c55e97113b0a0178b2f090d6bab5ce36111db4b", - strip_prefix = "abseil-cpp-20210324.0", + sha256 = "4208129b49006089ba1d6710845a45e31c59b0ab6bff9e5788a87f55c5abd602", + strip_prefix = "abseil-cpp-20220623.1", urls = [ - "https://github.com/abseil/abseil-cpp/archive/20210324.0.tar.gz", + "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.tar.gz", ], ) From 9cd4be7c723b1dc97ed7272e53da048536a754af Mon Sep 17 00:00:00 2001 From: Marc Alff Date: Wed, 16 Nov 2022 22:07:52 +0100 Subject: [PATCH 2/2] Use checksum of 20220623.1.tar.gz, not 20220623.0.tar.gz --- bazel/repository.bzl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazel/repository.bzl b/bazel/repository.bzl index 3e18f51948..9900f249fd 100644 --- a/bazel/repository.bzl +++ b/bazel/repository.bzl @@ -54,7 +54,7 @@ def opentelemetry_cpp_deps(): maybe( http_archive, name = "com_google_absl", - sha256 = "4208129b49006089ba1d6710845a45e31c59b0ab6bff9e5788a87f55c5abd602", + sha256 = "91ac87d30cc6d79f9ab974c51874a704de9c2647c40f6932597329a282217ba8", strip_prefix = "abseil-cpp-20220623.1", urls = [ "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.tar.gz",