-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rolling up PRs in the queue #14164
Merged
Merged
Rolling up PRs in the queue #14164
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This bug was introduced when rustdoc gained the ability to hyperlink across crates in pub use statements. Closes rust-lang#14125
…king core::slice::raw::{shift_ptr,pop_ptr} now returns Option<*T> rather than *T. They no longer fail on empty slices. [breaking-change]
Keyword for continue expressions was changed from loop to continue, but the manual was not updated.
After allowing mixing rlibs and dylibs in rust-lang#13892, the documentation was not updated accordingly to reflect this new capability.
The `FileStat` struct contained a `path` field, which was filled by the `stat` and `lstat` function. Since this field isn't in fact returned by the operating system (it was copied from the paths passed to the functions) it was removed, as in the `fstat` case we aren't working with a `Path`, but directly with a fd. If your code used the `path` field of `FileStat` you will now have to manually store the path passed to `stat` along with the returned struct. [breaking-change]
- factorize operation - factorize loop (and gain a level of indentation) - ~5% faster Thanks to @Ryman for the propositions :)
Closes rust-lang#14163 (Fix typos in rustc manpage) Closes rust-lang#14161 (Add the patch number to version strings. Closes rust-lang#13289) Closes rust-lang#14156 (rustdoc: Fix hiding implementations of traits) Closes rust-lang#14152 (add shebang to scripts that have execute bit set) Closes rust-lang#14150 (libcore: remove fails from slice.rs and remove duplicated length checking) Closes rust-lang#14147 (Make ProcessOutput Eq, TotalEq, Clone) Closes rust-lang#14142 (doc: updates rust manual (loop to continue)) Closes rust-lang#14141 (doc: Update the linkage documentation) Closes rust-lang#14139 (Remove an unnecessary .move_iter().collect()) Closes rust-lang#14136 (Two minor fixes in parser.rs) Closes rust-lang#14130 (Fixed typo in comments of driver.rs) Closes rust-lang#14128 (Add `stat` method to `std::io::fs::File` to stat without a Path.) Closes rust-lang#14114 (rustdoc: List macros in the sidebar) Closes rust-lang#14113 (shootout-nbody improvement) Closes rust-lang#14112 (Improved example code in Option) Closes rust-lang#14104 (Remove reference to MutexArc) Closes rust-lang#14087 (emacs: highlight `macro_name!` in macro invocations using [] delimiters)
bors
added a commit
that referenced
this pull request
May 13, 2014
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
Mar 20, 2023
internal: Bump chalk This release fixes a problem around GATs (rust-lang/chalk#790). While a regression test is added in chalk's own test suite, I also added one in ours so that we can catch regressions when we move away from chalk. Fixes rust-lang#14164
flip1995
pushed a commit
to flip1995/rust
that referenced
this pull request
Feb 20, 2025
…n Rust editions (rust-lang#14180) The first commit fixes rust-lang#14164 by making sure that temporaries with non-static references are also looked for in expressions coming from expansion. The shortcut that was done skipped those parts and reported an absence of short-lived temporaries, which was incorrect. The second commit distinguishes between edition 2024 and earlier ones. Starting from edition 2024, the problematic drop order has been fixed, and block variables, which might be referenced in a block expression, are freed after the block expression itself. This allows more `let_and_return` cases to be reported starting with edition 2024, whereas in earlier editions an intermediary variable was necessary to reorder the drops. Incidentally, since Clippy is compiled in edition 2024 mode, the second commit has led to a fix in `clippy_lints/src/matches/significant_drop_in_scrutinee.rs`. changelog: [`let_and_return`]: lint more cases in edition 2024, and fix a false positive involving short-lived block temporary variables in earlier editions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.