chore(deps): consolidate Dependabot PRs #151–#159 (latest compatible)#160
Merged
Conversation
Brings 9 open Dependabot PRs into a single branch. All bumps are patch/minor within existing majors — no toolchain, Make, CI, or docs version references required changes. Backend (Rust): - chrono 0.4.44 → 0.4.45 (#151) Frontend (pnpm monorepo): - @radix-ui group, 10 packages (#152) - @storybook/react + storybook 10.4.2 → 10.4.3 (#153) - prettier 3.8.3 → 3.8.4 (#154) - react 19.2.6 → 19.2.7 (packages/ui), @types/react → 19.2.17 (#155) - turbo 2.9.16 → 2.9.17 (resolves 2.9.18) (#156) - @types/node 25.9.1 → 25.9.2 (#157) - react-hook-form 7.76 → 7.78.0 (#158) - lucide-react 1.16.0 → 1.17.0 (#159) Also fixes a pre-existing clippy failure (unused tokio::io::{AsyncRead, AsyncWrite} import in backend/src/email/imap.rs) that broke the `cargo clippy --workspace --all-targets -- -D warnings` CI gate; the types are referenced fully-qualified, so the import was dead. Verified: - frontend: pnpm --frozen-lockfile, turbo typecheck (5), lint (1), test (204 passed), build ✓ - backend: cargo fmt --check, clippy -D warnings clean, cargo test --workspace (all passed, 0 failed)
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 Jun 15, 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.
Consolidates the 9 open Dependabot PRs into a single branch, applying each bump as latest compatible within its existing major and regenerating the lockfiles once. No toolchain, Make, CI (
ci.yml/release.yml), or docs version references needed changes — every bump is patch/minor.Superseded Dependabot PRs
chrono@radix-ui/*(10 pkgs: dialog, dropdown-menu, label, popover, progress, select, separator, switch, tabs, tooltip)@storybook/react,storybookprettierreact(packages/ui),@types/reactturbo@types/nodereact-hook-formlucide-reactEach of the above PRs is closed in favor of this one.
Drive-by fix
Removed a dead
use tokio::io::{AsyncRead, AsyncWrite};import inbackend/src/email/imap.rs(the types are referenced fully-qualified). This was a pre-existing failure of thecargo clippy --workspace --all-targets -- -D warningsCI gate, unrelated to the dependency bumps.Verification
Frontend (pnpm 11.5.2):
pnpm install --frozen-lockfile— lockfile reproduces cleanturbo typecheck— 5/5 ✓turbo lint— 1/1 ✓turbo test— 204 passed ✓turbo build— ✓Backend (Rust):
cargo fmt --all --check— cleancargo clippy --workspace --all-targets -- -D warnings— cleancargo test --workspace— all passed, 0 failed