Skip to content

Commit 14aeef3

Browse files
authored
Rollup merge of #113138 - cuviper:relnotes-1.71.0, r=Mark-Simulacrum
Add release notes for 1.71.0 r? ``@Mark-Simulacrum`` cc ``@rust-lang/release``
2 parents 8c56299 + a30f797 commit 14aeef3

File tree

1 file changed

+143
-0
lines changed

1 file changed

+143
-0
lines changed

RELEASES.md

+143
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,146 @@
1+
Version 1.71.0 (2023-07-13)
2+
==========================
3+
4+
<a id="1.71.0-Language"></a>
5+
6+
Language
7+
--------
8+
9+
- [Stabilize `raw-dylib`, `link_ordinal`, `import_name_type` and `-Cdlltool`.](https://github.com/rust-lang/rust/pull/109677/)
10+
- [Uplift `clippy::{drop,forget}_{ref,copy}` lints.](https://github.com/rust-lang/rust/pull/109732/)
11+
- [Type inference is more conservative around constrained vars.](https://github.com/rust-lang/rust/pull/110100/)
12+
- [Use fulfillment to check `Drop` impl compatibility](https://github.com/rust-lang/rust/pull/110577/)
13+
14+
<a id="1.71.0-Compiler"></a>
15+
16+
Compiler
17+
--------
18+
19+
- [Evaluate place expression in `PlaceMention`](https://github.com/rust-lang/rust/pull/104844/),
20+
making `let _ =` patterns more consistent with respect to the borrow checker.
21+
- [Add `--print deployment-target` flag for Apple targets.](https://github.com/rust-lang/rust/pull/105354/)
22+
- [Stabilize `extern "C-unwind"` and friends.](https://github.com/rust-lang/rust/pull/106075/)
23+
The existing `extern "C"` etc. may change behavior for cross-language unwinding in a future release.
24+
- [Update the version of musl used on `*-linux-musl` targets to 1.2.3](https://github.com/rust-lang/rust/pull/107129/),
25+
enabling [time64](https://musl.libc.org/time64.html) on 32-bit systems.
26+
- [Stabilize `debugger_visualizer`](https://github.com/rust-lang/rust/pull/108668/)
27+
for embedding metadata like Microsoft's Natvis.
28+
- [Enable flatten-format-args by default.](https://github.com/rust-lang/rust/pull/109999/)
29+
- [Make `Self` respect tuple constructor privacy.](https://github.com/rust-lang/rust/pull/111245/)
30+
- [Improve niche placement by trying two strategies and picking the better result.](https://github.com/rust-lang/rust/pull/108106/)
31+
- [Use `apple-m1` as the target CPU for `aarch64-apple-darwin`.](https://github.com/rust-lang/rust/pull/109899/)
32+
- [Add Tier 3 support for the `x86_64h-apple-darwin` target.](https://github.com/rust-lang/rust/pull/108795/)
33+
- [Promote `loongarch64-unknown-linux-gnu` to Tier 2 with host tools.](https://github.com/rust-lang/rust/pull/110936/)
34+
35+
Refer to Rust's [platform support page][platform-support-doc]
36+
for more information on Rust's tiered platform support.
37+
38+
<a id="1.71.0-Libraries"></a>
39+
40+
Libraries
41+
---------
42+
- [Rework handling of recursive panics.](https://github.com/rust-lang/rust/pull/110975/)
43+
Additional panics are allowed while unwinding, as long as they are caught before escaping
44+
a `Drop` implementation, but panicking within a panic hook is now an immediate abort.
45+
- [Loosen `From<&[T]> for Box<[T]>` bound to `T: Clone`.](https://github.com/rust-lang/rust/pull/103406/)
46+
- [Remove unnecessary `T: Send` bound](https://github.com/rust-lang/rust/pull/111134/)
47+
in `Error for mpsc::SendError<T>` and `TrySendError<T>`.
48+
- [Fix docs for `alloc::realloc`](https://github.com/rust-lang/rust/pull/108630/)
49+
to match `Layout` requirements that the size must not exceed `isize::MAX`.
50+
- [Document `const {}` syntax for `std::thread_local`.](https://github.com/rust-lang/rust/pull/110620/)
51+
This syntax was stabilized in Rust 1.59, but not previously mentioned in release notes.
52+
53+
<a id="1.71.0-Stabilized-APIs"></a>
54+
55+
Stabilized APIs
56+
---------------
57+
58+
- [`CStr::is_empty`](https://doc.rust-lang.org/stable/std/ffi/struct.CStr.html#method.is_empty)
59+
- [`BuildHasher::hash_one`](https://doc.rust-lang.org/stable/std/hash/trait.BuildHasher.html#method.hash_one)
60+
- [`NonZeroI*::is_positive`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.is_positive)
61+
- [`NonZeroI*::is_negative`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.is_negative)
62+
- [`NonZeroI*::checked_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.checked_neg)
63+
- [`NonZeroI*::overflowing_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.overflowing_neg)
64+
- [`NonZeroI*::saturating_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.saturating_neg)
65+
- [`NonZeroI*::wrapping_neg`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#method.wrapping_neg)
66+
- [`Neg for NonZeroI*`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#impl-Neg-for-NonZeroI32)
67+
- [`Neg for &NonZeroI*`](https://doc.rust-lang.org/stable/std/num/struct.NonZeroI32.html#impl-Neg-for-%26NonZeroI32)
68+
- [`From<[T; N]> for (T...)`](https://doc.rust-lang.org/stable/std/primitive.array.html#impl-From%3C%5BT;+1%5D%3E-for-(T,))
69+
(array to N-tuple for N in 1..=12)
70+
- [`From<(T...)> for [T; N]`](https://doc.rust-lang.org/stable/std/primitive.array.html#impl-From%3C(T,)%3E-for-%5BT;+1%5D)
71+
(N-tuple to array for N in 1..=12)
72+
- [`windows::io::AsHandle for Box<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Box%3CT%3E)
73+
- [`windows::io::AsHandle for Rc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Rc%3CT%3E)
74+
- [`windows::io::AsHandle for Arc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsHandle.html#impl-AsHandle-for-Arc%3CT%3E)
75+
- [`windows::io::AsSocket for Box<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Box%3CT%3E)
76+
- [`windows::io::AsSocket for Rc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Rc%3CT%3E)
77+
- [`windows::io::AsSocket for Arc<T>`](https://doc.rust-lang.org/stable/std/os/windows/io/trait.AsSocket.html#impl-AsSocket-for-Arc%3CT%3E)
78+
79+
These APIs are now stable in const contexts:
80+
81+
- [`<*const T>::read`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read)
82+
- [`<*const T>::read_unaligned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read_unaligned)
83+
- [`<*mut T>::read`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read-1)
84+
- [`<*mut T>::read_unaligned`](https://doc.rust-lang.org/stable/std/primitive.pointer.html#method.read_unaligned-1)
85+
- [`ptr::read`](https://doc.rust-lang.org/stable/std/ptr/fn.read.html)
86+
- [`ptr::read_unaligned`](https://doc.rust-lang.org/stable/std/ptr/fn.read_unaligned.html)
87+
- [`<[T]>::split_at`](https://doc.rust-lang.org/stable/std/primitive.slice.html#method.split_at)
88+
89+
<a id="1.71.0-Cargo"></a>
90+
91+
Cargo
92+
-----
93+
- [Allow named debuginfo options in `Cargo.toml`.](https://github.com/rust-lang/cargo/pull/11958/)
94+
- [Add `workspace_default_members` to the output of `cargo metadata`.](https://github.com/rust-lang/cargo/pull/11978/)
95+
- [`cargo add` now considers `rust-version` when selecting packages.](https://github.com/rust-lang/cargo/pull/12078/)
96+
- [Automatically inherit workspace fields when running `cargo new`/`cargo init`.](https://github.com/rust-lang/cargo/pull/12069/)
97+
98+
<a id="1.71.0-Rustdoc"></a>
99+
100+
Rustdoc
101+
-------
102+
103+
- [Add a new `rustdoc::unescaped_backticks` lint for broken inline code.](https://github.com/rust-lang/rust/pull/105848/)
104+
- [Support strikethrough with single tildes.](https://github.com/rust-lang/rust/pull/111152/) (`~~old~~` vs. `~new~`)
105+
106+
<a id="1.71.0-Misc"></a>
107+
108+
Misc
109+
----
110+
111+
<a id="1.71.0-Compatibility-Notes"></a>
112+
113+
Compatibility Notes
114+
-------------------
115+
116+
- [Remove structural match from `TypeId`.](https://github.com/rust-lang/rust/pull/103291/)
117+
Code that uses a constant `TypeId` in a pattern will potentially be broken.
118+
Known cases have already been fixed -- in particular, users of the `log`
119+
crate's `kv_unstable` feature should update to `log v0.4.18` or later.
120+
- [Add a `sysroot` crate to represent the standard library crates.](https://github.com/rust-lang/rust/pull/108865/)
121+
This does not affect stable users, but may require adjustment in tools that build their own standard library.
122+
- [Cargo optimizes its usage under `rustup`.](https://github.com/rust-lang/cargo/pull/11917/) When
123+
Cargo detects it will run `rustc` pointing to a rustup proxy, it'll try bypassing the proxy and
124+
use the underlying binary directly. There are assumptions around the interaction with rustup and
125+
`RUSTUP_TOOLCHAIN`. However, it's not expected to affect normal users.
126+
- [When querying a package, Cargo tries only the original name, all hyphens, and all underscores to
127+
handle misspellings.](https://github.com/rust-lang/cargo/pull/12083/) Previously, Cargo tried each
128+
combination of hyphens and underscores, causing excessive requests to crates.io.
129+
- Cargo now [disallows `RUSTUP_HOME`](https://github.com/rust-lang/cargo/pull/12101/) and
130+
[`RUSTUP_TOOLCHAIN`](https://github.com/rust-lang/cargo/pull/12107/) in the `[env]` configuration
131+
table. This is considered to be not a use case Cargo would like to support, since it will likely
132+
cause problems or lead to confusion.
133+
134+
<a id="1.71.0-Internal-Changes"></a>
135+
136+
Internal Changes
137+
----------------
138+
139+
These changes do not affect any public interfaces of Rust, but they represent
140+
significant improvements to the performance or internals of rustc and related
141+
tools.
142+
143+
1144
Version 1.70.0 (2023-06-01)
2145
==========================
3146

0 commit comments

Comments
 (0)