chore: upgrade @opentelemetry/* packages to fix critical protobufjs CVE#183
Merged
Conversation
Upgrades all @opentelemetry/* packages to latest versions to pull in protobufjs >=7.5.5 which fixes GHSA-xq3m-2v4x-88gg (CVSS 9.8, arbitrary code execution via prototype pollution in protobufjs <7.5.5). - @opentelemetry/auto-instrumentations-node: ^0.72.0 -> ^0.74.0 - @opentelemetry/exporter-trace-otlp-http: ^0.214.0 -> ^0.216.0 - @opentelemetry/instrumentation: ^0.214.0 -> ^0.216.0 - @opentelemetry/resources: ^2.6.1 -> ^2.7.1 - @opentelemetry/sdk-node: ^0.214.0 -> ^0.216.0 - @opentelemetry/sdk-trace-base: ^2.6.1 -> ^2.7.1 All 706 tests pass. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
ctufts
approved these changes
May 5, 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.
Summary
This PR upgrades all
@opentelemetry/*packages to their latest versions to address a critical security vulnerability (CVSS 9.8) inprotobufjs, a transitive dependency pulled in via the OTEL OTLP exporters.Security
CVE: GHSA-xq3m-2v4x-88gg
protobufjs< 7.5.5protobufjs>= 7.5.5 (this PR resolves toprotobufjs@8.0.1andprotobufjs@7.5.6)Package Changes
@opentelemetry/auto-instrumentations-node^0.72.0^0.74.0@opentelemetry/exporter-trace-otlp-http^0.214.0^0.216.0@opentelemetry/instrumentation^0.214.0^0.216.0@opentelemetry/resources^2.6.1^2.7.1@opentelemetry/sdk-node^0.214.0^0.216.0@opentelemetry/sdk-trace-base^2.6.1^2.7.1@opentelemetry/apiand@opentelemetry/semantic-conventionsare unchanged (already at latest).Test plan
npm test)npm auditconfirms the critical protobufjs CVE is no longer reportedprotobufjsresolves to8.0.1and7.5.6(both >= 7.5.5 patched threshold)🤖 Generated with Claude Code