Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: resolve 5 Dependabot security alerts via npm overrides
Add and update npm overrides to resolve high and moderate severity
vulnerabilities in transitive dependencies:

- tar: upgrade to ^7.5.11 (GHSA-9ppj-qmqm-q256, high - symlink path traversal)
- picomatch: upgrade to ^4.0.4 (GHSA-c2c7-rcm5-vvqj, high - ReDoS;
  GHSA-3v7f-55p6-f55p, medium - method injection)
- serialize-javascript: upgrade override to ^7.0.5 (GHSA-qj8w-gfj5-8c6v,
  medium - CPU exhaustion DoS)
- brace-expansion: upgrade to ^2.0.3 and ^1.1.13 (GHSA-f886-m6hf-6m8v,
  medium - process hang and memory exhaustion)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
  • Loading branch information
zawata and claude committed Apr 1, 2026
commit 6e0c5702ffadcac3d19b95c93e189eb3bc38add0
135 changes: 59 additions & 76 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,22 @@
"tar-fs": "^3.0.9"
},
"overrides": {
"tar": "^7.5.11",
"picomatch": "^4.0.4",
"mocha": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.4"
"serialize-javascript": "^7.0.5",
"brace-expansion": "^2.0.3"
},
"node-gyp": {
"brace-expansion": "^2.0.3"
},
"jshint": {
"minimatch": "3.1.5"
"minimatch": "3.1.5",
"brace-expansion": "^1.1.13"
},
"clean-for-publish": {
"brace-expansion": "^1.1.13"
}
},
"devDependencies": {
Expand Down
Loading