|
1 | 1 | # Changelog
|
2 | 2 |
|
| 3 | +## Cargo 1.84 (2025-01-09) |
| 4 | +[15fbd2f6...HEAD](https://github.com/rust-lang/cargo/compare/15fbd2f6...HEAD) |
| 5 | + |
| 6 | +### Added |
| 7 | + |
| 8 | +### Changed |
| 9 | + |
| 10 | +- Pass `--no-tags` by default to git CLI when `net.git-fetch-with-cli = true`. |
| 11 | + [#14688](https://github.com/rust-lang/cargo/pull/14688) |
| 12 | +- Several resolver performance enhancements, including |
| 13 | + - Use `rustc-hash` to speed up resolver |
| 14 | + [#14663](https://github.com/rust-lang/cargo/pull/14663) |
| 15 | + - Share conflict cache between activation retries |
| 16 | + [#14692](https://github.com/rust-lang/cargo/pull/14692) |
| 17 | + - Avoid cloning when iterating using `RcVecIter` |
| 18 | + [#14690](https://github.com/rust-lang/cargo/pull/14690) |
| 19 | + |
| 20 | +### Fixed |
| 21 | + |
| 22 | +### Nightly only |
| 23 | + |
| 24 | +- `-Zbindeps`: Fix panic when running cargo tree on a package with a cross compiled bindep |
| 25 | + [#14593](https://github.com/rust-lang/cargo/pull/14593) |
| 26 | +- `-Zpackage-workspace`: Support package selection options like `--exclude` in `cargo publish` |
| 27 | + [#14659](https://github.com/rust-lang/cargo/pull/14659) |
| 28 | +- `-Zscript`: Remove the support for accepting `Cargo.toml` |
| 29 | + [#14670](https://github.com/rust-lang/cargo/pull/14670) |
| 30 | + |
| 31 | +### Documentation |
| 32 | + |
| 33 | +- Clarify the meaning of `--tests` and `--benches` flags. |
| 34 | + [#14675](https://github.com/rust-lang/cargo/pull/14675) |
| 35 | +- Clarify tools should only interpret messages with a line starting with `{` as JSON. |
| 36 | + [#14677](https://github.com/rust-lang/cargo/pull/14677) |
| 37 | +- Clarify what is and isn't included by `cargo package` |
| 38 | + [#14684](https://github.com/rust-lang/cargo/pull/14684) |
| 39 | +- Document official external commands: `cargo-clippy`, `cargo-fmt`, and `cargo-miri`. |
| 40 | + [#14669](https://github.com/rust-lang/cargo/pull/14669) |
| 41 | +- Enhanced documentation on dependency resolution |
| 42 | + [#14662](https://github.com/rust-lang/cargo/pull/14662) |
| 43 | + |
| 44 | +### Internal |
| 45 | + |
| 46 | +- Updated to `pulldown-cmark` 0.12.0 |
| 47 | + [#14668](https://github.com/rust-lang/cargo/pull/14668) |
| 48 | + |
3 | 49 | ## Cargo 1.83 (2024-11-28)
|
4 |
| -[8f40fc59...HEAD](https://github.com/rust-lang/cargo/compare/8f40fc59...HEAD) |
| 50 | +[8f40fc59...rust-1.83.0](https://github.com/rust-lang/cargo/compare/8f40fc59...rust-1.83.0) |
5 | 51 |
|
6 | 52 | ### Added
|
7 | 53 |
|
| 54 | +- `--timings` HTML output can now auto-switch between light and dark color |
| 55 | + schemes based on browser preference. |
| 56 | + [#14588](https://github.com/rust-lang/cargo/pull/14588) |
| 57 | +- Introduced a new `CARGO_MANIFEST_PATH` environment variable, |
| 58 | + similar to `CARGO_MANIFEST_DIR` but pointing directly to the manifest file. |
| 59 | + [#14404](https://github.com/rust-lang/cargo/pull/14404) |
| 60 | +- manifest: Added `package.autolib`, allowing `[lib]` auto-discovery to be disabled. |
| 61 | + [#14591](https://github.com/rust-lang/cargo/pull/14591) |
| 62 | + |
8 | 63 | ### Changed
|
9 | 64 |
|
10 |
| -- Enhanced the missing feature error message. |
| 65 | +- ❗️ Lockfile format v4 is now the default for creating/updating a lockfile. |
| 66 | + Rust toolchains 1.78+ support lockfile v4. |
| 67 | + For compatibility with earlier MSRV, |
| 68 | + consdier setting the `package.rust-version` to 1.82 or earlier. |
| 69 | + [#14595](https://github.com/rust-lang/cargo/pull/14595) |
| 70 | +- ❗️ cargo-package: When using the `--package` flag, only the specified |
| 71 | + packages are packaged. Previously, the package in the current working |
| 72 | + directory was automatically selected for packaging. |
| 73 | + [#14488](https://github.com/rust-lang/cargo/pull/14488) |
| 74 | +- cargo-publish: Now fails fast if the package version is already published. |
| 75 | + [#14448](https://github.com/rust-lang/cargo/pull/14448) |
| 76 | +- Improved error messages for missing features. |
11 | 77 | [#14436](https://github.com/rust-lang/cargo/pull/14436)
|
12 |
| -- Enhanced the dependency update status message, including |
13 |
| - - Reports incompatible packages with precise Rust version |
14 |
| - [#14457](https://github.com/rust-lang/cargo/pull/14457) |
15 |
| - - Reports incompatible-with-rustc when MSRV-resolver is disabled |
16 |
| - [#14459](https://github.com/rust-lang/cargo/pull/14459) |
17 |
| - - Reports compatible, incompatible, and direct-dep updates with different |
18 |
| - colors and messages. |
19 |
| - [#14461](https://github.com/rust-lang/cargo/pull/14461) |
20 |
| - - The `Locking` status message stops showing workspace members. |
21 |
| - [#14445](https://github.com/rust-lang/cargo/pull/14445) |
22 | 78 | - Log details of `rustc` invocation failure if no errors are seen
|
23 | 79 | [#14453](https://github.com/rust-lang/cargo/pull/14453)
|
24 |
| -- cargo-package: Don't automatically include the current crate when packaging |
25 |
| - [#14488](https://github.com/rust-lang/cargo/pull/14488) |
| 80 | +- Uplifted `windows-gnullvm` import libraries, aligning them with `windows-gnu`. |
| 81 | + [#14451](https://github.com/rust-lang/cargo/pull/14451) |
| 82 | +- Suggest `cargo info` command in the `cargo search` result |
| 83 | + [#14537](https://github.com/rust-lang/cargo/pull/14537) |
| 84 | +- Enhanced dependency update status messages, now displaying updates |
| 85 | + (compatible, incompatible, direct-dep) in different colors, |
| 86 | + along with messages and MSRVs. |
| 87 | + [#14440](https://github.com/rust-lang/cargo/pull/14440) |
| 88 | + [#14457](https://github.com/rust-lang/cargo/pull/14457) |
| 89 | + [#14459](https://github.com/rust-lang/cargo/pull/14459) |
| 90 | + [#14461](https://github.com/rust-lang/cargo/pull/14461) |
| 91 | + [#14471](https://github.com/rust-lang/cargo/pull/14471) |
| 92 | + [#14568](https://github.com/rust-lang/cargo/pull/14568) |
| 93 | +- The `Locking` status message no longer displays workspace members. |
| 94 | + [#14445](https://github.com/rust-lang/cargo/pull/14445) |
26 | 95 |
|
27 | 96 | ### Fixed
|
28 | 97 |
|
29 |
| -- cargo-add: Perform fuzzy search when translating package names |
| 98 | +- Prevented duplicate library search environment variables when calling `cargo` recursively. |
| 99 | + [#14464](https://github.com/rust-lang/cargo/pull/14464) |
| 100 | +- Don't double-warn about `$CARGO_HOME/config` not having `.toml` extension. |
| 101 | + [#14579](https://github.com/rust-lang/cargo/pull/14579) |
| 102 | +- Correct diagnostic count message when using `--message-format json`. |
| 103 | + [#14598](https://github.com/rust-lang/cargo/pull/14598) |
| 104 | +- cargo-add: Perform fuzzy searches when translating package names |
30 | 105 | [#13765](https://github.com/rust-lang/cargo/pull/13765)
|
| 106 | +- cargo-new: only auto-add new packages to the workspace relative to the manifest, |
| 107 | + rather than the current directory. |
| 108 | + [#14505](https://github.com/rust-lang/cargo/pull/14505) |
| 109 | +- cargo-rustc: Fixed parsing of comma-separated values in the `--crate-type` flag. |
| 110 | + [#14499](https://github.com/rust-lang/cargo/pull/14499) |
| 111 | +- cargo-vendor: trusts the crate version only when it originates from registries. |
| 112 | + This causes git dependencies to be re-vendored even if they haven't changed. |
| 113 | + [#14530](https://github.com/rust-lang/cargo/pull/14530) |
31 | 114 |
|
32 | 115 | ### Nightly only
|
33 | 116 |
|
| 117 | +- ❗️ cargo-rustc: give trailing flags higher precedence on nightly. |
| 118 | + The nightly gate will be removed after a few releases. |
| 119 | + Please give feedback if it breaks any workflow. |
| 120 | + A temporary environment variable `__CARGO_RUSTC_ORIG_ARGS_PRIO=1` is provided |
| 121 | + to opt-out of the behavior. |
| 122 | + [#14587](https://github.com/rust-lang/cargo/pull/14587) |
| 123 | +- 🔥 cargo-install: a new `--dry-run` flag without actually installing binaries. |
| 124 | + [#14280](https://github.com/rust-lang/cargo/pull/14280) |
| 125 | +- 🔥 `native-completions`: moves the handwritten shell completion scripts to |
| 126 | + Rust native, making it easier for us to add, extend, and test new completions. |
| 127 | + ([docs](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#native-completions)) |
| 128 | + [#14493](https://github.com/rust-lang/cargo/pull/14493) |
| 129 | + [#14531](https://github.com/rust-lang/cargo/pull/14531) |
| 130 | + [#14532](https://github.com/rust-lang/cargo/pull/14532) |
| 131 | + [#14533](https://github.com/rust-lang/cargo/pull/14533) |
| 132 | + [#14534](https://github.com/rust-lang/cargo/pull/14534) |
| 133 | + [#14535](https://github.com/rust-lang/cargo/pull/14535) |
| 134 | + [#14536](https://github.com/rust-lang/cargo/pull/14536) |
| 135 | + [#14546](https://github.com/rust-lang/cargo/pull/14546) |
| 136 | + [#14547](https://github.com/rust-lang/cargo/pull/14547) |
| 137 | + [#14548](https://github.com/rust-lang/cargo/pull/14548) |
| 138 | + [#14552](https://github.com/rust-lang/cargo/pull/14552) |
| 139 | + [#14557](https://github.com/rust-lang/cargo/pull/14557) |
| 140 | + [#14558](https://github.com/rust-lang/cargo/pull/14558) |
| 141 | + [#14563](https://github.com/rust-lang/cargo/pull/14563) |
| 142 | + [#14564](https://github.com/rust-lang/cargo/pull/14564) |
| 143 | + [#14573](https://github.com/rust-lang/cargo/pull/14573) |
| 144 | + [#14590](https://github.com/rust-lang/cargo/pull/14590) |
| 145 | + [#14592](https://github.com/rust-lang/cargo/pull/14592) |
| 146 | + [#14653](https://github.com/rust-lang/cargo/pull/14653) |
| 147 | + [#14656](https://github.com/rust-lang/cargo/pull/14656) |
| 148 | +- 🔥 `-Zchecksum-freshness`: replace the use of file mtimes in cargo’s rebuild |
| 149 | + detection with a file checksum algorithm. This is most useful on systems with |
| 150 | + a poor mtime implementation, or in CI/CD. |
| 151 | + ([docs](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#checksum-freshness)) |
| 152 | + [#14137](https://github.com/rust-lang/cargo/pull/14137) |
34 | 153 | - cargo-update: Add `matches_prerelease` semantic
|
35 | 154 | [#14305](https://github.com/rust-lang/cargo/pull/14305)
|
| 155 | +- `build-plan`: document it as being deprecated. |
| 156 | + [#14657](https://github.com/rust-lang/cargo/pull/14657) |
| 157 | +- `edition2024`: Remove implicit feature removal from 2024 edition. |
| 158 | + [#14630](https://github.com/rust-lang/cargo/pull/14630) |
| 159 | +- `lockfile-path`: implies `--locked` on `cargo install`. |
| 160 | + [#14556](https://github.com/rust-lang/cargo/pull/14556) |
36 | 161 | - `open-namespaces`: Allow open namespaces in `PackageIdSpec`s
|
37 | 162 | [#14467](https://github.com/rust-lang/cargo/pull/14467)
|
| 163 | +- `path-bases`: `cargo [add|remove|update]` support |
| 164 | + [#14427](https://github.com/rust-lang/cargo/pull/14427) |
| 165 | +- `-Zmsrv-policy`: determine the workspace's MSRV by the most number of MSRVs within it. |
| 166 | + [#14569](https://github.com/rust-lang/cargo/pull/14569) |
| 167 | +- `-Zpackage-workspace`: allows to publish multiple crates in a workspace, |
| 168 | + even if they have inter-dependencies. |
| 169 | + ([docs](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#package-workspace)) |
| 170 | + [#14433](https://github.com/rust-lang/cargo/pull/14433) |
| 171 | + [#14496](https://github.com/rust-lang/cargo/pull/14496) |
| 172 | +- `-Zpublic-dependency`: Include public/private dependency status in `cargo metadata` |
| 173 | + [#14504](https://github.com/rust-lang/cargo/pull/14504) |
| 174 | +- `-Zpublic-dependency`: Don't require MSRV bump |
| 175 | + [#14507](https://github.com/rust-lang/cargo/pull/14507) |
38 | 176 |
|
39 | 177 | ### Documentation
|
40 | 178 |
|
| 179 | +- 🎉 New chapter about the uses, support expectations, and management of |
| 180 | + `package.rust-version` a.k.a MSRV. |
| 181 | + ([docs](https://doc.rust-lang.org/nightly/cargo/reference/rust-version.html)) |
| 182 | + [#14619](https://github.com/rust-lang/cargo/pull/14619) |
| 183 | + [#14636](https://github.com/rust-lang/cargo/pull/14636) |
| 184 | +- Clarify `target.'cfg(...)'` doesn't respect cfg from build script |
| 185 | + [#14312](https://github.com/rust-lang/cargo/pull/14312) |
| 186 | +- Clarify `[[bin]]` target auto-discovery can be `src/main.rs` and/or in `src/bin/` |
| 187 | + [#14515](https://github.com/rust-lang/cargo/pull/14515) |
| 188 | +- Disambiguate the use of 'target' in the feature resolver v2 doc. |
| 189 | + [#14540](https://github.com/rust-lang/cargo/pull/14540) |
| 190 | +- Make `--config <PATH>` more prominent |
| 191 | + [#14631](https://github.com/rust-lang/cargo/pull/14631) |
| 192 | +- Minor re-grouping of pages. |
| 193 | + [#14620](https://github.com/rust-lang/cargo/pull/14620) |
| 194 | +- contrib: Update docs for how cargo is published |
| 195 | + [#14539](https://github.com/rust-lang/cargo/pull/14539) |
| 196 | +- contrib: Declare support level for each crate in Cargo's Charter / crate docs |
| 197 | + [#14600](https://github.com/rust-lang/cargo/pull/14600) |
| 198 | +- contrib: Declare new Intentional Artifacts as 'small' changes |
| 199 | + [#14599](https://github.com/rust-lang/cargo/pull/14599) |
| 200 | + |
41 | 201 | ### Internal
|
42 | 202 |
|
43 |
| -- Updated to `pasetors` 0.7.0 |
| 203 | +- Cleanup duplicated check-cfg lint logic |
| 204 | + [#14567](https://github.com/rust-lang/cargo/pull/14567) |
| 205 | +- Fix elided lifetime due to nightly rustc changes |
| 206 | + [#14487](https://github.com/rust-lang/cargo/pull/14487) |
| 207 | +- Improved error reporting when a feature is not found in `activated_features`. |
| 208 | + [#14647](https://github.com/rust-lang/cargo/pull/14647) |
| 209 | +- cargo-info: Use the `shell.note` to print the note |
| 210 | + [#14554](https://github.com/rust-lang/cargo/pull/14554) |
| 211 | +- ci: bump CI tools |
| 212 | + [#14503](https://github.com/rust-lang/cargo/pull/14503) |
| 213 | + [#14628](https://github.com/rust-lang/cargo/pull/14628) |
| 214 | +- perf: zero-copy deserialization for compiler messages when possible |
| 215 | + [#14608](https://github.com/rust-lang/cargo/pull/14608) |
| 216 | +- resolver: Add more SAT resolver tests |
| 217 | + [#14583](https://github.com/rust-lang/cargo/pull/14583) |
| 218 | + [#14614](https://github.com/rust-lang/cargo/pull/14614) |
| 219 | +- test: Migrated more tests to snapbox |
| 220 | + [#14576](https://github.com/rust-lang/cargo/pull/14576) |
| 221 | + [#14577](https://github.com/rust-lang/cargo/pull/14577) |
| 222 | +- Update dependencies. |
| 223 | + [#14475](https://github.com/rust-lang/cargo/pull/14475) |
44 | 224 | [#14478](https://github.com/rust-lang/cargo/pull/14478)
|
45 |
| -- cargo-update: Prepare for smarter update messages |
46 |
| - [#14440](https://github.com/rust-lang/cargo/pull/14440) |
| 225 | + [#14489](https://github.com/rust-lang/cargo/pull/14489) |
| 226 | + [#14607](https://github.com/rust-lang/cargo/pull/14607) |
| 227 | + [#14624](https://github.com/rust-lang/cargo/pull/14624) |
| 228 | + [#14632](https://github.com/rust-lang/cargo/pull/14632) |
47 | 229 |
|
48 | 230 | ## Cargo 1.82 (2024-10-17)
|
49 | 231 | [a2b58c3d...rust-1.82.0](https://github.com/rust-lang/cargo/compare/a2b58c3d...rust-1.82.0)
|
|
0 commit comments