Skip to content

Commit bfcfc93

Browse files
committed
chore(deps): update json to v3.12.0
1 parent a2c0fb8 commit bfcfc93

11 files changed

Lines changed: 15 additions & 15 deletions

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ bazel_dep(name = "abseil-cpp", version = "20240722.1", repo_name = "com_google_a
2727
bazel_dep(name = "protobuf", version = "29.4", repo_name = "com_google_protobuf")
2828
bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
2929
bazel_dep(name = "grpc", version = "1.69.0", repo_name = "com_github_grpc_grpc")
30-
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "com_github_nlohmann_json")
30+
bazel_dep(name = "nlohmann_json", version = "3.12.0", repo_name = "com_github_nlohmann_json")
3131
bazel_dep(name = "curl", version = "8.8.0.bcr.3", repo_name = "com_github_curl_curl")
3232
bazel_dep(name = "crc32c", version = "1.1.0", repo_name = "com_github_google_crc32c")
3333
bazel_dep(name = "opentelemetry-cpp", version = "1.19.0", repo_name = "io_opentelemetry_cpp")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,10 +207,10 @@ def gl_cpp_workspace0(name = None):
207207
http_archive,
208208
name = "com_github_nlohmann_json",
209209
urls = [
210-
"https://github.com/nlohmann/json/archive/v3.11.3.tar.gz",
210+
"https://github.com/nlohmann/json/archive/v3.12.0.tar.gz",
211211
],
212-
sha256 = "0d8ef5af7f9794e3263480193c491549b2ba6cc74bb018906202ada498a79406",
213-
strip_prefix = "json-3.11.3",
212+
sha256 = "4b92eb0c06d10683f7447ce9406cb97cd4b453be18d7279320f7b2f025c10187",
213+
strip_prefix = "json-3.12.0",
214214
)
215215

216216
# 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
@@ -178,7 +178,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
178178

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

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

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

119119
WORKDIR /var/tmp/build
120-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
120+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
121121
tar -xzf - --strip-components=1 && \
122122
cmake \
123123
-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
@@ -121,7 +121,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
121121
cd /var/tmp && rm -fr build
122122

123123
WORKDIR /var/tmp/build
124-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
124+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
125125
tar -xzf - --strip-components=1 && \
126126
cmake \
127127
-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
@@ -123,7 +123,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
123123
cd /var/tmp && rm -fr build
124124

125125
WORKDIR /var/tmp/build
126-
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
126+
RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.12.0.tar.gz | \
127127
tar -xzf - --strip-components=1 && \
128128
cmake \
129129
-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/ubuntu-20.04-install.Dockerfile

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

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

0 commit comments

Comments
 (0)