Skip to content

Commit 12682d1

Browse files
committed
Update changelog for 1.73.0
1 parent 9635de7 commit 12682d1

File tree

1 file changed

+117
-4
lines changed

1 file changed

+117
-4
lines changed

CHANGELOG.md

Lines changed: 117 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,89 @@
11
# Changelog
22

33
## Cargo 1.73 (2023-10-05)
4-
[45782b6b...HEAD](https://github.com/rust-lang/cargo/compare/45782b6b...HEAD)
4+
[45782b6b...rust-1.73.0](https://github.com/rust-lang/cargo/compare/45782b6b...rust-1.73.0)
55

66
### Added
77

8+
- Print environment variables for `cargo run/bench/test` in extra verbose mode `-vv`.
9+
[#12498](https://github.com/rust-lang/cargo/pull/12498)
10+
- Display package versions on Cargo timings graph.
11+
[#12420](https://github.com/rust-lang/cargo/pull/12420)
812
### Changed
913

14+
- Cargo now bails out when using `cargo::` in custom build scripts. This is
15+
a preparation for an upcoming change in build script invocations.
16+
[#12332](https://github.com/rust-lang/cargo/pull/12332)
17+
- Make Cargo `--help` easier to browse.
18+
[#11905](https://github.com/rust-lang/cargo/pull/11905)
19+
- Prompt the use of `--nocapture` flag if `cargo test` process is terminated via a signal.
20+
[#12463](https://github.com/rust-lang/cargo/pull/12463)
21+
- Preserve jobserver file descriptors on the rustc invocation for getting target information.
22+
[#12447](https://github.com/rust-lang/cargo/pull/12447)
23+
- Clarify in `--help` that `cargo test --all-targets` excludes doctests.
24+
[#12422](https://github.com/rust-lang/cargo/pull/12422)
25+
- Normalize `cargo.toml` to `Cargo.toml` on publish, and warn on other cases of `Cargo.toml`.
26+
[#12399](https://github.com/rust-lang/cargo/pull/12399)
27+
1028
### Fixed
1129

30+
- Only skip mtime check on `~/.cargo/{git,registry}`.
31+
[#12369](https://github.com/rust-lang/cargo/pull/12369)
32+
- Fixed `cargo doc --open` crash on WSL2.
33+
[#12373](https://github.com/rust-lang/cargo/pull/12373)
34+
- Fixed panic when enabling `http.debug` for certain strings.
35+
[#12468](https://github.com/rust-lang/cargo/pull/12468)
36+
- Fixed `cargo remove` incorrectly removing used patches.
37+
[#12454](https://github.com/rust-lang/cargo/pull/12454)
38+
- Fixed crate checksum lookup query should match on semver build metadata.
39+
[#11447](https://github.com/rust-lang/cargo/pull/11447)
40+
- Fixed printing multiple warning messages for unused fields in `[registries]` table.
41+
[#12439](https://github.com/rust-lang/cargo/pull/12439)
42+
1243
### Nightly only
1344

45+
- 🔥 The `-Zcredential-process` has been reimplemented with a clearer way to
46+
communicate with different credential providers. Several built-in providers
47+
are also added to Cargo.
48+
[docs](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#credential-process)
49+
[#12334](https://github.com/rust-lang/cargo/pull/12334)
50+
[#12396](https://github.com/rust-lang/cargo/pull/12396)
51+
[#12424](https://github.com/rust-lang/cargo/pull/12424)
52+
[#12440](https://github.com/rust-lang/cargo/pull/12440)
53+
[#12461](https://github.com/rust-lang/cargo/pull/12461)
54+
[#12469](https://github.com/rust-lang/cargo/pull/12469)
55+
[#12483](https://github.com/rust-lang/cargo/pull/12483)
56+
[#12499](https://github.com/rust-lang/cargo/pull/12499)
57+
[#12507](https://github.com/rust-lang/cargo/pull/12507)
58+
[#12512](https://github.com/rust-lang/cargo/pull/12512)
59+
[#12518](https://github.com/rust-lang/cargo/pull/12518)
60+
[#12521](https://github.com/rust-lang/cargo/pull/12521)
61+
[#12526](https://github.com/rust-lang/cargo/pull/12526)
62+
Some notable changes:
63+
- Renamed `credential-process` to `credential-provider` in Cargo configurations.
64+
- New JSON protocol for communicating with external credential providers via stdin/stdout.
65+
- The GNOME Secert provider now dynamically loads `libsecert`.
66+
- The 1password provider is no longer built-in.
67+
- Changed the unstable key for asymmetric tokens from `registry-auth` to `credential-process`.
68+
- ❗️ Removed `--keep-going` flag support from `cargo test` and `cargo bench`.
69+
[#12478](https://github.com/rust-lang/cargo/pull/12478)
70+
[#12492](https://github.com/rust-lang/cargo/pull/12492)
1471
- Fixed invalid package names generated by `-Zscript`.
1572
[#12349](https://github.com/rust-lang/cargo/pull/12349)
1673
- `-Zscript` now errors out on unsupported commands — `publish` and `package`.
1774
[#12350](https://github.com/rust-lang/cargo/pull/12350)
75+
- Encode URL params correctly for source ID in Cargo.lock.
76+
[#12280](https://github.com/rust-lang/cargo/pull/12280)
77+
- Replaced invalid `panic_unwind` std feature with `panic-unwind`.
78+
[#12364](https://github.com/rust-lang/cargo/pull/12364)
79+
- `-Zlints`: doctest extraction should respect `[lints]`.
80+
[#12501](https://github.com/rust-lang/cargo/pull/12501)
1881

1982
### Documentation
2083

84+
- SemVer: Adding a section for changing the alignment, layout, or size of a
85+
well-defined type.
86+
[#12169](https://github.com/rust-lang/cargo/pull/12169)
2187
- Use heading attributes to control the fragment.
2288
[#12339](https://github.com/rust-lang/cargo/pull/12339)
2389
- Use "number" instead of "digit" when explaining Cargo's use of semver.
@@ -26,19 +92,66 @@
2692
[#12344](https://github.com/rust-lang/cargo/pull/12344)
2793
- Clarify "Package ID" and "Source ID" in `cargo metadata` are opaque strings.
2894
[#12313](https://github.com/rust-lang/cargo/pull/12313)
29-
- Added `profile.strip` to configuration docs.
30-
[#12337](https://github.com/rust-lang/cargo/pull/12337)
31-
- Multiple versions that differ only in the metadata tag are disallowed on crates.io.
95+
- Clarify that `rerun-if-env-changed` doesn't monitor the environment variables
96+
it set for crates and build script.
97+
[#12482](https://github.com/rust-lang/cargo/pull/12482)
98+
- Clarify that multiple versions that differ only in the metadata tag are
99+
disallowed on crates.io.
32100
[#12335](https://github.com/rust-lang/cargo/pull/12335)
101+
- Clarify `lto` setting passing `-Clinker-plugin-lto`.
102+
[#12407](https://github.com/rust-lang/cargo/pull/12407)
103+
- Added `profile.strip` to configuration and environment variable docs.
104+
[#12337](https://github.com/rust-lang/cargo/pull/12337)
105+
[#12408](https://github.com/rust-lang/cargo/pull/12408)
106+
- Added docs for artifact JSON debuginfo levels.
107+
[#12376](https://github.com/rust-lang/cargo/pull/12376)
108+
- Added a notice for the backward compatible `.cargo/credential` file existence.
109+
[#12479](https://github.com/rust-lang/cargo/pull/12479)
110+
- Raised the awareness of `resolver = 2` used inside workspaces.
111+
[#12388](https://github.com/rust-lang/cargo/pull/12388)
112+
- Replaced `master` branch by default branch in documentation.
113+
[#12435](https://github.com/rust-lang/cargo/pull/12435)
33114

34115
### Internal
35116

36117
- Updated to `criterion` 0.5.1.
37118
[#12338](https://github.com/rust-lang/cargo/pull/12338)
119+
- Updated to `curl-sys` 0.4.65, which corresponds to curl 8.2.1.
120+
[#12406](https://github.com/rust-lang/cargo/pull/12406)
121+
- Updated to `indexmap` v2.
122+
[#12368](https://github.com/rust-lang/cargo/pull/12368)
123+
- Updated to `miow` 0.6.0, which drops old versions of `windows-sys`.
124+
[#12453](https://github.com/rust-lang/cargo/pull/12453)
38125
- ci: automatically test new packages by using `--workspace`.
39126
[#12342](https://github.com/rust-lang/cargo/pull/12342)
40127
- ci: automatically update dependencies monthly with Renovate.
41128
[#12341](https://github.com/rust-lang/cargo/pull/12341)
129+
[#12466](https://github.com/rust-lang/cargo/pull/12466)
130+
- ci: rewrote `xtask-bump-check` for respecting semver by adopting `cargo-semver-checks`.
131+
[#12395](https://github.com/rust-lang/cargo/pull/12395)
132+
[#12513](https://github.com/rust-lang/cargo/pull/12513)
133+
[#12508](https://github.com/rust-lang/cargo/pull/12508)
134+
- Rearranged and renamed test directories
135+
[#12397](https://github.com/rust-lang/cargo/pull/12397)
136+
[#12398](https://github.com/rust-lang/cargo/pull/12398)
137+
- Migrated from `log` to `tracing`.
138+
[#12458](https://github.com/rust-lang/cargo/pull/12458)
139+
[#12488](https://github.com/rust-lang/cargo/pull/12488)
140+
- Track `--help` output in tests.
141+
[#11912](https://github.com/rust-lang/cargo/pull/11912)
142+
- Cleaned up and shared package metadata within workspace.
143+
[#12352](https://github.com/rust-lang/cargo/pull/12352)
144+
- `crates-io`: expose HTTP headers and `Error` type.
145+
[#12310](https://github.com/rust-lang/cargo/pull/12310)
146+
- For `cargo update`, caught CLI flags conflict between `--aggressive` and `--precise` in clap.
147+
[#12428](https://github.com/rust-lang/cargo/pull/12428)
148+
- Several fixes for either making Cargo testsuite pass on nightly or in `rust-lang/rust`.
149+
[#12413](https://github.com/rust-lang/cargo/pull/12413)
150+
[#12416](https://github.com/rust-lang/cargo/pull/12416)
151+
[#12429](https://github.com/rust-lang/cargo/pull/12429)
152+
[#12450](https://github.com/rust-lang/cargo/pull/12450)
153+
[#12491](https://github.com/rust-lang/cargo/pull/12491)
154+
[#12500](https://github.com/rust-lang/cargo/pull/12500)
42155

43156
## Cargo 1.72 (2023-08-24)
44157
[64fb38c9...rust-1.72.0](https://github.com/rust-lang/cargo/compare/64fb38c9...rust-1.72.0)

0 commit comments

Comments
 (0)