Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .iyarc
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@ GHSA-34x7-hfp2-rc4v

# Excluded because:
# - Transitive dependency through lerna, depcheck, glob, mocha, yeoman-generator
# - minimatch 10.x introduces breaking API changes incompatible with lerna v9.0.0
# - minimatch 10.x introduces breaking API changes incompatible with lerna v9.0.4
# (changed from default export to named exports, causing "is not a function" error)
# - This CVE (ReDoS in minimatch <10.2.1) affects glob pattern matching with repeated wildcards
# - Our usage is dev-time tooling only (build, test, file search)
# - Mitigated by controlled inputs (our own build scripts, not user-provided patterns)
# - No practical exploit path as all glob patterns are hardcoded in our codebase
GHSA-3ppc-4f35-3m26
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"https-browserify": "^1.0.0",
"husky": "^8.0.1",
"improved-yarn-audit": "^3.0.0",
"lerna": "^9.0.0",
"lerna": "^9.0.4",
"lint-staged": "^12.4.1",
"make-dir": "^3.1.0",
"mocha": "10.6.0",
Expand Down Expand Up @@ -62,10 +62,6 @@
},
"resolutions": {
"qs": "6.14.1",
"**/lerna/**/glob": "11.1.0",
"**/yeoman-generator/**/glob": "11.1.0",
"**/cacache/glob": "11.1.0",
"**/pacote/glob": "11.1.0",
"**/sha.js": ">=2.4.12",
"jspdf": ">=4.1.0",
"@ethereumjs/util": "8.0.3",
Expand Down
Loading