diff options
| author | Philipp Krones <hello@philkrones.com> | 2025-06-26 16:30:45 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-26 16:30:45 +0000 |
| commit | 40554ef4aa6f92f166f8b19e3d999e6e93505d16 (patch) | |
| tree | 42f1496b3faf2d0db756e949c3a089dbca25507d | |
| parent | 75463814c69b2d9907a3ccd9ba92a5e74767d00c (diff) | |
| parent | 95f0991ad4b6e3390f19a30d42c810605fd448c8 (diff) | |
| download | rust-40554ef4aa6f92f166f8b19e3d999e6e93505d16.tar.gz rust-40554ef4aa6f92f166f8b19e3d999e6e93505d16.zip | |
Add beta-accepted to CHANGELOG for 1.88 (#15130)
Add beta-accepted to CHANGELOG for 1.88 since it was missed at rust-lang/rust-clippy#5095 changelog: none r? flip1995
| -rw-r--r-- | CHANGELOG.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 6700d5e27a6..a92fbdc767b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ Current stable, released 2025-06-26 [#14160](https://github.com/rust-lang/rust-clippy/pull/14160) * [`match_on_vec_items`] deprecated in favor of [`indexing_slicing`] [#14217](https://github.com/rust-lang/rust-clippy/pull/14217) +* Removed superseded lints: `transmute_float_to_int`, `transmute_int_to_char`, + `transmute_int_to_float`, `transmute_num_to_bytes` (now in rustc) + [#14703](https://github.com/rust-lang/rust-clippy/pull/14703) ### Enhancements @@ -51,6 +54,10 @@ Current stable, released 2025-06-26 [#14481](https://github.com/rust-lang/rust-clippy/pull/14481) * [`match_single_binding`] now allows macros in scrutinee and patterns [#14635](https://github.com/rust-lang/rust-clippy/pull/14635) +* [`needless_borrow`] does not contradict the compiler's + `dangerous_implicit_autorefs` lint even though the references + are not mandatory + [#14810](https://github.com/rust-lang/rust-clippy/pull/14810) ### False Positive Fixes @@ -68,6 +75,13 @@ Current stable, released 2025-06-26 [#14381](https://github.com/rust-lang/rust-clippy/pull/14381) * [`redundant_clone`] fixed FP on enum cast [#14395](https://github.com/rust-lang/rust-clippy/pull/14395) +* [`collapsible_if`] fixed FP on block stmt before expr + [#14730](https://github.com/rust-lang/rust-clippy/pull/14730) + +### ICE Fixes + +* [`missing_const_for_fn`] fix ICE with `-Z validate-mir` compilation option + [#14776](https://github.com/rust-lang/rust-clippy/pull/14776) ### Documentation Improvements @@ -78,6 +92,8 @@ Current stable, released 2025-06-26 * We're testing with edition 2024 now [#14602](https://github.com/rust-lang/rust-clippy/pull/14602) +* Don't warn about unloaded crates in `clippy.toml` disallowed paths + [#14733](https://github.com/rust-lang/rust-clippy/pull/14733) ## Rust 1.87 |
