Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ Increment the:
[#3320](https://github.com/open-telemetry/opentelemetry-cpp/pull/3220)
[#3368](https://github.com/open-telemetry/opentelemetry-cpp/pull/3368)

* [BUILD] Upgrade nlohmann_json to 1.12.0
[#3406](https://github.com/open-telemetry/opentelemetry-cpp/pull/3406)

## [1.20 2025-04-01]

* [BUILD] Update opentelemetry-proto version
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ bazel_dep(name = "abseil-cpp", version = "20240116.1", repo_name = "com_google_a
bazel_dep(name = "bazel_skylib", version = "1.5.0")
bazel_dep(name = "curl", version = "8.8.0")
bazel_dep(name = "grpc", version = "1.63.1.bcr.1", repo_name = "com_github_grpc_grpc")
bazel_dep(name = "nlohmann_json", version = "3.11.3", repo_name = "github_nlohmann_json")
bazel_dep(name = "nlohmann_json", version = "3.12.0", repo_name = "github_nlohmann_json")
bazel_dep(name = "opentelemetry-proto", version = "1.5.0", repo_name = "com_github_opentelemetry_proto")
bazel_dep(name = "opentracing-cpp", version = "1.6.0", repo_name = "com_github_opentracing")
bazel_dep(name = "platforms", version = "0.0.8")
Expand Down
4 changes: 2 additions & 2 deletions bazel/repository.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ def opentelemetry_cpp_deps():
http_archive,
name = "github_nlohmann_json",
build_file = "@io_opentelemetry_cpp//bazel:nlohmann_json.BUILD",
sha256 = "a22461d13119ac5c78f205d3df1db13403e58ce1bb1794edc9313677313f4a9d",
sha256 = "b8cb0ef2dd7f57f18933997c9934bb1fa962594f701cd5a8d3c2c80541559372",
urls = [
"https://github.com/nlohmann/json/releases/download/v3.11.3/include.zip",
"https://github.com/nlohmann/json/releases/download/v3.12.0/include.zip",
],
)

Expand Down
4 changes: 2 additions & 2 deletions install/conan/conanfile_latest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ libcurl/8.12.1
abseil/20240116.2
protobuf/5.27.0
grpc/1.67.1
nlohmann_json/3.11.3
nlohmann_json/3.12.0
prometheus-cpp/1.3.0
opentracing-cpp/1.6.0

Expand Down Expand Up @@ -37,4 +37,4 @@ CMakeToolchain
CMakeDeps

[layout]
cmake_layout
cmake_layout
2 changes: 1 addition & 1 deletion third_party/nlohmann-json
Submodule nlohmann-json updated 837 files
2 changes: 1 addition & 1 deletion third_party_release
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abseil=20240116.1
benchmark=v1.8.3
googletest=1.14.0
ms-gsl=v3.1.0-67-g6f45293
nlohmann-json=v3.11.3
nlohmann-json=v3.12.0
opentelemetry-proto=v1.5.0
opentracing-cpp=v1.6.0
prometheus-cpp=v1.3.0
Expand Down
Loading