-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breaking change in cargo_util
0.1.3, in semver-minor version!
#10803
Labels
C-bug
Category: bug
P-high
Priority: High
regression-from-stable-to-stable
Regression in stable that worked in a previous stable release.
Comments
Apologies for that, we need to be more vigilant in handling versions around here. I'll start the process of getting a version bump and yanking 0.1.3 of cargo-util. |
This was referenced Jun 30, 2022
ehuss
added
P-high
Priority: High
regression-from-stable-to-stable
Regression in stable that worked in a previous stable release.
labels
Jun 30, 2022
I have yanked cargo-util 0.1.3 and cargo 0.63.0 and published new versions (0.2.0 and 0.63.1 respectively). Closing as fixed by #10806. |
bors
added a commit
that referenced
this issue
Jul 1, 2022
Bump cargo-util version. #10546 made a semver-incompatible change to the API of `ProcessBuilder::get_args`. Unfortunately we did not catch that until it was published. This bumps the version of cargo-util to 0.2.1 to accommodate that change. Stable will get version 0.2.0 so that the changes on beta can be released as 0.2.1 in their own time. cc #10803
That fixes it, thanks! |
Can confirm this resolves the problems :-) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
C-bug
Category: bug
P-high
Priority: High
regression-from-stable-to-stable
Regression in stable that worked in a previous stable release.
Problem
ProcessBuilder::get_args returns an
impl Iterator<Item = &OsString>
now, whereas previously, it returned&[OsString]
.This has the effect that non-locked builds of
cargo-outdated
andcargo-geiger
fail (these crates are depending oncargo
1.61
or1.60
).The text was updated successfully, but these errors were encountered: