fix(deps): clear production npm audit advisories via lockfile bumps#77
Merged
Conversation
Resolve the four advisories reported by `npm audit --audit-level=moderate --omit=dev` (the CI audit gate) with lockfile-only transitive updates; no package.json ranges change: - brace-expansion 5.0.5 -> 5.0.6 (GHSA-jxxr-4gwj-5jf2, ReDoS) - form-data -> 4.0.6 (GHSA-hmw2-7cc7-3qxx, CRLF injection) - ws 8.20.0 -> 8.21.0 (GHSA-58qx-3vcg-4xpx, GHSA-96hv-2xvq-fx4p) Production `npm audit` is back to zero vulnerabilities, unblocking the audit check on the open Dependabot PRs (#75, #76). Type-check, lint, build, and the full test suite (5493 tests) pass. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
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.
Summary
Clears the four production-dependency advisories reported by the CI
npm auditgate (npm audit --audit-level=moderate --omit=dev) using lockfile-only transitive bumps. Nopackage.jsonranges change. This unblocks the audit check that is currently failing on the open Dependabot PRs (#75, #76).Changes Made
npm audit fix):brace-expansion5.0.5 → 5.0.6 — GHSA-jxxr-4gwj-5jf2 (moderate, ReDoS)form-data→ 4.0.6 — GHSA-hmw2-7cc7-3qxx (high, CRLF injection)ws8.20.0 → 8.21.0 — GHSA-58qx-3vcg-4xpx + GHSA-96hv-2xvq-fx4p (high, uninitialized-memory disclosure & memory-exhaustion DoS)### Securityentry under Unreleased.Test Coverage
No source changes, so no new tests. Verification run locally against the updated lockfile:
npm audit --omit=dev→ 0 vulnerabilities (was 4)npm run type-check✅npm run lint✅npm run build✅npm test✅ — 231 suites, 5493 tests passBackward Compatibility
✅ Maintained: lockfile-only change; all bumps are semver-compatible patch/minor updates of transitive dependencies. No
package.jsondependency ranges modified, no public API or CLI behavior change.Size: Small ✓
🤖 Generated with Claude Code