Skip to content

Commit 3cd8d86

Browse files
committed
chore(deps): update opentelemetry
1 parent a147785 commit 3cd8d86

18 files changed

+28
-28
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ bazel_dep(name = "boringssl", version = "0.0.0-20230215-5c22014")
3434
bazel_dep(name = "nlohmann_json", version = "3.11.3")
3535
bazel_dep(name = "curl", version = "8.8.0.bcr.3")
3636
bazel_dep(name = "crc32c", version = "1.1.0")
37-
bazel_dep(name = "opentelemetry-cpp", version = "1.19.0")
37+
bazel_dep(name = "opentelemetry-cpp", version = "1.22.0")
3838
bazel_dep(name = "rules_proto", version = "7.1.0")
3939
bazel_dep(name = "rules_python", version = "1.5.1")
4040
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
@@ -279,10 +279,10 @@ def gl_cpp_workspace0(name = None):
279279
http_archive,
280280
name = "opentelemetry-cpp",
281281
urls = [
282-
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.20.0.tar.gz",
282+
"https://github.com/open-telemetry/opentelemetry-cpp/archive/v1.23.0.tar.gz",
283283
],
284-
sha256 = "4b6eeb852f075133c21b95948017f13a3e21740e55b921d27e42970a47314297",
285-
strip_prefix = "opentelemetry-cpp-1.20.0",
284+
sha256 = "148ef298a4ef9e016228d53d7208ab9359d4fdf87f55649d60d07ffacc093b33",
285+
strip_prefix = "opentelemetry-cpp-1.23.0",
286286
repo_mapping = {
287287
"@curl": "@com_github_curl_curl",
288288
"@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.23.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.23.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.74.1.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.23.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.23.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.23.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.23.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.23.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.23.0.tar.gz | \
172172
tar -xzf - --strip-components=1 && \
173173
cmake \
174174
-DCMAKE_BUILD_TYPE=Release \

0 commit comments

Comments
 (0)