From 2c95395ed3c00afdd4f21a8ccb2532f72eba22a0 Mon Sep 17 00:00:00 2001 From: David Ostrovsky Date: Sun, 23 Apr 2023 13:07:17 +0200 Subject: [PATCH] Bump abseil-cpp version to 20220623.1 Closes #18167. abseil is missing stdint.h include, that broke recent compiler versions. This problem was fixed in this commit upstream: https://github.com/abseil/abseil-cpp/commit/36a4b073f1e7e02ed7d1ac140767e36f82f09b7c Note, that we cannot update to the latst abseil-cpp version, because this breaking change: "Abseil now requires at least C++14" starting from LTS release 20230125 and Bazel is passing per default -std=c++0x option, see: https://github.com/bazelbuild/bazel/issues/18181 --- distdir_deps.bzl | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/distdir_deps.bzl b/distdir_deps.bzl index a0f4698adf309f..29e85bbadecd56 100644 --- a/distdir_deps.bzl +++ b/distdir_deps.bzl @@ -246,17 +246,16 @@ DIST_DEPS = { ], }, "com_google_absl": { - "archive": "20211102.0.tar.gz", - "sha256": "dcf71b9cba8dc0ca9940c4b316a0c796be8fab42b070bb6b7cab62b48f0e66c4", + "archive": "20220623.1.tar.gz", + "sha256": "91ac87d30cc6d79f9ab974c51874a704de9c2647c40f6932597329a282217ba8", "urls": [ - "https://mirror.bazel.build/github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz", - "https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz", + "https://github.com/abseil/abseil-cpp/archive/refs/tags/20220623.1.tar.gz", ], "used_in": [ "additional_distfiles", "test_WORKSPACE_files", ], - "strip_prefix": "abseil-cpp-20211102.0", + "strip_prefix": "abseil-cpp-20220623.1", "license_kinds": [ "@rules_license//licenses/generic:notice", ],