diff options
| author | bors <bors@rust-lang.org> | 2023-11-15 03:56:07 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-11-15 03:56:07 +0000 |
| commit | cc8681b64b6f085bb64c0bbbe6739789d3b1eecf (patch) | |
| tree | 910b740516385efc6475081120eb8aa53da1f97e | |
| parent | 6d069a0ac7a423db87d86320edd39974f9f0c492 (diff) | |
| parent | 563d9753649453321c477ecfb61ce86b84bdfa97 (diff) | |
| download | rust-cc8681b64b6f085bb64c0bbbe6739789d3b1eecf.tar.gz rust-cc8681b64b6f085bb64c0bbbe6739789d3b1eecf.zip | |
Auto merge of #117917 - slanterns:slanterns-1.74-release_note, r=Mark-Simulacrum
Add missing entries in 1.74 release notes
| -rw-r--r-- | RELEASES.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md index 3b764fd773b..a0f6b1203fc 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -7,11 +7,12 @@ Language -------- - [Codify that `std::mem::Discriminant<T>` does not depend on any lifetimes in T](https://github.com/rust-lang/rust/pull/104299/) -- [Replace `private_in_public` lint with `private_interfaces` and `private_bounds` per RFC 2145](https://github.com/rust-lang/rust/pull/113126/) +- [Replace `private_in_public` lint with `private_interfaces` and `private_bounds` per RFC 2145.](https://github.com/rust-lang/rust/pull/113126/) Read more in [RFC 2145](https://rust-lang.github.io/rfcs/2145-type-privacy.html). - [Allow explicit `#[repr(Rust)]`](https://github.com/rust-lang/rust/pull/114201/) - [closure field capturing: don't depend on alignment of packed fields](https://github.com/rust-lang/rust/pull/115315/) - [Enable MIR-based drop-tracking for `async` blocks](https://github.com/rust-lang/rust/pull/107421/) +- [Stabilize `impl_trait_projections`](https://github.com/rust-lang/rust/pull/115659) <a id="1.74.0-Compiler"></a> @@ -101,6 +102,7 @@ Compatibility Notes - [make Cell::swap panic if the Cells partially overlap](https://github.com/rust-lang/rust/pull/114795/) - [Reject invalid crate names in `--extern`](https://github.com/rust-lang/rust/pull/116001/) - [Don't resolve generic impls that may be shadowed by dyn built-in impls](https://github.com/rust-lang/rust/pull/114941/) +- [The new `impl From<{&,&mut} [T; N]> for Vec<T>` is known to cause some inference failures with overly-generic code.](https://github.com/rust-lang/rust/issues/117054) In those examples using the `tui` crate, the combination of `AsRef<_>` and `Into<Vec>` leaves the middle type ambiguous, and the new `impl` adds another possibility, so it now requires an explicit type annotation. <a id="1.74.0-Internal-Changes"></a> |
