chore(deps): upgrade Rust & Python dependencies to latest#379
Merged
Conversation
Rust direct bumps in [workspace.dependencies]: - tokio 1.45 -> 1.52 - tempfile 3.20 -> 3.27 - termimad 0.34 -> 0.35 (no source changes needed) ruff (git tag 0.15.21) and pyo3 0.29 were already latest. cargo update floated all transitive crates (~57 lock entries). Python root uv.lock refreshed via 'uv lock --upgrade' (13 packages, incl. pymdown-extensions 10 -> 11, pytest 9.0 -> 9.1, bracex 2 -> 3), respecting the 7-day exclude-newer cooldown. tools/uv.lock unchanged. Verified: cargo build/clippy clean, full 'mise run test' umbrella green (382 passed), mkdocs build --strict passes.
Owner
Author
|
This change is part of the following stack: Change managed by git-spice. |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #379 +/- ##
=====================================
Coverage 93.8% 93.8%
=====================================
Files 96 96
Lines 16023 16023
Branches 118 118
=====================================
Hits 15041 15041
Misses 972 972
Partials 10 10
Flags with carried forward coverage won't be shown. Click here to find out more.
|
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.
Refreshes all Rust and Python dependencies — direct and transitive ("satellite") — to their latest resolvable versions.
Rust
Direct bumps in
[workspace.dependencies]:tokiotempfiletermimad0.x; no source changes neededruff_python_*(git tag0.15.21) andpyo30.29(abi3-py311) were already at their latest.cargo updatethen floated every transitive crate to the latest semver-compatible version (~57Cargo.lockentries changed).Python
Root
uv.lockrefreshed withuv lock --upgrade— 13 packages, respecting the repo'sexclude-newer = "7 days"supply-chain cooldown:pymdown-extensions10 → 11,bracex2 → 3pytest9.0 → 9.1,coverage7.14 → 7.15,hypothesis6.155 → 6.156, pluscertifi,click,griffelib,mkdocstrings-python,typing-extensions,wcmatch,ast-serialize,librttools/uv.lockneeded no changes. Declared>=floors are left as-is (they are minimums; the lock floats to latest).Verification
cargo build --workspace+cargo clippy --workspace --all-targets— cleanmise run testumbrella (skill-refs gate +cargo test --workspace+pytest) — 382 passed, 8 skipped (distribution suite, needs built wheels)mkdocs build --strict— passes (validates thepymdown-extensions11 major)Note — unrelated pre-existing test-isolation gap
While verifying,
project_venv_sync::sync_quiet_silently_exits_when_not_a_toolr_repofailed locally because it doesn't isolateXDG_CACHE_HOME, so it reads the developer's real toolr cache; when that cache crosses the passive orphan-hint threshold the hint leaks to stderr and trips the "--quietmust be silent" assertion. Confirmed unrelated to this PR (passes with an isolated empty cache; CI's cache is clean). Worth a separate one-line fixture fix — happy to open a follow-up.