From 1e26c1cea88be552d8f134af1547756bc8324dbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Oct 2023 16:32:00 -0300 Subject: [PATCH] build(deps): Bump the otel group in /rust with 1 update (#2217) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the otel group in /rust with 1 update: [tracing-opentelemetry](https://github.com/tokio-rs/tracing-opentelemetry).
Release notes

Sourced from tracing-opentelemetry's releases.

0.21.0

Added

Breaking Changes

Fixed

Thanks to @​ymgyt and @​hdost for contributing to this release!

Changelog

Sourced from tracing-opentelemetry's changelog.

0.21.0 (August 28, 2023)

Added

Breaking Changes

Fixed

Thanks to @​ymgyt and @​hdost for contributing to this release!

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=tracing-opentelemetry&package-manager=cargo&previous-version=0.20.0&new-version=0.21.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- rust/Cargo.lock | 20 ++++++++++++++++++-- rust/relay/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 4aef0eb62..11a8826c4 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -2802,7 +2802,7 @@ dependencies = [ "tokio", "tracing", "tracing-core", - "tracing-opentelemetry", + "tracing-opentelemetry 0.21.0", "tracing-stackdriver", "tracing-subscriber", "trackable 1.3.0", @@ -3861,6 +3861,22 @@ dependencies = [ "tracing-subscriber", ] +[[package]] +name = "tracing-opentelemetry" +version = "0.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75327c6b667828ddc28f5e3f169036cb793c3f588d83bf0f262a7f062ffed3c8" +dependencies = [ + "once_cell", + "opentelemetry", + "opentelemetry_sdk", + "smallvec", + "tracing", + "tracing-core", + "tracing-log", + "tracing-subscriber", +] + [[package]] name = "tracing-oslog" version = "0.1.2" @@ -3899,7 +3915,7 @@ dependencies = [ "thiserror", "time", "tracing-core", - "tracing-opentelemetry", + "tracing-opentelemetry 0.20.0", "tracing-subscriber", ] diff --git a/rust/relay/Cargo.toml b/rust/relay/Cargo.toml index 1a8f11886..f4caf3202 100644 --- a/rust/relay/Cargo.toml +++ b/rust/relay/Cargo.toml @@ -17,7 +17,7 @@ tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread", "net", "t tracing = { workspace = true, features = ["log"] } tracing-subscriber = { workspace = true, features = ["env-filter", "json", "fmt"] } tracing-stackdriver = { version = "0.8.0", features = ["opentelemetry"] } -tracing-opentelemetry = "0.20.0" +tracing-opentelemetry = "0.21.0" opentelemetry = { version = "0.20.0", features = ["rt-tokio", "metrics"] } opentelemetry_api = "0.20.0" opentelemetry-otlp = { version = "0.13.0", features = ["metrics"]}