Skip to content

Commit 800c88d

Browse files
committed
chore(deps): update json to v3.12.0
1 parent 911d67d commit 800c88d

11 files changed

+15
-15
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ bazel_dep(name = "rules_cc", version = "0.1.4")
2626
bazel_dep(name = "abseil-cpp", version = "20250127.1")
2727
bazel_dep(name = "protobuf", version = "31.1")
2828
bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
29-
bazel_dep(name = "nlohmann_json", version = "3.11.3")
29+
bazel_dep(name = "nlohmann_json", version = "3.12.0")
3030
bazel_dep(name = "curl", version = "8.8.0.bcr.3")
3131
bazel_dep(name = "crc32c", version = "1.1.0")
3232
bazel_dep(name = "opentelemetry-cpp", version = "1.19.0")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -219,10 +219,10 @@ def gl_cpp_workspace0(name = None):
219219
http_archive,
220220
name = "com_github_nlohmann_json",
221221
urls = [
222-
"https://github.com/nlohmann/json/archive/v3.11.3.tar.gz",
222+
"https://github.com/nlohmann/json/archive/v3.12.0.tar.gz",
223223
],
224-
sha256 = "0d8ef5af7f9794e3263480193c491549b2ba6cc74bb018906202ada498a79406",
225-
strip_prefix = "json-3.11.3",
224+
sha256 = "4b92eb0c06d10683f7447ce9406cb97cd4b453be18d7279320f7b2f025c10187",
225+
strip_prefix = "json-3.12.0",
226226
)
227227

228228
# Load google/crc32c, a library to efficiently compute CRC32C checksums.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
180180

181181
# ```bash
182182
WORKDIR /var/tmp/build/json
183-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
183+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
184184
tar -xzf - --strip-components=1 && \
185185
cmake \
186186
-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
@@ -147,7 +147,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
147147

148148
# ```bash
149149
WORKDIR /var/tmp/build/json
150-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
150+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
151151
tar -xzf - --strip-components=1 && \
152152
cmake \
153153
-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
@@ -128,7 +128,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
128128

129129
# ```bash
130130
WORKDIR /var/tmp/build/json
131-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
131+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
132132
tar -xzf - --strip-components=1 && \
133133
cmake \
134134
-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
@@ -116,7 +116,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
116116
ldconfig && cd /var/tmp && rm -fr build
117117

118118
WORKDIR /var/tmp/build
119-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
119+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
120120
tar -xzf - --strip-components=1 && \
121121
cmake \
122122
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
127127
cd /var/tmp && rm -fr build
128128

129129
WORKDIR /var/tmp/build
130-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
130+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
131131
tar -xzf - --strip-components=1 && \
132132
cmake \
133133
-DCMAKE_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/fedora-m32.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ ENV PKG_CONFIG_PATH=/usr/local/share/pkgconfig:/usr/lib/pkgconfig
8484
# Note that this is a header-only library, and often installed manually.
8585
# This leaves your environment without support for CMake pkg-config.
8686
WORKDIR /var/tmp/build/json
87-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
87+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
8888
tar -xzf - --strip-components=1 && \
8989
cmake \
9090
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.0.tar.gz | \
131131
ldconfig && cd /var/tmp && rm -fr build
132132

133133
WORKDIR /var/tmp/build
134-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
134+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
135135
tar -xzf - --strip-components=1 && \
136136
cmake \
137137
-DCMAKE_BUILD_TYPE=Release \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
111111
cd /var/tmp && rm -fr build
112112

113113
WORKDIR /var/tmp/build/nlohmann-json
114-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
114+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
115115
tar -xzf - --strip-components=1 && \
116116
cmake \
117117
-DCMAKE_BUILD_TYPE="Release" \

0 commit comments

Comments
 (0)