@@ -6,11 +6,53 @@ document.
6
6
7
7
## Unreleased / Beta / In Rust Nightly
8
8
9
- [ ca3b3937...master] ( https://github.com/rust-lang/rust-clippy/compare/ca3b3937...master )
9
+ [ c9139bd5...master] ( https://github.com/rust-lang/rust-clippy/compare/c9139bd5...master )
10
+
11
+ ## Rust 1.80
12
+
13
+ Current stable, released 2024-07-25
14
+
15
+ [ View all 68 merged pull requests] ( https://github.com/rust-lang/rust-clippy/pulls?q=merged%3A2024-04-18T22%3A50%3A22Z..2024-05-30T08%3A26%3A18Z+base%3Amaster )
16
+
17
+ ### New Lints
18
+
19
+ * Added [ ` while_float ` ] to ` nursery `
20
+ [ #12765 ] ( https://github.com/rust-lang/rust-clippy/pull/12765 )
21
+ * Added [ ` macro_metavars_in_unsafe ` ] to ` suspicious `
22
+ [ #12107 ] ( https://github.com/rust-lang/rust-clippy/pull/12107 )
23
+ * Added [ ` renamed_function_params ` ] to ` restriction `
24
+ [ #11540 ] ( https://github.com/rust-lang/rust-clippy/pull/11540 )
25
+ * Added [ ` doc_lazy_continuation ` ] to ` style `
26
+ [ #12770 ] ( https://github.com/rust-lang/rust-clippy/pull/12770 )
27
+
28
+ ### Moves and Deprecations
29
+
30
+ * Moved [ ` assigning_clones ` ] to ` pedantic ` (From ` perf ` now allow-by-default)
31
+ [ #12779 ] ( https://github.com/rust-lang/rust-clippy/pull/12779 )
32
+ * Moved [ ` single_char_pattern ` ] to ` pedantic ` (From ` perf ` now allow-by-default)
33
+ [ #11852 ] ( https://github.com/rust-lang/rust-clippy/pull/11852 )
34
+
35
+ ### Enhancements
36
+
37
+ * [ ` panic ` ] : Added [ ` allow-panic-in-tests ` ] configuration to allow the lint in tests
38
+ [ #12803 ] ( https://github.com/rust-lang/rust-clippy/pull/12803 )
39
+ * [ ` missing_const_for_fn ` ] : Now respects the [ ` msrv ` ] configuration
40
+ [ #12713 ] ( https://github.com/rust-lang/rust-clippy/pull/12713 )
41
+ * [ ` missing_panics_doc ` ] : No longer lints on compile-time panics
42
+ [ #12790 ] ( https://github.com/rust-lang/rust-clippy/pull/12790 )
43
+ * [ ` collapsible_match ` ] : Now considers the [ ` msrv ` ] configuration for the suggestion
44
+ [ #12745 ] ( https://github.com/rust-lang/rust-clippy/pull/12745 )
45
+ * [ ` useless_vec ` ] : Added [ ` allow-useless-vec-in-tests ` ] configuration to allow the lint in tests
46
+ [ #12725 ] ( https://github.com/rust-lang/rust-clippy/pull/12725 )
47
+
48
+ ### Suggestion Fixes/Improvements
49
+
50
+ * [ ` single_match ` ] , [ ` single_match_else ` ] : Suggestions are now machine-applicable
51
+ [ #12726 ] ( https://github.com/rust-lang/rust-clippy/pull/12726 )
10
52
11
53
## Rust 1.79
12
54
13
- Current stable, released 2024-06-13
55
+ Released 2024-06-13
14
56
15
57
[ View all 102 merged pull requests] ( https://github.com/rust-lang/rust-clippy/pulls?q=merged%3A2024-03-08T11%3A13%3A58Z..2024-04-18T15%3A50%3A50Z+base%3Amaster )
16
58
@@ -5713,6 +5755,7 @@ Released 2018-09-13
5713
5755
[ `partialeq_to_none` ] : https://rust-lang.github.io/rust-clippy/master/index.html#partialeq_to_none
5714
5756
[ `path_buf_push_overwrite` ] : https://rust-lang.github.io/rust-clippy/master/index.html#path_buf_push_overwrite
5715
5757
[ `path_ends_with_ext` ] : https://rust-lang.github.io/rust-clippy/master/index.html#path_ends_with_ext
5758
+ [ `pathbuf_init_then_push` ] : https://rust-lang.github.io/rust-clippy/master/index.html#pathbuf_init_then_push
5716
5759
[ `pattern_type_mismatch` ] : https://rust-lang.github.io/rust-clippy/master/index.html#pattern_type_mismatch
5717
5760
[ `permissions_set_readonly_false` ] : https://rust-lang.github.io/rust-clippy/master/index.html#permissions_set_readonly_false
5718
5761
[ `positional_named_format_parameters` ] : https://rust-lang.github.io/rust-clippy/master/index.html#positional_named_format_parameters
@@ -5788,6 +5831,7 @@ Released 2018-09-13
5788
5831
[ `result_unit_err` ] : https://rust-lang.github.io/rust-clippy/master/index.html#result_unit_err
5789
5832
[ `result_unwrap_used` ] : https://rust-lang.github.io/rust-clippy/master/index.html#result_unwrap_used
5790
5833
[ `return_self_not_must_use` ] : https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
5834
+ [ `reverse_range_loop` ] : https://rust-lang.github.io/rust-clippy/master/index.html#reverse_range_loop
5791
5835
[ `reversed_empty_ranges` ] : https://rust-lang.github.io/rust-clippy/master/index.html#reversed_empty_ranges
5792
5836
[ `same_functions_in_if_condition` ] : https://rust-lang.github.io/rust-clippy/master/index.html#same_functions_in_if_condition
5793
5837
[ `same_item_push` ] : https://rust-lang.github.io/rust-clippy/master/index.html#same_item_push
@@ -5871,6 +5915,7 @@ Released 2018-09-13
5871
5915
[ `to_string_in_format_args` ] : https://rust-lang.github.io/rust-clippy/master/index.html#to_string_in_format_args
5872
5916
[ `to_string_trait_impl` ] : https://rust-lang.github.io/rust-clippy/master/index.html#to_string_trait_impl
5873
5917
[ `todo` ] : https://rust-lang.github.io/rust-clippy/master/index.html#todo
5918
+ [ `too_long_first_doc_paragraph` ] : https://rust-lang.github.io/rust-clippy/master/index.html#too_long_first_doc_paragraph
5874
5919
[ `too_many_arguments` ] : https://rust-lang.github.io/rust-clippy/master/index.html#too_many_arguments
5875
5920
[ `too_many_lines` ] : https://rust-lang.github.io/rust-clippy/master/index.html#too_many_lines
5876
5921
[ `toplevel_ref_arg` ] : https://rust-lang.github.io/rust-clippy/master/index.html#toplevel_ref_arg
@@ -5956,6 +6001,7 @@ Released 2018-09-13
5956
6001
[ `unused_io_amount` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_io_amount
5957
6002
[ `unused_label` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_label
5958
6003
[ `unused_peekable` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_peekable
6004
+ [ `unused_result_ok` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_result_ok
5959
6005
[ `unused_rounding` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_rounding
5960
6006
[ `unused_self` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_self
5961
6007
[ `unused_unit` ] : https://rust-lang.github.io/rust-clippy/master/index.html#unused_unit
@@ -5968,6 +6014,7 @@ Released 2018-09-13
5968
6014
[ `use_debug` ] : https://rust-lang.github.io/rust-clippy/master/index.html#use_debug
5969
6015
[ `use_self` ] : https://rust-lang.github.io/rust-clippy/master/index.html#use_self
5970
6016
[ `used_underscore_binding` ] : https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_binding
6017
+ [ `used_underscore_items` ] : https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_items
5971
6018
[ `useless_asref` ] : https://rust-lang.github.io/rust-clippy/master/index.html#useless_asref
5972
6019
[ `useless_attribute` ] : https://rust-lang.github.io/rust-clippy/master/index.html#useless_attribute
5973
6020
[ `useless_conversion` ] : https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
@@ -6002,6 +6049,7 @@ Released 2018-09-13
6002
6049
[ `zero_repeat_side_effects` ] : https://rust-lang.github.io/rust-clippy/master/index.html#zero_repeat_side_effects
6003
6050
[ `zero_sized_map_values` ] : https://rust-lang.github.io/rust-clippy/master/index.html#zero_sized_map_values
6004
6051
[ `zero_width_space` ] : https://rust-lang.github.io/rust-clippy/master/index.html#zero_width_space
6052
+ [ `zombie_processes` ] : https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes
6005
6053
[ `zst_offset` ] : https://rust-lang.github.io/rust-clippy/master/index.html#zst_offset
6006
6054
<!-- end autogenerated links to lint list -->
6007
6055
<!-- begin autogenerated links to configuration documentation -->
0 commit comments