build(deps): npm audit fix for docs-website to resolve security advisories - #11802
Merged
Conversation
…ories Committing docs-website/package-lock.json in #11783 exposed the full transitive npm tree to GitHub security scanning, surfacing 54 advisories. Dependabot's grouped security PR crashed internally (CreateGroupUpdatePullRequest), so it could not apply the fixes. This applies `npm audit fix` (non-breaking, lockfile-only — package.json and its declared semver ranges are unchanged). Resolves 6 advisories including the critical shell-quote (1.8.3 -> 1.9.0, dependabot/45) and the high-severity ws (-> 7.5.11 / 8.21.0) and tar (-> 7.5.7). Covers all 9 deps Dependabot's crashed group targeted. `npm run build` verified. The remaining vercel/@vercel chain only resolves via a breaking major downgrade (vercel 54 -> 50) and is left for upstream/Dependabot. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. |
bogdankostic
approved these changes
Jun 29, 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.
Related Issues
Part of https://github.com/deepset-ai/haystack-private/issues/444
After #11783 committed
docs-website/package-lock.json(previously gitignored), the full transitive npm tree became visible to GitHub security scanning for the first time, surfacing 54 advisories. Dependabot's grouped security PR for these then crashed internally (CreateGroupUpdatePullRequest, a sorbet-runtime error — failed run), reportingunknown_errorfor all 9 deps including dependabot/45 (shell-quote). It could not apply the fixes, so this does them manually.Proposed Changes:
Apply
npm audit fixtodocs-website— non-breaking, lockfile-only.package.jsonand its declared semver ranges are unchanged.shell-quote1.8.3 → 1.9.0 (critical, dependabot/45 ✓)ws→ 7.5.11 / 8.21.0,tar→ 7.5.7 (high ✓)Not addressed here: the ~42 remaining advisories in the
vercel/@vercel/*chain only resolve vianpm audit fix --force, which downgradesvercel^54.2.0→50.41.0(a breaking major regression of a direct dependency used forvercel devand serverless functions). Left for upstream/Dependabot. A further ~18 (mostly@docusaurus/*moderates,serialize-javascript) have no upstream fix reachable in the current tree yet.How did you test it?
npm run buildsucceeds locallyNotes for the reviewer
Checklist
🤖 Generated with Claude Code