🔧 deps: fix Dependabot security alerts (#68, #69, #70, #71, #72, #73, #74, #75)#323
Merged
Conversation
…(GHSA fixes) Fixes 4 Dependabot alerts in root pnpm-lock.yaml: - #75/#70: fast-uri host confusion via literal backslash authority delimiter (<=3.1.3 -> patched 3.1.4) - #71/#69: fast-uri host confusion via failed IDN canonicalization (<3.1.3 -> patched 3.1.3) - #68: @hono/node-server path traversal in serve-static on Windows via encoded backslash (<2.0.5 -> patched 2.0.5) Both are transitive (fast-uri via ajv via @modelcontextprotocol/sdk; @hono/node-server via hono via the same MCP SDK chain) — bumped via pnpm.overrides, no direct dependency changed. Verified: pnpm audit clean, build/typecheck/test all pass (631 tests).
…patched versions (GHSA fixes) Fixes 4 Dependabot alerts in website/pnpm-lock.yaml: - #75/#70/#71/#69-equivalent website copy: fast-uri host confusion (^3.1.2 -> ^3.1.4) - #73: DOMPurify CUSTOM_ELEMENT_HANDLING bypasses afterSanitizeElements for allowed custom elements (^3.4.11 -> ^3.4.12) - #72: linkify-it quadratic-complexity DoS via mailto: validator scan-loop (added override, <=5.0.1 -> ^5.0.2) - #74: SVGO removeScripts plugin leaves some executable scripts intact (added override, <3.3.4 -> ^3.3.4) All four are transitive deps of the Docusaurus toolchain. Verified: pnpm audit clean, docusaurus build + tsc typecheck both pass.
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.



Fixes 8 open Dependabot security alerts:
Root
pnpm-lock.yaml:fast-urihost confusion via literal backslash authority delimiter (patched 3.1.4)fast-urihost confusion via failed IDN canonicalization (patched 3.1.3)@hono/node-serverpath traversal inserve-staticon Windows via encoded backslash (patched 2.0.5)website/pnpm-lock.yaml:^3.1.2->^3.1.4dompurifyCUSTOM_ELEMENT_HANDLINGbypassesafterSanitizeElements(patched 3.4.12)linkify-itquadratic-complexity DoS viamailto:validator (patched 5.0.2)svgoremoveScriptsplugin leaves some executable scripts intact (patched 3.3.4)All 8 are transitive dependencies (fast-uri/@hono-node-server via the MCP SDK -> openai-agents chain; dompurify/linkify-it/svgo via the Docusaurus toolchain in
website/). Fixed viapnpm.overridesin the respectivepackage.json, no direct dependency changed.Verified locally:
corepack pnpm@11.13.0 audit --audit-level=highclean on both root and website (matches CI'sdependency-auditjob)docusaurus buildandtsctypecheck both pass