security: upgrade opentelemetry 0.28 -> 0.32 (CVE-2026-48504) - #97
Merged
Conversation
Fixes opentelemetry_sdk unbounded memory allocation in W3C Baggage propagation (CVE-2026-48504) in the root workspace and the desktop app. - Root Cargo.toml: opentelemetry / opentelemetry_sdk / opentelemetry-otlp 0.28 -> 0.32, tracing-opentelemetry 0.29 -> 0.33, opentelemetry-appender-tracing 0.28 -> 0.32. Pulls tonic 0.12 -> 0.14, prost 0.13 -> 0.14 for the OTLP gRPC transport. - desktop/src-tauri/Cargo.lock synced (otel is transitive via rustnzb/nzb-web). No source changes required — the builder/provider/global-meter API surface in main.rs and the crates is stable across 0.28..0.32. Verified: cargo build + cargo test --workspace (all pass, 0 failures). Clears Dependabot alerts #1 (root) and #26 (desktop). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NcRDAbyqhY88qnQBaMtue8
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes
opentelemetry_sdkunbounded memory allocation in W3C Baggage propagation (CVE-2026-48504, GHSA-w9wp-h8wv-79jx). Deferred from the main remediation PR (#96) as a bigger, code-risky upgrade.Changes
Cargo.toml:opentelemetry/opentelemetry_sdk/opentelemetry-otlp0.28→0.32,tracing-opentelemetry0.29→0.33,opentelemetry-appender-tracing0.28→0.32. Transitively pullstonic0.12→0.14 andprost0.13→0.14 for the OTLP gRPC transport.desktop/src-tauri/Cargo.locksynced (otel is transitive viarustnzb/nzb-web).Notes
Resource::builder,global::meter, gauges, andOpenTelemetryTracingBridgeare stable across 0.28..0.32.cargo build+cargo test --workspace— all pass, 0 failures.Clears Dependabot alerts #1 (root) and #26 (desktop). The remaining Rust alert,
glib#25, is transitively pinned bytauri2.11's gtk 0.18 and has no in-range fix — recommend dismissing as "no upgrade path" (low risk: GUI iterator unsoundness) until a Tauri stack bump.🤖 Generated with Claude Code