chore(deps): consolidate 23 open Dependabot PRs (#239-267) - #268
Merged
Conversation
Applies latest-compatible bumps across backend (Cargo), frontend (npm), and CI (GitHub Actions) in one branch, plus fixes 4 pre-existing security advisories (h2, rkyv, postcss, brace-expansion) surfaced by cargo-audit and pnpm audit that were not covered by any open PR. Full gate (fmt, clippy, tests, benches, typecheck, lint, tests, build) verified green.
This was referenced Aug 25, 2026
Owner
Author
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
This was referenced Aug 25, 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.
Summary
Consolidates all 23 open Dependabot PRs into one branch/PR, applying each bump as
latest-compatible within its existing major, regenerating lockfiles once (not per-PR),
and fixing every failure surfaced along the way — both upgrade-caused and pre-existing.
PR #262 (the
develop→mainpostgres-support feature integration) is out of scopeand untouched.
Superseded PRs
taiki-e/install-actionDavidAnson/markdownlint-cli2-actionnanoid(transitive, via postcss)nanoid(direct)framer-motionpostcss(dev)idb-keyvalreact-dom+@types/react-domreact+@types/reactnode-llama-cpp@vitejs/plugin-react(dev)jsdom(dev)react-hook-formmail-parserbase64thiserror(+syngroup)regexredisfuturesfastembedanyhowserdegroup (serde, serde_json)tokiogroup (tokio, tokio-stream, tokio-util)* #263 and #250 both target
nanoid: #263 bumped a transitive resolution (viapostcss),#250 bumped the direct
apps/webdependency. Both are superseded by bumping the directdependency to
^6.0.1(latest); the transitive instance resolves independently throughthe
postcssbump and apnpm-workspace.yamloverride (see Security audit below). Theonly direct source usage (
ComposeEmail.tsx, plainnanoid()) is unaffected by the v5→v6API, and its test still passes.
base64(#247) andnanoid(direct, via #250/#263) were the only bumps requiring amanifest edit —
base64 0.22 → 0.23crosses a Cargo0.x"major", andnanoidcrossesan npm major. Every other backend crate's caret range already permitted the newer
version, so only
Cargo.lockmoved (in several cases beyond the PR's originallyproposed version, since
cargo update -p <crate>picks the current latest-compatible —e.g.
mail-parser0.11.8 not 0.11.5,redis1.6.0 not 1.5.0,thiserror2.0.20 not 2.0.19).Pre-existing fixes
None of the upgrades broke
fmt/clippy/tests/typecheck/lint/build — the full gate wasalready green on
mainbefore this branch. No pre-existing breakage to fix.Security audit
Ran
cargo audit(via.github/scripts/cargo-audit.sh, honoringbackend/audit-ignore),pnpm audit, and pulled the repo's open Dependabot alerts.cargo audit — 4 findings not covered by any open dependency PR, all fixed by bumping
the lockfile (no
Cargo.toml/manifest changes, no submodule edits):h2hyperrkyvrkyvrkyvrkyvis pulled in by the vendoredruvectorsubmodule (ruvector-core/ruvector-gnn);its own
Cargo.tomlrange already permitted 0.8.17, so this is a lockfile-only fix withno submodule edit. Re-ran
cargo auditafter: 0 vulnerabilities.pnpm audit — 4 findings, all pre-existing (unrelated to the packages any open PR
touched) and traced to two outdated security-override pins already in
frontend/pnpm-workspace.yaml(added for earlier advisories, since superseded by newerones on the same packages):
postcss(transitive)<8.5.18→8.5.18→<8.5.23→8.5.25nanoid(transitive, viapostcss)<3.3.18→3.3.18sizeis 0brace-expansion(1.x line)<1.1.17→1.1.17→<1.1.18→1.1.18brace-expansion(4.x/5.x line)<5.0.8→5.0.8<5.0.9→5.0.9Re-ran
pnpm audit --audit-level moderateafter: no known vulnerabilities found.GitHub Dependabot alerts (
gh api .../dependabot/alerts) — 9 open at branch-creationtime. Two (
nanoidGHSA-2v37-7h3g-55p8,postcssGHSA-fxqj-rqcc-2cmp) match the pnpmaudit findings above and are fixed by the same override bumps. The remaining seven
(
nanoidGHSA-28wg-ghj8-5hjv range<5.1.16, and fiveundicialerts range<7.29.0,plus
brace-expansionGHSA-rgw5-rvv9-x895) already resolve to safe versions on thisbranch as a side effect of the
jsdom/react-hook-formbumps pulling inundici@8.10.0and the direct
nanoidbump to6.0.1— confirmed viapnpm why. GitHub will closethose automatically once it rescans the new lockfile; no separate action needed.
Verification
All commands run from a clean checkout of this branch.
Backend (mirrors
.github/workflows/ci.yml):Frontend (mirrors
.github/workflows/ci.yml):🤖 Generated with Claude Code