Skip to content

Commit ae59112

Browse files
fix: resolve dependabot security alerts (#681)
* fix: resolve dependabot security alerts Add yarn resolutions and npm overrides to force patched versions of vulnerable transitive dependencies: - uuid >=14.0.0 (MEDIUM) - brace-expansion >=1.1.13 (MEDIUM) - follow-redirects >=1.16.0 (MEDIUM) - lodash >=4.18.0 (HIGH+MEDIUM) - path-to-regexp >=0.1.13 (HIGH) - serialize-javascript >=7.0.5 (HIGH+MEDIUM) - node-forge >=1.4.0 (HIGH x6) - picomatch >=2.3.2 (HIGH+MEDIUM) - qs >=6.14.2 (LOW+MEDIUM) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> * fix: pin path-to-regexp to ^0.1.13 to preserve API compatibility >=0.1.13 resolved to v8.x which has a breaking API change (no default function export). Docusaurus/react-router requires the v0.1.x API, so pin to ^0.1.13 which gets the security fix while staying compatible. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 2477798 commit ae59112

3 files changed

Lines changed: 376 additions & 438 deletions

File tree

package-lock.json

Lines changed: 56 additions & 86 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,26 @@
5353
"node": ">=24.0"
5454
},
5555
"resolutions": {
56-
"webpack-dev-server": ">=5.2.1"
56+
"webpack-dev-server": ">=5.2.1",
57+
"uuid": ">=14.0.0",
58+
"brace-expansion": ">=1.1.13",
59+
"follow-redirects": ">=1.16.0",
60+
"lodash": ">=4.18.0",
61+
"path-to-regexp": "^0.1.13",
62+
"serialize-javascript": ">=7.0.5",
63+
"node-forge": ">=1.4.0",
64+
"picomatch": ">=2.3.2",
65+
"qs": ">=6.14.2"
66+
},
67+
"overrides": {
68+
"uuid": ">=14.0.0",
69+
"brace-expansion": ">=1.1.13",
70+
"follow-redirects": ">=1.16.0",
71+
"lodash": ">=4.18.0",
72+
"path-to-regexp": "^0.1.13",
73+
"serialize-javascript": ">=7.0.5",
74+
"node-forge": ">=1.4.0",
75+
"picomatch": ">=2.3.2",
76+
"qs": ">=6.14.2"
5777
}
5878
}

0 commit comments

Comments
 (0)