@@ -29,6 +29,9 @@ Current stable, released 2025-06-26
2929 [ #14219 ] ( https://github.com/rust-lang/rust-clippy/pull/14219 )
3030* [ ` match_on_vec_items ` ] deprecated in favor of [ ` indexing_slicing ` ]
3131 [ #14217 ] ( https://github.com/rust-lang/rust-clippy/pull/14217 )
32+ * Removed superseded lints: ` transmute_float_to_int ` , ` transmute_int_to_char ` ,
33+ ` transmute_int_to_float ` , ` transmute_num_to_bytes ` (now in rustc)
34+ [ #14703 ] ( https://github.com/rust-lang/rust-clippy/pull/14703 )
3235
3336### Enhancements
3437
@@ -51,6 +54,10 @@ Current stable, released 2025-06-26
5154 [ #14481 ] ( https://github.com/rust-lang/rust-clippy/pull/14481 )
5255* [ ` match_single_binding ` ] now allows macros in scrutinee and patterns
5356 [ #14635 ] ( https://github.com/rust-lang/rust-clippy/pull/14635 )
57+ * [ ` needless_borrow ` ] does not contradict the compiler's
58+ ` dangerous_implicit_autorefs ` lint even though the references
59+ are not mandatory
60+ [ #14810 ] ( https://github.com/rust-lang/rust-clippy/pull/14810 )
5461
5562### False Positive Fixes
5663
@@ -68,6 +75,13 @@ Current stable, released 2025-06-26
6875 [ #14381 ] ( https://github.com/rust-lang/rust-clippy/pull/14381 )
6976* [ ` redundant_clone ` ] fixed FP on enum cast
7077 [ #14395 ] ( https://github.com/rust-lang/rust-clippy/pull/14395 )
78+ * [ ` collapsible_if ` ] fixed FP on block stmt before expr
79+ [ #14730 ] ( https://github.com/rust-lang/rust-clippy/pull/14730 )
80+
81+ ### ICE Fixes
82+
83+ * [ ` missing_const_for_fn ` ] fix ICE with ` -Z validate-mir ` compilation option
84+ [ #14776 ] ( https://github.com/rust-lang/rust-clippy/pull/14776 )
7185
7286### Documentation Improvements
7387
@@ -78,6 +92,8 @@ Current stable, released 2025-06-26
7892
7993* We're testing with edition 2024 now
8094 [ #14602 ] ( https://github.com/rust-lang/rust-clippy/pull/14602 )
95+ * Don't warn about unloaded crates in ` clippy.toml ` disallowed paths
96+ [ #14733 ] ( https://github.com/rust-lang/rust-clippy/pull/14733 )
8197
8298## Rust 1.87
8399
0 commit comments