chore: sync lockfile + clear 8 npm audit advisories - #59
Merged
Conversation
…ries `npm ci` against the existing lockfile was failing with "Invalid: lock file's @nuxt/schema@3.21.2 does not satisfy @nuxt/schema@4.4.2" (and similar drift on @base-org/account, crossws, etc.). Running `npm install` reconciles the lock within existing semver ranges and incidentally bumps transitive deps past 8 of 10 open npm-audit advisories: - high (3): serialize-javascript RCE+DoS chain via @rollup/plugin-terser → nitropack - low (1): nuxt client-side path traversal in Island Payload Revival - mod (4): netlify/uuid chain (uuid bounds-check via @netlify/dev-utils → @netlify/blobs) Remaining (2): axios SSRF/cloud-metadata exfiltration via @coinbase/cdp-sdk → @base-org/account → @reown/appkit. Blocked on upstream @coinbase/cdp-sdk releasing with axios >= 1.15. Risk for desktop app is theoretical (no SSR, no cloud-metadata endpoints reachable). Defer until upstream cuts a fix. No package.json changes — all transitive moves were within `^x.y.z` ranges. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
9 tasks
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
npm ciwas failing onmainwith lockfile drift errors (@nuxt/schema 3.21.2vs4.4.2,@base-org/account 2.4.0vs2.5.4, missingbrotli-wasm, etc.). Runningnpm installreconciles the lockfile within existing semver ranges.npm auditadvisories.package.jsonis untouched — all moves are transitive within existing^x.y.zranges.Cleared advisories
Remaining (deferred)
@coinbase/cdp-sdkpins axios1.0.0 - 1.14.0Both flow through
@reown/appkit-adapter-wagmi → @reown/appkit-utils + @wagmi/connectors → @base-org/account → @coinbase/cdp-sdk → axios. Risk for a desktop Tauri app is theoretical: no server-side rendering, no cloud-metadata endpoint reachable from a typical user network, and the Coinbase smart-account flow isn't in our common upload path. Will clear when@coinbase/cdp-sdkreleases a version pinning axios>= 1.15.npm audit fix --forcewas attempted and is a no-op for these — npm misreports "fix available" but no in-tree resolution exists.Test plan
npm installsucceeds without engine errors blocking installnpm ls @tauri-apps/plugin-dialogshows 2.7.0 (matches Rust crate; no version-mismatched warning at startup)npm run tauri:devlaunches the app and bootstrap completes (Autonomi connect succeeded (N peers))npm auditreports 2 moderate (axios chain only)🤖 Generated with Claude Code