From a30f797437eefb9322d8ea87b70d8714f4761332 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 29 Jun 2023 12:20:30 -0700 Subject: [PATCH] Add a release note about recursive panics --- RELEASES.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RELEASES.md b/RELEASES.md index 0bb535ff14ab8..419c20b9071bf 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -39,6 +39,9 @@ for more information on Rust's tiered platform support. Libraries --------- +- [Rework handling of recursive panics.](https://github.com/rust-lang/rust/pull/110975/) + Additional panics are allowed while unwinding, as long as they are caught before escaping + a `Drop` implementation, but panicking within a panic hook is now an immediate abort. - [Loosen `From<&[T]> for Box<[T]>` bound to `T: Clone`.](https://github.com/rust-lang/rust/pull/103406/) - [Remove unnecessary `T: Send` bound](https://github.com/rust-lang/rust/pull/111134/) in `Error for mpsc::SendError` and `TrySendError`.