fix(deps): resolve pnpm audit failures in transitive dependencies - #89
Merged
Conversation
- bump hono 4.12.26 -> 4.12.31 and fast-uri 3.1.2 -> 3.1.4 (lockfile only) - update brace-expansion overrides: the pins added for the previous advisory (1.1.13 / 5.0.6) are exactly the versions flagged by GHSA-3jxr-9vmj-r5cp; now pin 1.1.16 / 5.0.7 - ignore GHSA-frvp-7c67-39w9 (@hono/node-server serve-static path traversal on Windows): the fix is a major (2.0.5) outside the MCP SDK's ^1.19.9 range, and dcd-mcp is stdio-only and never serves static files. Remove the exemption when the SDK adopts 2.x. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…error Debug commit — will be reverted once the failure cause is captured. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… hidden error" This reverts commit c61643d.
Code reviewNo issues found. Checked for bugs and CLAUDE.md compliance. |
finalerock44
added a commit
that referenced
this pull request
Aug 7, 2026
Promote from dev to stable: * feat: client-side envelope encryption of app binaries, flow zips and env vars (#94, #101) — opt-in via `--encrypt` / `DCD_ENCRYPT_BINARIES=1` and off by default, so uploads stay byte-identical unless asked for. Per-upload DEK, chunked AES-256-GCM container, X25519 sealed-box DEK wrap; encrypted binaries dedup on the plaintext hash so re-uploads still hit the cache. * feat(artifacts): prefer server-assembled bundle delivery for downloads (#93) — falls back to the inline endpoint on 501, so it degrades cleanly against an API that has not shipped bundles. * feat(device): add Android API level 37 (Android 17) (#107) — the flag enum accepts 37, but the device/API-level pair is validated against the compatibility matrix the *target* API serves, and production still tops out at 36, so 37 is refused client-side until the platform gate flips. * refactor(cloud): remove the enterprise-only --mitmHost / --mitmPath flags (#102). The submitted config payload for runs that never passed them is byte-identical. * fix(deps) / deps: clear every outstanding pnpm audit advisory (#89, #92, #95, #100, #106), bump chalk 5 -> 6, and regenerate the schema types from the current API swagger (#105). No platform prerequisite this time: the envelope decrypt half (dcd api + simulators) is already on production with both env KEK public keys pinned, bundle delivery has a 501 fallback, and API 37 is gated server-side. Carries only the source delta — package.json version, CHANGELOG.md and the release-please manifests stay as release-please left them on production. Release-As: 5.3.0
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
CI's
pnpm audit --audit-level moderategate is failing on every PR (8 vulnerabilities: 4 high, 4 moderate), all in transitive dependencies. This clears the audit:hono4.12.26 → 4.12.31,fast-uri3.1.2 → 3.1.4 (under@modelcontextprotocol/sdk) — patched versions fit the parents' semver ranges, so this is a lockfile-only update; no dependency specs changed.brace-expansion(GHSA-3jxr-9vmj-r5cp) — the existingpnpm.overrides, added for a previous brace-expansion advisory, were pinning 1.1.13 / 5.0.6, which are exactly the versions the new advisory flags. Overrides updated to 1.1.16 / 5.0.7 (and the 4.x range widened to>=3.0.0to match the advisory).@hono/node-server(GHSA-frvp-7c67-39w9) — not fixable by updating: the patch is in 2.0.5 (a major), and the MCP SDK — even at its latest release — pins^1.19.9. Added apnpm.auditConfig.ignoreGhsasexemption for this single advisory rather than force-overriding a major into the SDK. The vulnerability is path traversal inserve-staticover HTTP on Windows;dcd-mcpis stdio-only and never serves static files, so the vulnerable path is unreachable. Remove the exemption once the SDK adopts@hono/node-server2.x.pnpm audit --audit-level moderatenow exits 0 (the one remaining moderate is the explicitly ignored GHSA).Test plan
pnpm audit --audit-level moderateexits 0pnpm typecheck,pnpm lint,pnpm buildpass locally🤖 Generated with Claude Code
Need help on this PR? Tag
@codesmith-botwith what you need. Autofix is disabled.