Auto merge of #12086 - weihanglo:changelog, r=ehuss

changelog: move registry query fixes to the right place

I guess I was sleepy on that day. These three entries should go to other sections.
This commit is contained in:
bors 2023-05-08 20:27:54 +00:00
commit fa3fa852ab

View file

@ -98,6 +98,11 @@
- `cargo new` generates the correct `.hgignore` aligning semantics with other
VCS ignore files.
[#11855](https://github.com/rust-lang/cargo/pull/11855)
- Stopped doing unnecessary fuzzy registry index queries. This significantly
reduces the amount of HTTP requests to remote registries for crates
containing `-` or `_` in their names.
[#11936](https://github.com/rust-lang/cargo/pull/11936)
[#11937](https://github.com/rust-lang/cargo/pull/11937)
### Nightly only
@ -139,12 +144,6 @@
[#11927](https://github.com/rust-lang/cargo/pull/11927)
- Consistently use `@` when mentioning pkgid format.
[#11956](https://github.com/rust-lang/cargo/pull/11956)
- Stopped using `UncanonicalizedIter` for `QueryKind::Exact`.
[#11937](https://github.com/rust-lang/cargo/pull/11937)
- Don't query permutations of the path prefix of a dependency in the registry index.
[#11936](https://github.com/rust-lang/cargo/pull/11936)
- Enabled clippy warning on `disallowed_methods` for `std::env::var` and friends.
[#11828](https://github.com/rust-lang/cargo/pull/11828)
- Enhanced Cargo Contributor Guide.
[#11825](https://github.com/rust-lang/cargo/pull/11825)
[#11842](https://github.com/rust-lang/cargo/pull/11842)
@ -185,6 +184,8 @@
[#11915](https://github.com/rust-lang/cargo/pull/11915)
- Replaced `std::fs::canonicalize` with a more robust `try_canonicalize`.
[#11866](https://github.com/rust-lang/cargo/pull/11866)
- Enabled clippy warning on `disallowed_methods` for `std::env::var` and friends.
[#11828](https://github.com/rust-lang/cargo/pull/11828)
## Cargo 1.69 (2023-04-20)
[985d561f...rust-1.69.0](https://github.com/rust-lang/cargo/compare/985d561f...rust-1.69.0)