diff options
| author | Alexey Semenyuk <alexsemenyuk88@gmail.com> | 2025-06-25 15:28:10 +0500 |
|---|---|---|
| committer | Alexey Semenyuk <alexsemenyuk88@gmail.com> | 2025-06-25 15:38:20 +0500 |
| commit | 95f0991ad4b6e3390f19a30d42c810605fd448c8 (patch) | |
| tree | 637f6215e59a9f32916d3c6fb6dfd0b6027e0471 | |
| parent | ad6e19a2690ec56abe31337e5a2587bc089a806f (diff) | |
| download | rust-95f0991ad4b6e3390f19a30d42c810605fd448c8.tar.gz rust-95f0991ad4b6e3390f19a30d42c810605fd448c8.zip | |
Add beta-nominated to changelog for 1.88
| -rw-r--r-- | CHANGELOG.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8520465107d..d5598bbd089 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,9 @@ Current stable, released 2025-06-26 [#14219](https://github.com/rust-lang/rust-clippy/pull/14219) * [`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 |
