@@ -29,6 +29,9 @@ Current stable, released 2025-06-26
29
29
[ #14160 ] ( https://github.com/rust-lang/rust-clippy/pull/14160 )
30
30
* [ ` match_on_vec_items ` ] deprecated in favor of [ ` indexing_slicing ` ]
31
31
[ #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 )
32
35
33
36
### Enhancements
34
37
@@ -51,6 +54,10 @@ Current stable, released 2025-06-26
51
54
[ #14481 ] ( https://github.com/rust-lang/rust-clippy/pull/14481 )
52
55
* [ ` match_single_binding ` ] now allows macros in scrutinee and patterns
53
56
[ #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 )
54
61
55
62
### False Positive Fixes
56
63
@@ -68,6 +75,13 @@ Current stable, released 2025-06-26
68
75
[ #14381 ] ( https://github.com/rust-lang/rust-clippy/pull/14381 )
69
76
* [ ` redundant_clone ` ] fixed FP on enum cast
70
77
[ #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 )
71
85
72
86
### Documentation Improvements
73
87
@@ -78,6 +92,8 @@ Current stable, released 2025-06-26
78
92
79
93
* We're testing with edition 2024 now
80
94
[ #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 )
81
97
82
98
## Rust 1.87
83
99
0 commit comments