chore: refresh subcrate Cargo.locks to crates.io opentelemetry 0.32.1 - #358
Merged
Conversation
Commit 39c08e2 migrated opentelemetry deps from a git rev to crates.io but only regenerated the root Cargo.lock. The subcrate and example lockfiles were left stale: - utilities, rotel_rust_processor_sdk, and both rust_processor examples were still locked to opentelemetry 0.31.0 from git rev 0948c61, despite their Cargo.toml already requiring opentelemetry-proto 0.32.0. - rotel_python_processor_sdk was at 0.32.1 but still sourced from git rev 284a37d9 instead of crates.io. Ran `cargo update` in each so opentelemetry_sdk now resolves to 0.32.1 from crates.io consistently across all lockfiles.
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.
Summary
Commit 39c08e2 migrated the opentelemetry dependencies from a git rev to crates.io, but only regenerated the root
Cargo.lock. The subcrate and example lockfiles were left stale. This refreshes them soopentelemetry_sdkresolves to 0.32.1 from crates.io consistently everywhere.Staleness found
utilities/Cargo.lock0948c61)rotel_rust_processor_sdk/Cargo.lockrotel_python_processor_sdk/Cargo.lock284a37d9)examples/rust_processors/async_enrichment_processor/Cargo.lockexamples/rust_processors/trivial_processor/Cargo.lockThe root
Cargo.lockwas already current and is unchanged.Two kinds of staleness:
Cargo.tomlalready requiredopentelemetry-proto = "0.32.0"(an outright mismatch).How
Ran
cargo updatein each affected crate directory.thiserror/thiserror-implalso bumped to 2.0.19 as a side effect. Verified withcargo tree --locked -i opentelemetry_sdkin each crate — all resolve to 0.32.1 and lock check passes.