Skip to content

Commit 38b39a7

Browse files
committed
Auto merge of #13974 - weihanglo:precise-yank, r=arlosi
feat: stabilize `cargo update --precise <yanked>` ### What does this PR try to resolve? Stabilize `cargo update --precise <yanked>`. The cargo team has discussed the stabilization in the meeting today. The interface of this is quite small and not as controversial as `--precise <pre-release>`, since there is no version requirement operators involved. We'd like to move forward and stabilize this part. Note that `--precise <yanked>` allows using yanked version only for the specified package, We leave the cascading allowing yanked versions (e.g. <#4225 (comment)>) as a future extension. ### How should we test and review this PR? Check if any adjustment needed for warnings and CLI help text. ### Additional information cc <#4225>.
2 parents cbc12a2 + a076f79 commit 38b39a7

File tree

6 files changed

+13
-38
lines changed

6 files changed

+13
-38
lines changed

src/cargo/sources/registry/mod.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -819,15 +819,10 @@ impl<'gctx> Source for RegistrySource<'gctx> {
819819
callback(s);
820820
} else if req.is_precise() {
821821
precise_yanked_in_use = true;
822-
if self.gctx.cli_unstable().unstable_options {
823-
callback(s);
824-
}
822+
callback(s);
825823
}
826824
}))?;
827825
if precise_yanked_in_use {
828-
self.gctx
829-
.cli_unstable()
830-
.fail_if_stable_opt("--precise <yanked-version>", 4225)?;
831826
let name = dep.package_name();
832827
let version = req
833828
.precise_version()

src/doc/man/cargo-update.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ When used with _spec_, allows you to specify a specific version number to set
4343
the package to. If the package comes from a git repository, this can be a git
4444
revision (such as a SHA hash or tag).
4545

46-
While not recommended, you can specify a yanked version of a package (nightly only).
46+
While not recommended, you can specify a yanked version of a package.
4747
When possible, try other non-yanked SemVer-compatible versions or seek help
4848
from the maintainers of the package.
4949

50-
A compatible `pre-release` version can also be specified even when the version requirement in `Cargo.toml` doesn't contain any pre-release identifier (nightly only).
50+
A compatible `pre-release` version can also be specified even when the version
51+
requirement in `Cargo.toml` doesn't contain any pre-release identifier (nightly only).
5152
{{/option}}
5253

5354
{{#option "`-w`" "`--workspace`" }}

src/doc/man/generated_txt/cargo-update.txt

+3-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,9 @@ OPTIONS
3535
to set the package to. If the package comes from a git repository,
3636
this can be a git revision (such as a SHA hash or tag).
3737

38-
While not recommended, you can specify a yanked version of a package
39-
(nightly only). When possible, try other non-yanked
40-
SemVer-compatible versions or seek help from the maintainers of the
41-
package.
38+
While not recommended, you can specify a yanked version of a
39+
package. When possible, try other non-yanked SemVer-compatible
40+
versions or seek help from the maintainers of the package.
4241

4342
A compatible pre-release version can also be specified even when the
4443
version requirement in Cargo.toml doesn’t contain any pre-release

src/doc/src/commands/cargo-update.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,11 @@ Cannot be used with <code>--precise</code>.</dd>
4040
<dd class="option-desc">When used with <em>spec</em>, allows you to specify a specific version number to set
4141
the package to. If the package comes from a git repository, this can be a git
4242
revision (such as a SHA hash or tag).</p>
43-
<p>While not recommended, you can specify a yanked version of a package (nightly only).
43+
<p>While not recommended, you can specify a yanked version of a package.
4444
When possible, try other non-yanked SemVer-compatible versions or seek help
4545
from the maintainers of the package.</p>
46-
<p>A compatible <code>pre-release</code> version can also be specified even when the version requirement in <code>Cargo.toml</code> doesn’t contain any pre-release identifier (nightly only).</dd>
46+
<p>A compatible <code>pre-release</code> version can also be specified even when the version
47+
requirement in <code>Cargo.toml</code> doesn’t contain any pre-release identifier (nightly only).</dd>
4748

4849

4950
<dt class="option-term" id="option-cargo-update--w"><a class="option-anchor" href="#option-cargo-update--w"></a><code>-w</code></dt>

src/etc/man/cargo-update.1

+3-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ When used with \fIspec\fR, allows you to specify a specific version number to se
4040
the package to. If the package comes from a git repository, this can be a git
4141
revision (such as a SHA hash or tag).
4242
.sp
43-
While not recommended, you can specify a yanked version of a package (nightly only).
43+
While not recommended, you can specify a yanked version of a package.
4444
When possible, try other non\-yanked SemVer\-compatible versions or seek help
4545
from the maintainers of the package.
4646
.sp
47-
A compatible \fBpre\-release\fR version can also be specified even when the version requirement in \fBCargo.toml\fR doesn\[cq]t contain any pre\-release identifier (nightly only).
47+
A compatible \fBpre\-release\fR version can also be specified even when the version
48+
requirement in \fBCargo.toml\fR doesn\[cq]t contain any pre\-release identifier (nightly only).
4849
.RE
4950
.sp
5051
\fB\-w\fR,

tests/testsuite/update.rs

-22
Original file line numberDiff line numberDiff line change
@@ -1450,26 +1450,6 @@ fn precise_yanked() {
14501450
assert!(lockfile.contains("\nname = \"bar\"\nversion = \"0.1.0\""));
14511451

14521452
p.cargo("update --precise 0.1.1 bar")
1453-
.with_status(101)
1454-
.with_stderr(
1455-
"\
1456-
[UPDATING] `dummy-registry` index
1457-
[ERROR] failed to get `bar` as a dependency of package `foo v0.0.0 ([CWD])`
1458-
1459-
Caused by:
1460-
failed to query replaced source registry `crates-io`
1461-
1462-
Caused by:
1463-
the `--precise <yanked-version>` flag is unstable[..]
1464-
See [..]
1465-
See [..]
1466-
",
1467-
)
1468-
.run();
1469-
1470-
p.cargo("update --precise 0.1.1 bar")
1471-
.masquerade_as_nightly_cargo(&["--precise <yanked-version>"])
1472-
.arg("-Zunstable-options")
14731453
.with_stderr(
14741454
"\
14751455
[UPDATING] `dummy-registry` index
@@ -1511,8 +1491,6 @@ fn precise_yanked_multiple_presence() {
15111491
assert!(lockfile.contains("\nname = \"bar\"\nversion = \"0.1.0\""));
15121492

15131493
p.cargo("update --precise 0.1.1 bar")
1514-
.masquerade_as_nightly_cargo(&["--precise <yanked-version>"])
1515-
.arg("-Zunstable-options")
15161494
.with_stderr(
15171495
"\
15181496
[UPDATING] `dummy-registry` index

0 commit comments

Comments
 (0)