chore(usb-forensic): release v0.3.1 — ship the widened disk-forensic requirement - #30
Merged
Conversation
…requirement The published usb-forensic 0.3.0 requires `disk-forensic = "0.9"`, and disk-forensic 0.9 requires `ewf ^0.3`, which requires `lru ^0.12` — the version window covered by RUSTSEC-2026-0002 (`IterMut` violating Stacked Borrows, patched >= 0.16.3). main already widened that to "0.11" and cleared the chain locally, but a fix on main is not a fix for consumers. issen reaches this exact lru through issen-usb -> usb-forensic, and nothing issen can do escapes a requirement that lives in OUR published manifest. Publishing is the delivery mechanism. release-plz did not propose the bump — the third instance of the same gap today, after winevt-carver and ext4fs-core. It evaluates `release_commits` PER PACKAGE by which commits touched that package's directory, and the widening changed the root workspace manifest, which the crate inherits from. A workspace-inherited dependency change is invisible to a path-scoped release trigger, so in a dependency-inheriting workspace these bumps have to be cut by hand. Verified rather than assumed: `cargo package -p usb-forensic` on this commit produces a tarball whose Cargo.toml reads `[dependencies.disk-forensic] version = "0.11"`, against `"0.9"` in the published 0.3.0, and this workspace now resolves a single lru 0.18.2 with no vulnerable copy. 10 test suites pass, fmt clean, `cargo deny check` passes.
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.
The published usb-forensic 0.3.0 requires
disk-forensic = "0.9", anddisk-forensic 0.9 requires
ewf ^0.3, which requireslru ^0.12— the versionwindow covered by RUSTSEC-2026-0002 (
IterMutviolating Stacked Borrows,patched >= 0.16.3).
main already widened that to "0.11" and cleared the chain locally, but a fix on
main is not a fix for consumers. issen reaches this exact lru through
issen-usb -> usb-forensic, and nothing issen can do escapes a requirement that
lives in OUR published manifest. Publishing is the delivery mechanism.
release-plz did not propose the bump — the third instance of the same gap today,
after winevt-carver and ext4fs-core. It evaluates
release_commitsPER PACKAGEby which commits touched that package's directory, and the widening changed the
root workspace manifest, which the crate inherits from. A workspace-inherited
dependency change is invisible to a path-scoped release trigger, so in a
dependency-inheriting workspace these bumps have to be cut by hand.
Verified rather than assumed:
cargo package -p usb-forensicon this commitproduces a tarball whose Cargo.toml reads
[dependencies.disk-forensic] version = "0.11", against"0.9"in thepublished 0.3.0, and this workspace now resolves a single lru 0.18.2 with no
vulnerable copy.
10 test suites pass, fmt clean,
cargo deny checkpasses.