chore(deps): consolidate Dependabot PRs #61–#68 + sqlx 0.9 migration#69
Merged
Merged
Conversation
npm (frontend): - @hookform/resolvers: ^5.2.2 → ^5.4.0 [#68] - @tailwindcss/vite: ^4.0.0 → ^4.3.0 [#65] - react-hook-form: ^7.54.0 → ^7.76.1 [#63] - react-router: ^7.14.2 → ^7.15.1 [#62] - react-dom: 19.2.5 → 19.2.6 (lockfile) [#67] cargo: - sqlx: 0.8.6 → 0.9.0 [#66] — wrap dynamic SQL with AssertSqlSafe() - tower-http: 0.6.10 → 0.6.11 (Cargo.lock) [#64] - serde_json: 1.0.149 → 1.0.150 (Cargo.lock) [#61] Breaking-change fix: sqlx 0.9 requires SqlSafeStr for query_as/query. Dynamic-but-safe SQL in transaction_repo.rs and normalize_directions.rs wrapped with AssertSqlSafe (sort columns come from an exhaustive match, direction filter is a compile-time constant). Closes #61, #62, #63, #64, #65, #66, #67, #68 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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 May 26, 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 8 open Dependabot PRs (#61–#68) into a single branch with all quality gates passing.
Dependency Updates
Security Alerts Resolved
None open at time of consolidation.
Breaking Changes Fixed
query_as/querynow requireSqlSafeStr; dynamic strings needAssertSqlSafe()crates/finima-db/src/repos/transaction_repo.rs,crates/finima-api/src/bin/normalize_directions.rsBoth call sites use whitelisted/constant SQL fragments (sort column from exhaustive match, direction filter from compile-time constant) so wrapping with
AssertSqlSafeis safe.Quality Gates
Closes
Closes #61, #62, #63, #64, #65, #66, #67, #68