|
1 | 1 | # Changelog
|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file.
|
4 |
| -See [Changelog Update](doc/changelog_update.md) if you want to update this |
| 4 | +See [Changelog Update](book/src/development/infrastructure/changelog_update.md) if you want to update this |
5 | 5 | document.
|
6 | 6 |
|
7 | 7 | ## Unreleased / In Rust Nightly
|
8 | 8 |
|
9 |
| -[d0cf3481...master](https://github.com/rust-lang/rust-clippy/compare/d0cf3481...master) |
| 9 | +[7c21f91b...master](https://github.com/rust-lang/rust-clippy/compare/7c21f91b...master) |
| 10 | + |
| 11 | +## Rust 1.62 |
| 12 | + |
| 13 | +Current stable, released 2022-06-30 |
| 14 | + |
| 15 | +[d0cf3481...7c21f91b](https://github.com/rust-lang/rust-clippy/compare/d0cf3481...7c21f91b) |
| 16 | + |
| 17 | +### New Lints |
| 18 | + |
| 19 | +* [`large_include_file`] |
| 20 | + [#8727](https://github.com/rust-lang/rust-clippy/pull/8727) |
| 21 | +* [`cast_abs_to_unsigned`] |
| 22 | + [#8635](https://github.com/rust-lang/rust-clippy/pull/8635) |
| 23 | +* [`err_expect`] |
| 24 | + [#8606](https://github.com/rust-lang/rust-clippy/pull/8606) |
| 25 | +* [`unnecessary_owned_empty_strings`] |
| 26 | + [#8660](https://github.com/rust-lang/rust-clippy/pull/8660) |
| 27 | +* [`empty_structs_with_brackets`] |
| 28 | + [#8594](https://github.com/rust-lang/rust-clippy/pull/8594) |
| 29 | +* [`crate_in_macro_def`] |
| 30 | + [#8576](https://github.com/rust-lang/rust-clippy/pull/8576) |
| 31 | +* [`needless_option_take`] |
| 32 | + [#8665](https://github.com/rust-lang/rust-clippy/pull/8665) |
| 33 | +* [`bytes_count_to_len`] |
| 34 | + [#8711](https://github.com/rust-lang/rust-clippy/pull/8711) |
| 35 | +* [`is_digit_ascii_radix`] |
| 36 | + [#8624](https://github.com/rust-lang/rust-clippy/pull/8624) |
| 37 | +* [`await_holding_invalid_type`] |
| 38 | + [#8707](https://github.com/rust-lang/rust-clippy/pull/8707) |
| 39 | +* [`trim_split_whitespace`] |
| 40 | + [#8575](https://github.com/rust-lang/rust-clippy/pull/8575) |
| 41 | +* [`pub_use`] |
| 42 | + [#8670](https://github.com/rust-lang/rust-clippy/pull/8670) |
| 43 | +* [`format_push_string`] |
| 44 | + [#8626](https://github.com/rust-lang/rust-clippy/pull/8626) |
| 45 | +* [`empty_drop`] |
| 46 | + [#8571](https://github.com/rust-lang/rust-clippy/pull/8571) |
| 47 | +* [`drop_non_drop`] |
| 48 | + [#8630](https://github.com/rust-lang/rust-clippy/pull/8630) |
| 49 | +* [`forget_non_drop`] |
| 50 | + [#8630](https://github.com/rust-lang/rust-clippy/pull/8630) |
| 51 | + |
| 52 | +### Moves and Deprecations |
| 53 | + |
| 54 | +* Move [`only_used_in_recursion`] to `nursery` (now allow-by-default) |
| 55 | + [#8783](https://github.com/rust-lang/rust-clippy/pull/8783) |
| 56 | +* Move [`stable_sort_primitive`] to `pedantic` (now allow-by-default) |
| 57 | + [#8716](https://github.com/rust-lang/rust-clippy/pull/8716) |
| 58 | + |
| 59 | +### Enhancements |
| 60 | + |
| 61 | +* Remove overlap between [`manual_split_once`] and [`needless_splitn`] |
| 62 | + [#8631](https://github.com/rust-lang/rust-clippy/pull/8631) |
| 63 | +* [`map_identity`]: Now checks for needless `map_err` |
| 64 | + [#8487](https://github.com/rust-lang/rust-clippy/pull/8487) |
| 65 | +* [`extra_unused_lifetimes`]: Now checks for impl lifetimes |
| 66 | + [#8737](https://github.com/rust-lang/rust-clippy/pull/8737) |
| 67 | +* [`cast_possible_truncation`]: Now catches more cases with larger shift or divide operations |
| 68 | + [#8687](https://github.com/rust-lang/rust-clippy/pull/8687) |
| 69 | +* [`identity_op`]: Now checks for modulo expressions |
| 70 | + [#8519](https://github.com/rust-lang/rust-clippy/pull/8519) |
| 71 | +* [`panic`]: No longer lint in constant context |
| 72 | + [#8592](https://github.com/rust-lang/rust-clippy/pull/8592) |
| 73 | +* [`manual_split_once`]: Now lints manual iteration of `splitn` |
| 74 | + [#8717](https://github.com/rust-lang/rust-clippy/pull/8717) |
| 75 | +* [`self_named_module_files`], [`mod_module_files`]: Now handle relative module paths |
| 76 | + [#8611](https://github.com/rust-lang/rust-clippy/pull/8611) |
| 77 | +* [`unsound_collection_transmute`]: Now has better size and alignment checks |
| 78 | + [#8648](https://github.com/rust-lang/rust-clippy/pull/8648) |
| 79 | +* [`unnested_or_patterns`]: Ignore cases, where the suggestion would be longer |
| 80 | + [#8619](https://github.com/rust-lang/rust-clippy/pull/8619) |
| 81 | + |
| 82 | +### False Positive Fixes |
| 83 | + |
| 84 | +* [`rest_pat_in_fully_bound_structs`]: Now ignores structs marked with `#[non_exhaustive]` |
| 85 | + [#8690](https://github.com/rust-lang/rust-clippy/pull/8690) |
| 86 | +* [`needless_late_init`]: No longer lints `if let` statements, `let mut` bindings or instances that |
| 87 | + changes the drop order significantly |
| 88 | + [#8617](https://github.com/rust-lang/rust-clippy/pull/8617) |
| 89 | +* [`unnecessary_cast`]: No longer lints to casts to aliased or non-primitive types |
| 90 | + [#8596](https://github.com/rust-lang/rust-clippy/pull/8596) |
| 91 | +* [`init_numbered_fields`]: No longer lints type aliases |
| 92 | + [#8780](https://github.com/rust-lang/rust-clippy/pull/8780) |
| 93 | +* [`needless_option_as_deref`]: No longer lints for `as_deref_mut` on `Option` values that can't be moved |
| 94 | + [#8646](https://github.com/rust-lang/rust-clippy/pull/8646) |
| 95 | +* [`mistyped_literal_suffixes`]: Now ignores float literals without an exponent |
| 96 | + [#8742](https://github.com/rust-lang/rust-clippy/pull/8742) |
| 97 | +* [`undocumented_unsafe_blocks`]: Now ignores unsafe blocks from proc-macros and works better for sub-expressions |
| 98 | + [#8450](https://github.com/rust-lang/rust-clippy/pull/8450) |
| 99 | +* [`same_functions_in_if_condition`]: Now allows different constants, even if they have the same value |
| 100 | + [#8673](https://github.com/rust-lang/rust-clippy/pull/8673) |
| 101 | +* [`needless_match`]: Now checks for more complex types and ignores type coercion |
| 102 | + [#8549](https://github.com/rust-lang/rust-clippy/pull/8549) |
| 103 | +* [`assertions_on_constants`]: Now ignores constants from `cfg!` macros |
| 104 | + [#8614](https://github.com/rust-lang/rust-clippy/pull/8614) |
| 105 | +* [`indexing_slicing`]: Fix false positives with constant indices in |
| 106 | + [#8588](https://github.com/rust-lang/rust-clippy/pull/8588) |
| 107 | +* [`iter_with_drain`]: Now ignores iterator references |
| 108 | + [#8668](https://github.com/rust-lang/rust-clippy/pull/8668) |
| 109 | +* [`useless_attribute`]: Now allows [`redundant_pub_crate`] on `use` items |
| 110 | + [#8743](https://github.com/rust-lang/rust-clippy/pull/8743) |
| 111 | +* [`cast_ptr_alignment`]: Now ignores expressions, when used for unaligned reads and writes |
| 112 | + [#8632](https://github.com/rust-lang/rust-clippy/pull/8632) |
| 113 | +* [`wrong_self_convention`]: Now allows `&mut self` and no self as arguments for `is_*` methods |
| 114 | + [#8738](https://github.com/rust-lang/rust-clippy/pull/8738) |
| 115 | +* [`mut_from_ref`]: Only lint in unsafe code |
| 116 | + [#8647](https://github.com/rust-lang/rust-clippy/pull/8647) |
| 117 | +* [`redundant_pub_crate`]: Now allows macro exports |
| 118 | + [#8736](https://github.com/rust-lang/rust-clippy/pull/8736) |
| 119 | +* [`needless_match`]: Ignores cases where the else block expression is different |
| 120 | + [#8700](https://github.com/rust-lang/rust-clippy/pull/8700) |
| 121 | +* [`transmute_int_to_char`]: Now allows transmutations in `const` code |
| 122 | + [#8610](https://github.com/rust-lang/rust-clippy/pull/8610) |
| 123 | +* [`manual_non_exhaustive`]: Ignores cases, where the enum value is used |
| 124 | + [#8645](https://github.com/rust-lang/rust-clippy/pull/8645) |
| 125 | +* [`redundant_closure`]: Now ignores coerced closure |
| 126 | + [#8431](https://github.com/rust-lang/rust-clippy/pull/8431) |
| 127 | +* [`identity_op`]: Is now ignored in cases where extra brackets would be needed |
| 128 | + [#8730](https://github.com/rust-lang/rust-clippy/pull/8730) |
| 129 | +* [`let_unit_value`]: Now ignores cases which are used for type inference |
| 130 | + [#8563](https://github.com/rust-lang/rust-clippy/pull/8563) |
| 131 | + |
| 132 | +### Suggestion Fixes/Improvements |
| 133 | + |
| 134 | +* [`manual_split_once`]: Fixed incorrect suggestions for single result accesses |
| 135 | + [#8631](https://github.com/rust-lang/rust-clippy/pull/8631) |
| 136 | +* [`bytes_nth`]: Fix typos in the diagnostic message |
| 137 | + [#8403](https://github.com/rust-lang/rust-clippy/pull/8403) |
| 138 | +* [`mistyped_literal_suffixes`]: Now suggests the correct integer types |
| 139 | + [#8742](https://github.com/rust-lang/rust-clippy/pull/8742) |
| 140 | +* [`unnecessary_to_owned`]: Fixed suggestion based on the configured msrv |
| 141 | + [#8692](https://github.com/rust-lang/rust-clippy/pull/8692) |
| 142 | +* [`single_element_loop`]: Improve lint for Edition 2021 arrays |
| 143 | + [#8616](https://github.com/rust-lang/rust-clippy/pull/8616) |
| 144 | +* [`manual_bits`]: Now includes a cast for proper type conversion, when needed |
| 145 | + [#8677](https://github.com/rust-lang/rust-clippy/pull/8677) |
| 146 | +* [`option_map_unit_fn`], [`result_map_unit_fn`]: Fix some incorrect suggestions |
| 147 | + [#8584](https://github.com/rust-lang/rust-clippy/pull/8584) |
| 148 | +* [`collapsible_else_if`]: Add whitespace in suggestion |
| 149 | + [#8729](https://github.com/rust-lang/rust-clippy/pull/8729) |
| 150 | +* [`transmute_bytes_to_str`]: Now suggest `from_utf8_unchecked` in `const` context |
| 151 | + [#8612](https://github.com/rust-lang/rust-clippy/pull/8612) |
| 152 | +* [`map_clone`]: Improve message and suggestion based on the msrv |
| 153 | + [#8688](https://github.com/rust-lang/rust-clippy/pull/8688) |
| 154 | +* [`needless_late_init`]: Now shows the `let` statement where it was first initialized |
| 155 | + [#8779](https://github.com/rust-lang/rust-clippy/pull/8779) |
| 156 | + |
| 157 | +### ICE Fixes |
| 158 | + |
| 159 | +* [`only_used_in_recursion`] |
| 160 | + [#8691](https://github.com/rust-lang/rust-clippy/pull/8691) |
| 161 | +* [`cast_slice_different_sizes`] |
| 162 | + [#8720](https://github.com/rust-lang/rust-clippy/pull/8720) |
| 163 | +* [`iter_overeager_cloned`] |
| 164 | + [#8602](https://github.com/rust-lang/rust-clippy/pull/8602) |
| 165 | +* [`undocumented_unsafe_blocks`] |
| 166 | + [#8686](https://github.com/rust-lang/rust-clippy/pull/8686) |
10 | 167 |
|
11 | 168 | ## Rust 1.61
|
12 | 169 |
|
13 |
| -Current stable, released 2022-05-19 |
| 170 | +Released 2022-05-19 |
14 | 171 |
|
15 | 172 | [57b3c4b...d0cf3481](https://github.com/rust-lang/rust-clippy/compare/57b3c4b...d0cf3481)
|
16 | 173 |
|
@@ -207,7 +364,7 @@ Released 2022-04-07
|
207 | 364 |
|
208 | 365 | * [`needless_borrow`]: Prevent mutable borrows being moved and suggest removing the borrow on method calls
|
209 | 366 | [#8217](https://github.com/rust-lang/rust-clippy/pull/8217)
|
210 |
| -* [`chars_next_cmp`]: Correctly excapes the suggestion |
| 367 | +* [`chars_next_cmp`]: Correctly escapes the suggestion |
211 | 368 | [#8376](https://github.com/rust-lang/rust-clippy/pull/8376)
|
212 | 369 | * [`explicit_write`]: Add suggestions for `write!`s with format arguments
|
213 | 370 | [#8365](https://github.com/rust-lang/rust-clippy/pull/8365)
|
@@ -1420,7 +1577,7 @@ Released 2021-03-25
|
1420 | 1577 | * Add `cargo dev-lintcheck` tool to the Clippy Dev Tool
|
1421 | 1578 | [#6469](https://github.com/rust-lang/rust-clippy/pull/6469)
|
1422 | 1579 |
|
1423 |
| -[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/doc/roadmap-2021.md |
| 1580 | +[Roadmap]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/proposals/roadmap-2021.md |
1424 | 1581 | [Roadmap project page]: https://github.com/rust-lang/rust-clippy/projects/3
|
1425 | 1582 |
|
1426 | 1583 | ## Rust 1.50
|
@@ -2368,7 +2525,7 @@ Released 2019-09-26
|
2368 | 2525 | * [`inherent_to_string_shadow_display`] [#4259](https://github.com/rust-lang/rust-clippy/pull/4259)
|
2369 | 2526 | * [`type_repetition_in_bounds`] [#3766](https://github.com/rust-lang/rust-clippy/pull/3766)
|
2370 | 2527 | * [`try_err`] [#4222](https://github.com/rust-lang/rust-clippy/pull/4222)
|
2371 |
| -* Move `{unnnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307) |
| 2528 | +* Move `{unnecessary,panicking}_unwrap` out of nursery [#4307](https://github.com/rust-lang/rust-clippy/pull/4307) |
2372 | 2529 | * Extend the `use_self` lint to suggest uses of `Self::Variant` [#4308](https://github.com/rust-lang/rust-clippy/pull/4308)
|
2373 | 2530 | * Improve suggestion for needless return [#4262](https://github.com/rust-lang/rust-clippy/pull/4262)
|
2374 | 2531 | * Add auto-fixable suggestion for `let_unit` [#4337](https://github.com/rust-lang/rust-clippy/pull/4337)
|
@@ -3269,12 +3426,13 @@ Released 2018-09-13
|
3269 | 3426 | [`AsRef`]: https://doc.rust-lang.org/std/convert/trait.AsRef.html
|
3270 | 3427 | [configuration file]: ./rust-clippy#configuration
|
3271 | 3428 | [pull3665]: https://github.com/rust-lang/rust-clippy/pull/3665
|
3272 |
| -[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/doc/adding_lints.md |
| 3429 | +[adding_lints]: https://github.com/rust-lang/rust-clippy/blob/master/book/src/development/adding_lints.md |
3273 | 3430 | [`README.md`]: https://github.com/rust-lang/rust-clippy/blob/master/README.md
|
3274 | 3431 |
|
3275 | 3432 | <!-- lint disable no-unused-definitions -->
|
3276 | 3433 | <!-- begin autogenerated links to lint list -->
|
3277 | 3434 | [`absurd_extreme_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#absurd_extreme_comparisons
|
| 3435 | +[`alloc_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#alloc_instead_of_core |
3278 | 3436 | [`allow_attributes_without_reason`]: https://rust-lang.github.io/rust-clippy/master/index.html#allow_attributes_without_reason
|
3279 | 3437 | [`almost_complete_letter_range`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_complete_letter_range
|
3280 | 3438 | [`almost_swapped`]: https://rust-lang.github.io/rust-clippy/master/index.html#almost_swapped
|
@@ -3484,6 +3642,7 @@ Released 2018-09-13
|
3484 | 3642 | [`invalid_ref`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_ref
|
3485 | 3643 | [`invalid_regex`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_regex
|
3486 | 3644 | [`invalid_upcast_comparisons`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_upcast_comparisons
|
| 3645 | +[`invalid_utf8_in_unchecked`]: https://rust-lang.github.io/rust-clippy/master/index.html#invalid_utf8_in_unchecked |
3487 | 3646 | [`invisible_characters`]: https://rust-lang.github.io/rust-clippy/master/index.html#invisible_characters
|
3488 | 3647 | [`is_digit_ascii_radix`]: https://rust-lang.github.io/rust-clippy/master/index.html#is_digit_ascii_radix
|
3489 | 3648 | [`items_after_statements`]: https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements
|
@@ -3743,6 +3902,8 @@ Released 2018-09-13
|
3743 | 3902 | [`skip_while_next`]: https://rust-lang.github.io/rust-clippy/master/index.html#skip_while_next
|
3744 | 3903 | [`slow_vector_initialization`]: https://rust-lang.github.io/rust-clippy/master/index.html#slow_vector_initialization
|
3745 | 3904 | [`stable_sort_primitive`]: https://rust-lang.github.io/rust-clippy/master/index.html#stable_sort_primitive
|
| 3905 | +[`std_instead_of_alloc`]: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc |
| 3906 | +[`std_instead_of_core`]: https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core |
3746 | 3907 | [`str_to_string`]: https://rust-lang.github.io/rust-clippy/master/index.html#str_to_string
|
3747 | 3908 | [`string_add`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add
|
3748 | 3909 | [`string_add_assign`]: https://rust-lang.github.io/rust-clippy/master/index.html#string_add_assign
|
|
0 commit comments