fix(pubsub): upgrade @opentelemetry/core to ^2.8.0 to resolve CVE-2026-54285 (#8792) - #9092
Open
westarle wants to merge 1 commit into
Open
fix(pubsub): upgrade @opentelemetry/core to ^2.8.0 to resolve CVE-2026-54285 (#8792)#9092westarle wants to merge 1 commit into
westarle wants to merge 1 commit into
Conversation
Contributor
There was a problem hiding this comment.
Code Review
This pull request updates OpenTelemetry dependencies to version 2.8.0 and adapts the test assertions and setup to match the new API. However, the instantiation of BasicTracerProvider in handwritten/pubsub/test/tracing.ts passes a spanProcessors property in the constructor configuration, which is not supported and will result in a TypeScript compilation error. You should revert to using provider.addSpanProcessor() instead.
westarle
enabled auto-merge (squash)
August 5, 2026 12:18
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.
This PR resolves CVE-2026-54285 by upgrading
@opentelemetry/coreto^2.8.0and devDependency@opentelemetry/sdk-trace-baseto^2.8.0. It includes only the minimal required changes to OpenTelemetry SDK 2.x test initialization andReadableSpanassertions without unrelated refactoring.Fixes #8792