From edfd9034b706b8b46f51f60add0ac3ad19321608 Mon Sep 17 00:00:00 2001 From: Weihang Lo Date: Sun, 15 Oct 2023 16:25:29 -0400 Subject: [PATCH] changelog: add compat notice for `cargo login -- ` --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 936daedc479..08be017a19a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -246,6 +246,10 @@ - ❗️ Cargo now bails out when using `cargo::` in custom build scripts. This is a preparation for an upcoming change in build script invocations. [#12332](https://github.com/rust-lang/cargo/pull/12332) +- ❗️ `cargo login` no longer accept any token after the `--` syntax. + Arguments after `--` are now reserved in the preparation of the new credential provider feature. + This introduces a regression that overlooks the `cargo login -- ` support in preivous versions. + [#12499](https://github.com/rust-lang/cargo/pull/12499) - Make Cargo `--help` easier to browse. [#11905](https://github.com/rust-lang/cargo/pull/11905) - Prompt the use of `--nocapture` flag if `cargo test` process is terminated via a signal.