Skip to content

Commit 83d3a8c

Browse files
authored
chore(deps): update abseil to v20250127 (#101)
1 parent c857b23 commit 83d3a8c

11 files changed

+16
-16
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/20240722.1.tar.gz",
106+
"https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz",
107107
],
108-
sha256 = "40cee67604060a7c8794d931538cb55f4d444073e556980c88b6c49bb9b19bb7",
109-
strip_prefix = "abseil-cpp-20240722.1",
108+
sha256 = "16242f394245627e508ec6bb296b433c90f8d914f73b9c026fddb905e27276e8",
109+
strip_prefix = "abseil-cpp-20250127.0",
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
@@ -39,7 +39,7 @@ RUN apt-get update && \
3939

4040
# ```bash
4141
WORKDIR /var/tmp/build/abseil-cpp
42-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
42+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
4343
tar -xzf - --strip-components=1 && \
4444
cmake \
4545
-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
@@ -69,7 +69,7 @@ ENV PATH=/usr/local/bin:${PATH}
6969

7070
# ```bash
7171
WORKDIR /var/tmp/build/abseil-cpp
72-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
72+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
7373
tar -xzf - --strip-components=1 && \
7474
cmake \
7575
-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/20240722.1.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.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/20240722.1.tar.gz | \
39+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
4040
tar -xzf - --strip-components=1 && \
4141
cmake \
4242
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/fedora-latest-cmake-gcc.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
# We disable the inline namespace because otherwise Abseil LTS updates break our
6868
# `check-api` build.
6969
WORKDIR /var/tmp/build
70-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
70+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
7171
tar -xzf - --strip-components=1 && \
7272
cmake \
7373
-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
@@ -73,7 +73,7 @@ ENV CXXFLAGS="-fclang-abi-compat=17"
7373
# We disable the inline namespace because otherwise Abseil LTS updates break our
7474
# `check-api` build.
7575
WORKDIR /var/tmp/build
76-
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20240722.1.tar.gz | \
76+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
7777
tar -xzf - --strip-components=1 && \
7878
cmake \
7979
-DCMAKE_BUILD_TYPE="Release" \

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/20240722.1.tar.gz | \
70+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.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/20240722.1.tar.gz | \
72+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.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/20240722.1.tar.gz | \
61+
RUN curl -fsSL https://github.com/abseil/abseil-cpp/archive/20250127.0.tar.gz | \
6262
tar -xzf - --strip-components=1 && \
6363
cmake \
6464
-DCMAKE_BUILD_TYPE="Release" \

0 commit comments

Comments
 (0)