Bump opentelemetry_sdk from 0.21.2 to 0.32.1 - #418
Conversation
Bumps [opentelemetry_sdk](https://github.com/open-telemetry/opentelemetry-rust) from 0.21.2 to 0.32.1. - [Release notes](https://github.com/open-telemetry/opentelemetry-rust/releases) - [Changelog](https://github.com/open-telemetry/opentelemetry-rust/blob/main/docs/release_0.32.md) - [Commits](open-telemetry/opentelemetry-rust@v0.21.2...opentelemetry-semantic-conventions-0.32.1) --- updated-dependencies: - dependency-name: opentelemetry_sdk dependency-version: 0.32.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Want reviews to match your repository better? Bugbot Learning can learn team-specific rules from PR activity. A team admin can enable Learning in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit eabaf62. Configure here.
|
|
||
| [dependencies.opentelemetry_sdk] | ||
| version = "0.21" | ||
| version = "0.32" |
There was a problem hiding this comment.
Mismatched OpenTelemetry SDK versions
High Severity
Raising opentelemetry_sdk to 0.32 while opentelemetry stays at 0.21 and opentelemetry-otlp / tracing-opentelemetry still target the 0.21 stack leaves the otlp feature with incompatible API and tracer types in one crate.
Reviewed by Cursor Bugbot for commit eabaf62. Configure here.


Bumps opentelemetry_sdk from 0.21.2 to 0.32.1.
Release notes
Sourced from opentelemetry_sdk's releases.
Changelog
Sourced from opentelemetry_sdk's changelog.
... (truncated)
Commits
74cb6f3chore: Release opentelemetry-semantic-conventions 0.32.1 (#3562)10dde18chore(sdk): add missing changelog entry (#3550)ec2da12refactor: leverage static str key when possible (#3529)90a39a0feat(api): accept quoted-key fields in otel logging macros (#3567)8c922bcfeat(appender-tracing): add builder support for custom instrumentation scope ...fb2af9dfeat(metrics): add BoundUpDownCounter under experimental_metrics_bound_instru...1b3846cfeat(metrics): add BoundGauge under experimental_metrics_bound_instruments (#...ee359dbfix: remove reqwest-rustls-webpki-roots (#3524)4d4fd4dchore: Bump semantic-conventions to v1.42.0 (#3561)69213f2fix(prometheus-exporter): Concatenate metric attributes with Scope during col...You can trigger a rebase of this PR by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)You can disable automated security fix PRs for this repo from the Security Alerts page.
Note
High Risk
Major OpenTelemetry SDK upgrade with a split 0.21/0.32 dependency graph may break the
otlpfeature build or OTLP export at runtime until the stack is aligned.Overview
Dependabot raises
opentelemetry_sdkinrunmat-loggingfrom 0.21.2 to 0.32.1 (behind the optionalotlpfeature).Cargo.lockis updated so the workspace now resolves two OpenTelemetry stacks: legacy 0.21 crates (opentelemetry,opentelemetry-otlp,tracing-opentelemetry) and 0.32 (opentelemetry+opentelemetry_sdk).opentelemetry(0.21),opentelemetry-otlp(0.14), andtracing-opentelemetry(0.22) are unchanged in this diff. OTLP setup inrunmat-loggingstill uses the 0.21-style pipeline APIs and types from bothopentelemetryandopentelemetry_sdk, so this is a major SDK jump without a coordinated bump of the rest of the tracing/OTLP crates or any Rust source updates.Reviewed by Cursor Bugbot for commit eabaf62. Bugbot is set up for automated code reviews on this repo. Configure here.