fix: remediate high & critical Dependabot vulnerabilities - #165
Merged
Conversation
- Update ajv from ^6.12.6 to ^6.14.0 (fixes moderate ReDoS) - Update uuid from ^9.0.1 to ^11.1.1 (fixes moderate buffer bounds check) - Update @vscode/test-cli from ^0.0.4 to ^0.0.12 (fixes high minimatch/glob CVEs) - Remove unused request dependency (deprecated, unfixable SSRF) - Add yarn resolutions for tar, brace-expansion, tough-cookie, micromatch, qs, ip-address Reduces vulnerabilities from 56 (19 high, 33 moderate) to 3 (1 moderate, 2 low). Co-Authored-By: Patrick Kaeding <patrick@kaeding.name>
Contributor
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
The >=1.1.13 resolution resolved to v5.x which is incompatible with minimatch's ESM import of brace-expansion. Co-Authored-By: Patrick Kaeding <patrick@kaeding.name>
dakotasanchez
approved these changes
Jun 12, 2026
cspath1
approved these changes
Jun 12, 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
Remediates all 19 high and 32 of 33 moderate severity vulnerabilities identified by
yarn audit.Direct dependency changes:
ajv:^6.12.6→^6.14.0(fixes ReDoS with$dataoption)uuid:^9.0.1→^11.1.1(fixes missing buffer bounds check in v3/v5/v6)@vscode/test-cli:^0.0.4→^0.0.12(fixes high-severity minimatch ReDoS and glob command injection)requestdependency (deprecated, unfixable SSRF vulnerability)Yarn resolutions added for transitive dependencies:
tar>=7.5.16,brace-expansion>=1.1.13,tough-cookie>=4.1.3,micromatch>=4.0.8,qs>=6.14.1,ip-address>=10.1.1Before: 56 vulnerabilities (19 high, 33 moderate, 4 low)
After: 3 vulnerabilities (1 moderate, 2 low) — all in deep transitive dev-only dependency chains (
nyc,vscode-test)Link to Devin session: https://app.devin.ai/sessions/0ebfb6d0e5c241a089740010ad5e6167
Requested by: @pkaeding