Skip to content

Update dependencies#967

Open
martpie wants to merge 1 commit into
masterfrom
updeps-again
Open

Update dependencies#967
martpie wants to merge 1 commit into
masterfrom
updeps-again

Conversation

@martpie

@martpie martpie commented Jun 7, 2026

Copy link
Copy Markdown
Owner

No description provided.

Copilot AI review requested due to automatic review settings June 7, 2026 21:17

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates front-end and Tauri/Rust dependencies (notably Lingui, React, TanStack, and sqlx) and includes the resulting lockfile and translation catalog reformatting to keep the repository consistent after the upgrade.

Changes:

  • Bump JavaScript dependencies (React/TanStack/Lingui/etc.), update pnpm-lock.yaml, and update packageManager pnpm version.
  • Bump Rust dependencies (including sqlx 0.9.0) and adjust database/migration code to match updated APIs.
  • Reformat .po translation entries (line-wrapping) consistent with updated tooling output.

Reviewed changes

Copilot reviewed 11 out of 13 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
src/translations/zh-TW.po Line-wrapped long msgids after translation tooling update.
src/translations/zh-CN.po Line-wrapped long msgids after translation tooling update.
src/translations/ru.po Line-wrapped long msgids/msgstrs after translation tooling update.
src/translations/ja.po Line-wrapped long msgids/msgstrs after translation tooling update.
src/translations/fr.po Line-wrapped long msgids/msgstrs after translation tooling update.
src/translations/es.po Line-wrapped long msgids/msgstrs after translation tooling update.
src/translations/en.po Line-wrapped long msgids/msgstrs after translation tooling update.
src-tauri/src/plugins/db.rs Update sqlx migration invocation for new API.
src-tauri/src/libs/database.rs Adjust dynamic SQL creation for sqlx 0.9 (AssertSqlSafe).
src-tauri/Cargo.toml Update Rust dependency versions (sqlx, lofty, plugin versions, etc.).
pnpm-lock.yaml Lockfile updates reflecting JS dependency bumps.
package.json Update JS dependency versions, pnpm version, and remove the knip script.
Files not reviewed (1)
  • pnpm-lock.yaml: Language not supported

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines 175 to +179
let placeholders = track_ids.iter().map(|_| "?").collect::<Vec<_>>().join(", ");
let query = format!("DELETE FROM tracks WHERE id IN ({})", placeholders);

let mut query_builder = sqlx::query(&query);
// AssertSqlSafe: only `?` placeholders are used; user data is bound, not interpolated
let mut query_builder = sqlx::query(sqlx::AssertSqlSafe(query));
@martpie martpie force-pushed the updeps-again branch 3 times, most recently from 592e4f1 to 84b28ef Compare June 7, 2026 21:59
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants