perf(deps): bump opentelemetry-proto to 0.30.0 and tonic-types to 0.13#1043
Merged
litianningdatadog merged 1 commit intomainfrom Feb 24, 2026
Merged
Conversation
opentelemetry-proto 0.29 pinned tonic ^0.12, creating a duplicate tonic copy alongside the tonic 0.13 already pulled in via dogstatsd/datadog-protos (saluki). opentelemetry-proto 0.30.0 requires tonic ^0.13 and prost ^0.13, aligning with what saluki already brings in and removing the tonic 0.12 copy from the binary. Also removes the now-absent glob, indexmap (bluss), and tracing-serde entries from LICENSE-3rdparty.csv. JIRA: https://datadoghq.atlassian.net/browse/SVLS-8619
lym953
approved these changes
Feb 24, 2026
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.
https://datadoghq.atlassian.net/browse/SVLS-8619
Summary
opentelemetry-protofrom0.29to0.30.0tonic-typesfrom0.12to0.13LICENSE-3rdparty.csventries forglob,indexmap(bluss repo), and the now-absent duplicateindexmapentryWhy
opentelemetry-proto 0.29requiredtonic ^0.12, which forced a second copy of the full tonic gRPC stack into the Lambda binary alongside thetonic 0.13already pulled in bydogstatsd/datadog-protos(saluki, introduced in674cd358). This duplicate adds binary size and contributes to Lambda init duration regression (SVLS-8619).opentelemetry-proto 0.30.0requirestonic ^0.13andprost ^0.13, aligning with what saluki already brings in. No external dependency changes (saluki, libdatadog) are required for this fix.Result
tonic 0.12removed from binary — singletonic 0.13copy remainingCargo.lockshrinks by ~58 lines (removed crates:glob, oneindexmapduplicate,tonic 0.12stack)opentelemetry 0.29 → 0.30is a single minor bump with no changes to the APIs used inbottlecap/src/otlp/Test plan