Skip to content

Commit 31dfdd7

Browse files
committed
chore(deps): update opentelemetry to v1.27.0
1 parent e0b2850 commit 31dfdd7

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 = "33.5", 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.27.0")
3737
bazel_dep(name = "rules_proto", version = "7.1.0")
3838
bazel_dep(name = "rules_python", version = "1.9.1")
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.27.0.tar.gz",
266266
],
267-
sha256 = "4b6eeb852f075133c21b95948017f13a3e21740e55b921d27e42970a47314297",
268-
strip_prefix = "opentelemetry-cpp-1.20.0",
267+
sha256 = "d09c2e8dd95bbc1d6ee493a89f32a4736879948d0eb59ad58c855022d1f55cc1",
268+
strip_prefix = "opentelemetry-cpp-1.27.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.27.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
@@ -94,7 +94,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.1.tar.gz
9494

9595
# ```bash
9696
WORKDIR /var/tmp/build/opentelemetry-cpp
97-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
97+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.27.0.tar.gz | \
9898
tar -xzf - --strip-components=1 && \
9999
cmake \
100100
-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
@@ -127,7 +127,7 @@ RUN curl -fsSL https://github.com/grpc/grpc/archive/v1.71.2.tar.gz | \
127127

128128
# ```bash
129129
WORKDIR /var/tmp/build/opentelemetry-cpp
130-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
130+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.27.0.tar.gz | \
131131
tar -xzf - --strip-components=1 && \
132132
cmake \
133133
-DCMAKE_BUILD_TYPE=Debug \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

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

8484
# ```bash
8585
WORKDIR /var/tmp/build/opentelemetry-cpp
86-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
86+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.27.0.tar.gz | \
8787
tar -xzf - --strip-components=1 && \
8888
cmake \
8989
-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.1.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.27.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
@@ -180,7 +180,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
180180

181181
# ```bash
182182
WORKDIR /var/tmp/build/opentelemetry-cpp
183-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
183+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.27.0.tar.gz | \
184184
tar -xzf - --strip-components=1 && \
185185
cmake \
186186
-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
@@ -95,7 +95,7 @@ RUN curl -fsSL https://github.com/protocolbuffers/protobuf/archive/v33.1.tar.gz
9595

9696
# ```bash
9797
WORKDIR /var/tmp/build/opentelemetry-cpp
98-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.24.0.tar.gz | \
98+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.27.0.tar.gz | \
9999
tar -xzf - --strip-components=1 && \
100100
cmake \
101101
-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
@@ -118,7 +118,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
118118

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

0 commit comments

Comments
 (0)