rust-lang/rust

Draft release notes for 1.86.0

cuviper opened this issue ยท 14 comments

Update: This has now moved to a pull request -- #139002.

NOTE: We are trying this issue as a new way to work on the draft release notes.
Use the ๐Ÿ“ links to edit those that have a relnotes-tracking-issue,
and they will be updated when we regenerate the notes periodically.

cc @rust-lang/release


Version 1.86.0 (2025-04-03)

Language

Compiler

Platform Support

Refer to Rust's platform support page
for more information on Rust's tiered platform support.

Libraries

Stabilized APIs

These APIs are now stable in const contexts:

Cargo

Rustdoc

Compatibility Notes

Internal Changes

These changes do not affect any public interfaces of Rust, but they represent
significant improvements to the performance or internals of rustc and related
tools.

Other

@rustbot ping relnotes-interest-group

Hi relnotes-interest-group, this PR adds release notes. Could you review this PR
if you have time? Thanks <3

cc @alex-semenyuk @jieyouxu @joshtriplett @lcnr @traviscross

Made several updates. The new system and process, of editing the underlying relnotes tracking issues and regenerating the release notes from those, seems like a great improvement!

This is much easier to find the actual PR <-> relnotes tracking issue โค

I made several edits to the underlying relnotes as well.

One nit for the "Stabilized APIs" section is to maybe fully qualify them, i.e. std::sync::Once::wait vs inherent methods on primitive types like {float}::round_down, but maybe that's too noisy.

One nit for the "Stabilized APIs" section is to maybe fully qualify them, i.e. std::sync::Once::wait

I usually only qualify enough to disambiguate it, but I forgot in this case there's also an iter::Once. Is sync::Once::wait clear enough to you, or do you think it should really have the full path?

(I also tend to leave the crate out when it's available in both core and std, but that doesn't apply in this case.)

I think the short form is good enough (or rather, better since it's less noisy) especially if we already have links to the docs anyway. But in the case of potential ambiguity like iter::Once vs sync::Once, the extra segment(s) like sync::Once might be nice yeah.

Is sync::Once::wait clear enough to you

Yes, that's perfectly clear to me.

Ok, I updated that, and sync::OnceLock with it just for local consistency, even though that's not ambiguous.

(Changed #138810, #138809 and #138813 to say "Add new Tier 3 target(s) ..." for consistency because apparently I also can't make up my mind if the "target(s)" bit goes before or after the target tuples.)

Fix accidentally not emitting overflowing_literals lints anymore in patterns and certain macro environments.
๐Ÿ“

Is this correctly included? From the PR description it sounds like this bug never hit stable. cc @apiraino @oli-obk

#137893 indicates that the lint did change between stable (1.85) and beta (1.86). Maybe this isn't significant enough for a release note -- then close that tracking issue #138715 -- but I'd prefer to let @oli-obk decide.

EDIT: now reading back the issues I'm no longer sure, so Oli probably need to review the note.

The bugfix PR accidentally made another unrelated bugfix, which was what was found on crater. I didn't think it needed relnotes, but when the relnotes label was added I added a description. It's pretty minor considering what you need to to do trigger the new (correct) emission of the lint.

Maybe sth like "Fix emission of overflowing_literals under certain macro environments" instead, since that's the crater bit right?

EDIT: edited

Please use #139002 for further updates, especially for things like the list order which the auto-generated notes don't handle. I already made a few adjustments in that regard.