chore(deps): bundle dependency and security updates#117
Merged
Conversation
Bundles the following Dependabot updates into a single change: - tokio 1.50.0 -> 1.52.1 (#115) - clap 4.6.0 -> 4.6.1 (#114) - rustls-webpki 0.103.10 -> 0.103.13 (#113) - tray-icon 0.21 -> 0.22 (#110) - softprops/action-gh-release v2 -> v3 (#112) - vite 6 -> 8, dropping the flagged esbuild tree (#116) Also align the duplicate `__TAURI__` global declaration in history.ts with App.ts so `tsc` passes under the vite 8 frontend build. Excludes ndarray 0.16 -> 0.17 (#109): ort 2.0.0-rc.10 pins ndarray 0.16, so bumping the direct dependency breaks ort::Tensor::from_array.
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.
Bundles the open Dependabot dependency/security updates into a single PR.
Included
tokioclaprustls-webpkitray-iconsoftprops/action-gh-releasevitePlus a small necessary fix: the
vite6 → 8 bump meansnpm run build(tsc && vite build) now runs the type-check, which surfaced a pre-existing duplicatewindow.__TAURI__global declaration.src/history.tsis aligned with the fuller declaration already present insrc/App.tssotscpasses. No runtime behavior change.Excluded
ndarray0.16 → 0.17 — left open.ort2.0.0-rc.10 pinsndarray = "0.16", and the engines passndarrayarrays intoort::value::Tensor::from_array(...). Bumping the direct dependency to 0.17 would create two incompatiblendarrayversions and fail to compile. This update needs anortrelease that supportsndarray0.17 (or a code change), so it can't be bundled here.Verification
Run locally on macOS:
cargo build --workspace --exclude murmur-copilot --all-targets✅cargo test --workspace --exclude murmur-copilot -- --test-threads=1✅ (344 passed)cargo clippy --workspace --exclude murmur-copilot --all-targets -- -D warnings✅npm run buildincrates/murmur-copilot(tsc + vite 8) ✅After this merges, Dependabot will auto-close #110, #112, #113, #114, #115, and #116. #109 remains open.