Skip to content

Commit 8eb8d8b

Browse files
committed
chore(deps): update opentelemetry to v1.22.0
1 parent 190b2bc commit 8eb8d8b

18 files changed

+28
-28
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
2929
bazel_dep(name = "nlohmann_json", version = "3.11.3")
3030
bazel_dep(name = "curl", version = "8.8.0.bcr.3")
3131
bazel_dep(name = "crc32c", version = "1.1.0")
32-
bazel_dep(name = "opentelemetry-cpp", version = "1.19.0")
32+
bazel_dep(name = "opentelemetry-cpp", version = "1.22.0")
3333
bazel_dep(name = "rules_proto", version = "7.1.0")
3434
bazel_dep(name = "rules_python", version = "1.5.1")
3535
bazel_dep(name = "rules_apple", version = "3.16.0")

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@ def gl_cpp_workspace0(name = None):
245245
http_archive,
246246
name = "io_opentelemetry_cpp",
247247
urls = [
248-
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz",
248+
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz",
249249
],
250-
sha256 = "4b6eeb852f075133c21b95948017f13a3e21740e55b921d27e42970a47314297",
251-
strip_prefix = "opentelemetry-cpp-1.20.0",
250+
sha256 = "3428f433f4b435ed1fad64cbdbe75b7288c06f6297786a7036d65d5b9a1d215b",
251+
strip_prefix = "opentelemetry-cpp-1.22.0",
252252
repo_mapping = {
253253
"@curl": "@com_github_curl_curl",
254254
"@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
@@ -71,7 +71,7 @@ RUN apk update && \
7171

7272
# ```bash
7373
WORKDIR /var/tmp/build/opentelemetry-cpp
74-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
74+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
7575
tar -xzf - --strip-components=1 && \
7676
cmake \
7777
-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
@@ -88,7 +88,7 @@ RUN curl -fsSL https://github.com/google/crc32c/archive/1.1.2.tar.gz | \
8888

8989
# ```bash
9090
WORKDIR /var/tmp/build/opentelemetry-cpp
91-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
91+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
9292
tar -xzf - --strip-components=1 && \
9393
cmake \
9494
-DCMAKE_BUILD_TYPE=Release \

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

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

156156
# ```bash
157157
WORKDIR /var/tmp/build/opentelemetry-cpp
158-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
158+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
159159
tar -xzf - --strip-components=1 && \
160160
cmake \
161161
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-fedora.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ ENV PKG_CONFIG_PATH=/usr/local/share/pkgconfig:/usr/lib64/pkgconfig:/usr/local/l
7979

8080
# ```bash
8181
WORKDIR /var/tmp/build/opentelemetry-cpp
82-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
82+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
8383
tar -xzf - --strip-components=1 && \
8484
cmake \
8585
-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
@@ -59,7 +59,7 @@ ENV PATH=/usr/local/bin:${PATH}
5959

6060
# ```bash
6161
WORKDIR /var/tmp/build/opentelemetry-cpp
62-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
62+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
6363
tar -xzf - --strip-components=1 && \
6464
cmake \
6565
-DCMAKE_BUILD_TYPE=Release \

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

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

202202
# ```bash
203203
WORKDIR /var/tmp/build/opentelemetry-cpp
204-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
204+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
205205
tar -xzf - --strip-components=1 && \
206206
cmake \
207207
-DCMAKE_BUILD_TYPE=Release \

ci/cloudbuild/dockerfiles/demo-ubuntu-24.04.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/google/crc32c/archive/1.1.2.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.20.0.tar.gz | \
96+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
9797
tar -xzf - --strip-components=1 && \
9898
cmake \
9999
-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
@@ -168,7 +168,7 @@ RUN curl -fsSL https://github.com/nlohmann/json/archive/v3.11.3.tar.gz | \
168168

169169
# ```bash
170170
WORKDIR /var/tmp/build/opentelemetry-cpp
171-
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz | \
171+
RUN curl -fsSL https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.22.0.tar.gz | \
172172
tar -xzf - --strip-components=1 && \
173173
cmake \
174174
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)