fix(deps): update vulnerable dependencies#855
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
@claude review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 93b39091f6
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
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
@opentelemetry/coreresolves to a patched version across the workspace lockfile.pnpm-lock.yamlso the vulnerablejs-yamlandlinkify-ittransitive versions are replaced with patched releases.Linear
Greptile Summary
This PR updates OpenTelemetry dev dependencies across the workspace from the
0.217.0family to0.220.0and refreshespnpm-lock.yamlto remediate three transitive vulnerability chains.js-yaml4.1.0→4.2.0: fixes CVE-2025-64718 (prototype pollution) and CVE-2026-53550 (DoS via quadratic merge-key processing).linkify-it5.0.0→5.0.1: fixes CVE-2026-48801 (DoS via O(N²) link matching).protobufjs@8.0.1removed: the old@opentelemetry/otlp-transformer@0.217.0snapshot pulled in the vulnerableprotobufjs@8.0.1; upgrading to0.220.0drops theprotobufjsdependency entirely, so the vulnerability is gone.Confidence Score: 4/5
Safe to merge. All three stated vulnerability chains are confirmed remediated in the refreshed lockfile, and the only runtime-affecting packages here are devDependencies used for testing and tracing instrumentation.
All three vulnerabilities are correctly fixed — js-yaml bumped to 4.2.0, linkify-it bumped to 5.0.1, and protobufjs@8.0.1 dropped by the otlp-transformer upgrade. The one remaining issue is a stale override entry in package.json that has no runtime effect but is misleading dead code.
The stale
@opentelemetry/otlp-transformer@0.205.0>protobufjsentry inpackage.jsonresolutions should be removed on this PR since it was originally added to address the same package family being updated here.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[package.json resolutions] --> B["@grpc/proto-loader@0.8.1 → protobufjs@7.6.4 ✅"] A --> C["@opentelemetry/otlp-transformer@0.205.0 → protobufjs@7.6.4 ⚠️ STALE"] A --> D["ml-spectra-processing: 14.14.0 ✅"] E[OTel packages updated] --> F["otlp-transformer@0.217.0 → protobufjs@8.0.1 VULN"] E --> G["otlp-transformer@0.220.0 → NO protobufjs dep ✅"] H[Transitive vulns fixed] --> I["js-yaml 4.1.0 → 4.2.0\nCVE-2025-64718, CVE-2026-53550 ✅"] H --> J["linkify-it 5.0.0 → 5.0.1\nCVE-2026-48801 ✅"] H --> K["protobufjs@8.0.1 removed\nvia otlp-transformer upgrade ✅"] style C fill:#ffcc00,stroke:#ff9900 style F fill:#ff4444,stroke:#cc0000,color:#fff style G fill:#44bb44,stroke:#228822,color:#fff style I fill:#44bb44,stroke:#228822,color:#fff style J fill:#44bb44,stroke:#228822,color:#fff style K fill:#44bb44,stroke:#228822,color:#fff%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A[package.json resolutions] --> B["@grpc/proto-loader@0.8.1 → protobufjs@7.6.4 ✅"] A --> C["@opentelemetry/otlp-transformer@0.205.0 → protobufjs@7.6.4 ⚠️ STALE"] A --> D["ml-spectra-processing: 14.14.0 ✅"] E[OTel packages updated] --> F["otlp-transformer@0.217.0 → protobufjs@8.0.1 VULN"] E --> G["otlp-transformer@0.220.0 → NO protobufjs dep ✅"] H[Transitive vulns fixed] --> I["js-yaml 4.1.0 → 4.2.0\nCVE-2025-64718, CVE-2026-53550 ✅"] H --> J["linkify-it 5.0.0 → 5.0.1\nCVE-2026-48801 ✅"] H --> K["protobufjs@8.0.1 removed\nvia otlp-transformer upgrade ✅"] style C fill:#ffcc00,stroke:#ff9900 style F fill:#ff4444,stroke:#cc0000,color:#fff style G fill:#44bb44,stroke:#228822,color:#fff style I fill:#44bb44,stroke:#228822,color:#fff style J fill:#44bb44,stroke:#228822,color:#fff style K fill:#44bb44,stroke:#228822,color:#fffPrompt To Fix All With AI
Reviews (1): Last reviewed commit: "fix(deps): update vulnerable dependencie..." | Re-trigger Greptile