Skip to content

Commit 9282cf7

Browse files
committed
Auto merge of #11839 - djc:downgrading-status, r=weihanglo
Accurately show status when downgrading dependencies ### What does this PR try to resolve? A few times now I've ran into issues where Cargo ends up downgrading a dependency in order to satisfy a pinned dependency somewhere in the dependency graph. Unfortunately this is not clear in the output of `cargo update`, which just shows all the changed dependencies as `Updating`. References: * #5702 * [Finding a pinned dependency edge](https://users.rust-lang.org/t/finding-a-pinned-dependency-edge/81157) * tokio-rs/axum#1814 ### How should we test and review this PR? This is a small change that tries to make dependency downgrades stand out more in the output of `cargo update`. I have not added any new tests since the existing tests seem to cover this functionality. Some tests still fail, these refer to Git dependencies. I'm honestly not sure how to handle these, so I'd like to get some feedback on this before I fix those tests up. Git commits form a DAG, so one option is to see if the new commit is an ancestor of the old one (mark as "updating"), if the old commit is an ancestor of the new one (mark as "downgrading"), or neither (could be from parallel branches) we could compare based on timestamp in that case. ### To do * Fix up tests for Git dependency updates
2 parents 71ea049 + 20a5d2b commit 9282cf7

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

crates/cargo-test-support/src/compare.rs

+1
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@ fn substitute_macros(input: &str) -> String {
192192
("[CHECKING]", " Checking"),
193193
("[COMPLETED]", " Completed"),
194194
("[CREATED]", " Created"),
195+
("[DOWNGRADING]", " Downgrading"),
195196
("[FINISHED]", " Finished"),
196197
("[ERROR]", "error:"),
197198
("[WARNING]", "warning:"),

src/cargo/ops/cargo_generate_lockfile.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use crate::util::CargoResult;
88
use anyhow::Context;
99
use log::debug;
1010
use std::collections::{BTreeMap, HashSet};
11-
use termcolor::Color::{self, Cyan, Green, Red};
11+
use termcolor::Color::{self, Cyan, Green, Red, Yellow};
1212

1313
pub struct UpdateOptions<'a> {
1414
pub config: &'a Config,
@@ -142,7 +142,12 @@ pub fn update_lockfile(ws: &Workspace<'_>, opts: &UpdateOptions<'_>) -> CargoRes
142142
} else {
143143
format!("{} -> v{}", removed[0], added[0].version())
144144
};
145-
print_change("Updating", msg, Green)?;
145+
146+
if removed[0].version() > added[0].version() {
147+
print_change("Downgrading", msg, Yellow)?;
148+
} else {
149+
print_change("Updating", msg, Green)?;
150+
}
146151
} else {
147152
for package in removed.iter() {
148153
print_change("Removing", format!("{}", package), Red)?;

tests/testsuite/offline.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,7 @@ fn main(){
657657
.with_status(0)
658658
.with_stderr(
659659
"\
660-
[UPDATING] present_dep v1.2.9 -> v1.2.3
660+
[DOWNGRADING] present_dep v1.2.9 -> v1.2.3
661661
",
662662
)
663663
.run();

tests/testsuite/update.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ fn update_precise() {
385385
.with_stderr(
386386
"\
387387
[UPDATING] `[..]` index
388-
[UPDATING] serde v0.2.1 -> v0.2.0
388+
[DOWNGRADING] serde v0.2.1 -> v0.2.0
389389
",
390390
)
391391
.run();
@@ -492,7 +492,7 @@ fn update_precise_first_run() {
492492
.with_stderr(
493493
"\
494494
[UPDATING] `[..]` index
495-
[UPDATING] serde v0.2.1 -> v0.2.0
495+
[DOWNGRADING] serde v0.2.1 -> v0.2.0
496496
",
497497
)
498498
.run();

0 commit comments

Comments
 (0)