Skip to content

Commit d921204

Browse files
authored
chore(deps): update abseil to v20250127.1 (#15038)
1 parent 4c68e46 commit d921204

10 files changed

+15
-15
lines changed

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ def gl_cpp_workspace0(name = None):
103103
http_archive,
104104
name = "com_google_absl",
105105
urls = [
106-
"https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz",
106+
"https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz",
107107
],
108-
sha256 = "16242f394245627e508ec6bb296b433c90f8d914f73b9c026fddb905e27276e8",
109-
strip_prefix = "abseil-cpp-20250127.0",
108+
sha256 = "b396401fd29e2e679cace77867481d388c807671dc2acc602a0259eeb79b7811",
109+
strip_prefix = "abseil-cpp-20250127.1",
110110
)
111111

112112
# Load a version of googletest that we know works. This is needed to create

ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && \
3636

3737
# ```bash
3838
WORKDIR /var/tmp/build/abseil-cpp
39-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-rockylinux-9.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ ENV PATH=/usr/local/bin:${PATH}
6666

6767
# ```bash
6868
WORKDIR /var/tmp/build/abseil-cpp
69-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
69+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
7070
tar -xzf - --strip-components=1 && \
7171
cmake \
7272
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-ubuntu-focal.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && \
3636

3737
# ```bash
3838
WORKDIR /var/tmp/build/abseil-cpp
39-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-ubuntu-jammy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN apt-get update && \
3636

3737
# ```bash
3838
WORKDIR /var/tmp/build/abseil-cpp
39-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/fedora-latest-cmake.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
7070
# We disable the inline namespace because otherwise Abseil LTS updates break our
7171
# `check-api` build.
7272
WORKDIR /var/tmp/build
73-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
73+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
7474
tar -xzf - --strip-components=1 && \
7575
sed -i 's/^#define ABSL_OPTION_USE_\(.*\) 2/#define ABSL_OPTION_USE_\1 0/' "absl/base/options.h" && \
7676
sed -i 's/^#define ABSL_OPTION_USE_INLINE_NAMESPACE 1$/#define ABSL_OPTION_USE_INLINE_NAMESPACE 0/' "absl/base/options.h" && \

ci/cloudbuild/dockerfiles/fedora-latest-cxx14.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
6767
# with fewer layers).
6868

6969
WORKDIR /var/tmp/build
70-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
70+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
7171
tar -xzf - --strip-components=1 && \
7272
cmake \
7373
-DCMAKE_CXX_STANDARD=14 \

ci/cloudbuild/dockerfiles/fedora-latest-cxx20.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ ENV PKG_CONFIG_PATH=/usr/local/lib64/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib
6969
# with fewer layers).
7070

7171
WORKDIR /var/tmp/build
72-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
72+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
7373
tar -xzf - --strip-components=1 && \
7474
cmake \
7575
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/ubuntu-20.04-install.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN apt update && apt install -y openjdk-13-jre
5858
# image smaller (and with fewer layers)
5959

6060
WORKDIR /var/tmp/build/abseil-cpp
61-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
61+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
6262
tar -xzf - --strip-components=1 && \
6363
cmake \
6464
-DCMAKE_BUILD_TYPE="Release" \

doc/packaging.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ the version of C++ used to compile Abseil to anything that depends on Abseil.
563563

564564
```bash
565565
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
566-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
566+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
567567
tar -xzf - --strip-components=1 && \
568568
cmake \
569569
-DCMAKE_BUILD_TYPE=Release \
@@ -730,7 +730,7 @@ the version of C++ used to compile Abseil to anything that depends on Abseil.
730730

731731
```bash
732732
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
733-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
733+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
734734
tar -xzf - --strip-components=1 && \
735735
cmake \
736736
-DCMAKE_BUILD_TYPE=Release \
@@ -1026,7 +1026,7 @@ version of C++ used to compile Abseil to anything that depends on Abseil.
10261026

10271027
```bash
10281028
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
1029-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
1029+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
10301030
tar -xzf - --strip-components=1 && \
10311031
cmake \
10321032
-DCMAKE_BUILD_TYPE=Release \
@@ -1231,7 +1231,7 @@ C++ used to compile Abseil to anything that depends on Abseil.
12311231

12321232
```bash
12331233
mkdir -p $HOME/Downloads/abseil-cpp && cd $HOME/Downloads/abseil-cpp
1234-
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
1234+
curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.1.tar.gz | \
12351235
tar -xzf - --strip-components=1 && \
12361236
cmake \
12371237
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)