I ran tests in my project and found that cargo clippy gives a false positive clippy::needless_match whose suggestion incorrectly deletes the else of an if let Some(x) = y { Some(x) } else { /* substantial logic */ }. Looks like the fix https://github.com/rust-lang/rust-clippy/pull/8700 didn't make the release, and this will be a stable-to-stable regression if not cherrypicked.
I'm not sure if this is the right place to talk about it, but the "Stabilized APIs" section of the release notes uses *const T::method, *mut T::method, and [T]::method to refer to methods on pointers and slices. This doesn't match the syntax in real code, which is <*const T>::method, <*mut T>::method, and <[T]>::method. Is this discrepancy intentional? (Using angle brackets with <Type>::method is pretty rare, after all.)
A new dev-static release should now be out with the Clippy problem fixed -- we've moved the needless_match lint to Clippy's nursery group for the time being.