Skip to content

Commit cc8c22e

Browse files
committed
chore(deps): update opentelemetry to v1.28.0
1 parent 5bdcb3d commit cc8c22e

19 files changed

Lines changed: 28 additions & 28 deletions

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ bazel_dep(name = "protobuf", version = "35.1", repo_name = "com_google_protobuf"
3333
bazel_dep(name = "boringssl", version = "0.20251124.0")
3434
bazel_dep(name = "nlohmann_json", version = "3.12.0.bcr.1")
3535
bazel_dep(name = "curl", version = "8.8.0.bcr.3")
36-
bazel_dep(name = "opentelemetry-cpp", version = "1.24.0")
36+
bazel_dep(name = "opentelemetry-cpp", version = "1.28.0")
3737
bazel_dep(name = "rules_proto", version = "7.1.0")
3838
bazel_dep(name = "rules_python", version = "2.3.2")
3939
bazel_dep(name = "rules_apple", version = "4.3.3")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,10 +262,10 @@ def gl_cpp_workspace0(name = None):
262262
http_archive(
263263
name = "opentelemetry-cpp",
264264
urls = [
265-
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz",
265+
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz",
266266
],
267-
sha256 = "4b6eeb852f075133c21b95948017f13a3e21740e55b921d27e42970a47314297",
268-
strip_prefix = "opentelemetry-cpp-1.20.0",
267+
sha256 = "8c359919175d77c502515f5a783907d031cc6a172e44426dbe9bee3c1532201e",
268+
strip_prefix = "opentelemetry-cpp-1.28.0",
269269
repo_mapping = {
270270
"@curl": "@com_github_curl_curl",
271271
"@com_github_google_benchmark": "@com_github_benchmark",

ci/cloudbuild/dockerfiles/demo-alpine-stable.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ RUN apk update && \
6666

6767
# ```bash
6868
WORKDIR /var/tmp/build/opentelemetry-cpp
69-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
69+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
7070
tar -xzf - --strip-components=1 && \
7171
cmake \
7272
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-debian-bookworm.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/protocolbuffers/protobuf/archive/v33.6.tar.gz
116116

117117
# ```bash
118118
WORKDIR /var/tmp/build/opentelemetry-cpp
119-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
119+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
120120
tar -xzf - --strip-components=1 && \
121121
cmake \
122122
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-debian-bullseye.Dockerfile

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

150150
# ```bash
151151
WORKDIR /var/tmp/build/opentelemetry-cpp
152-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
152+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
153153
tar -xzf - --strip-components=1 && \
154154
cmake \
155155
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-fedora.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/protocolbuffers/protobuf/archive/v33.6.tar.gz
105105

106106
# ```bash
107107
WORKDIR /var/tmp/build/opentelemetry-cpp
108-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
108+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
109109
tar -xzf - --strip-components=1 && \
110110
cmake \
111111
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-opensuse-leap.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.6.tar.gz
9393

9494
# ```bash
9595
WORKDIR /var/tmp/build/opentelemetry-cpp
96-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
96+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
9797
tar -xzf - --strip-components=1 && \
9898
cmake \
9999
-DCMAKE_BUILD_TYPE=Debug \

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
203203

204204
# ```bash
205205
WORKDIR /var/tmp/build/opentelemetry-cpp
206-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
206+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
207207
tar -xzf - --strip-components=1 && \
208208
cmake \
209209
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-ubuntu-24.04.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/protocolbuffers/protobuf/archive/v33.6.tar.gz
117117

118118
# ```bash
119119
WORKDIR /var/tmp/build/opentelemetry-cpp
120-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
120+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
121121
tar -xzf - --strip-components=1 && \
122122
cmake \
123123
-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
@@ -140,7 +140,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
140140

141141
# ```bash
142142
WORKDIR /var/tmp/build/opentelemetry-cpp
143-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
143+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.28.0.tar.gz | \
144144
tar -xzf - --strip-components=1 && \
145145
cmake \
146146
-DCMAKE_BUILD_TYPE=Debug \

0 commit comments

Comments
 (0)