Skip to content

Commit c46fc38

Browse files
committed
chore(deps): update json to v3.12.0
1 parent 5bdcb3d commit c46fc38

12 files changed

Lines changed: 15 additions & 15 deletions

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ bazel_dep(name = "abseil-cpp", version = "20250814.2")
3131
# See https://github.com/googleapis/google-cloud-cpp/issues/15393
3232
bazel_dep(name = "protobuf", version = "35.1", repo_name = "com_google_protobuf")
3333
bazel_dep(name = "boringssl", version = "0.20251124.0")
34-
bazel_dep(name = "nlohmann_json", version = "3.12.0.bcr.1")
34+
bazel_dep(name = "nlohmann_json", version = "3.12.0")
3535
bazel_dep(name = "curl", version = "8.8.0.bcr.3")
3636
bazel_dep(name = "opentelemetry-cpp", version = "1.24.0")
3737
bazel_dep(name = "rules_proto", version = "7.1.0")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,10 +252,10 @@ def gl_cpp_workspace0(name = None):
252252
http_archive,
253253
name = "nlohmann_json",
254254
urls = [
255-
"https://github.com/nlohmann/json/archive/v3.11.3.tar.gz",
255+
"https://github.com/nlohmann/json/archive/v3.12.0.tar.gz",
256256
],
257-
sha256 = "0d8ef5af7f9794e3263480193c491549b2ba6cc74bb018906202ada498a79406",
258-
strip_prefix = "json-3.11.3",
257+
sha256 = "4b92eb0c06d10683f7447ce9406cb97cd4b453be18d7279320f7b2f025c10187",
258+
strip_prefix = "json-3.12.0",
259259
)
260260

261261
# Open Telemetry

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
187187

188188
# ```bash
189189
WORKDIR /var/tmp/build/json
190-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
190+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
191191
tar -xzf - --strip-components=1 && \
192192
cmake \
193193
-DCMAKE_BUILD_TYPE=Debug \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
124124

125125
# ```bash
126126
WORKDIR /var/tmp/build/json
127-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
127+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
128128
tar -xzf - --strip-components=1 && \
129129
cmake \
130130
-DCMAKE_BUILD_TYPE=Debug \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.5.tar.gz | \
134134
ldconfig && cd /var/tmp && rm -fr build
135135

136136
WORKDIR /var/tmp/build
137-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
137+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
138138
tar -xzf - --strip-components=1 && \
139139
cmake \
140140
-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
@@ -134,7 +134,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.5.tar.gz | \
134134
ldconfig && cd /var/tmp && rm -fr build
135135

136136
WORKDIR /var/tmp/build
137-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
137+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
138138
tar -xzf - --strip-components=1 && \
139139
cmake \
140140
-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
@@ -128,7 +128,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.5.tar.gz | \
128128
cd /var/tmp && rm -fr build
129129

130130
WORKDIR /var/tmp/build
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_CXX_STANDARD=20 \

ci/cloudbuild/dockerfiles/fedora-m32.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ RUN curl -fsSL https://github.com/curl/curl/releases/download/curl-8_7_1/curl-8.
105105
# Note that this is a header-only library, and often installed manually.
106106
# This leaves your environment without support for CMake pkg-config.
107107
WORKDIR /var/tmp/build/json
108-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
108+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
109109
tar -xzf - --strip-components=1 && \
110110
cmake \
111111
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/gcc-oldest.Dockerfile

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

138138
WORKDIR /var/tmp/build
139-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
139+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
140140
tar -xzf - --strip-components=1 && \
141141
cmake \
142142
-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
@@ -114,7 +114,7 @@ RUN curl -fsSL https://github.com/google/benchmark/archive/v1.9.5.tar.gz | \
114114
cd /var/tmp && rm -fr build
115115

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

0 commit comments

Comments
 (0)