Changelog for Clippy 1.84 🧨
This commit is contained in:
parent
4736004c2c
commit
4e4a2d022b
2 changed files with 48 additions and 2 deletions
45
CHANGELOG.md
45
CHANGELOG.md
|
@ -6,11 +6,52 @@ document.
|
|||
|
||||
## Unreleased / Beta / In Rust Nightly
|
||||
|
||||
[aa0d5513...master](https://github.com/rust-lang/rust-clippy/compare/aa0d5513...master)
|
||||
[786fbd6d...master](https://github.com/rust-lang/rust-clippy/compare/786fbd6d...master)
|
||||
|
||||
## Rust 1.84
|
||||
|
||||
Current stable, released 2024-01-09
|
||||
|
||||
[View all 84 merged pull requests](https://github.com/rust-lang/rust-clippy/pulls?q=merged%3A2024-10-03T21%3A23%3A58Z..2024-11-14T17%3A41%3A37Z+base%3Amaster)
|
||||
|
||||
### New Lints
|
||||
|
||||
* Added [`unnecessary_map_or`] to `style`
|
||||
[#11796](https://github.com/rust-lang/rust-clippy/pull/11796)
|
||||
* Added [`arbitrary_source_item_ordering`] to `restriction`
|
||||
[#13376](https://github.com/rust-lang/rust-clippy/pull/13376)
|
||||
* Added [`map_with_unused_argument_over_ranges`] to `restriction`
|
||||
[#13034](https://github.com/rust-lang/rust-clippy/pull/13034)
|
||||
* Added [`map_all_any_identity`] to `complexity`
|
||||
[#13499](https://github.com/rust-lang/rust-clippy/pull/13499)
|
||||
* Added [`needless_as_bytes`] to `complexity`
|
||||
[#13437](https://github.com/rust-lang/rust-clippy/pull/13437)
|
||||
* Added [`unnecessary_literal_bound`] to `pedantic`
|
||||
[#13395](https://github.com/rust-lang/rust-clippy/pull/13395)
|
||||
* Added [`manual_ignore_case_cmp`] to `perf`
|
||||
[#13334](https://github.com/rust-lang/rust-clippy/pull/13334)
|
||||
* Added [`regex_creation_in_loops`] to `perf`
|
||||
[#13412](https://github.com/rust-lang/rust-clippy/pull/13412)
|
||||
|
||||
### Moves and Deprecations
|
||||
|
||||
* Moved [`manual_is_power_of_two`] to `pedantic` (From `complexity`, now allow-by-default)
|
||||
[#13553](https://github.com/rust-lang/rust-clippy/pull/13553)
|
||||
* Move [`module_name_repetitions`] to `restriction` (from `pedantic`)
|
||||
[#13541](https://github.com/rust-lang/rust-clippy/pull/13541)
|
||||
|
||||
### Enhancements
|
||||
|
||||
* [`doc_markdown`]: Added the following identifiers to [`doc-valid-idents`]:
|
||||
CoAP, MHz, GHz, and THz
|
||||
[#13633](https://github.com/rust-lang/rust-clippy/pull/13633)
|
||||
[#13460](https://github.com/rust-lang/rust-clippy/pull/13460)
|
||||
* [`large_const_arrays`]: Changed the default of [`array-size-threshold`] to `16kb` (from `512kb`)
|
||||
[#13485](https://github.com/rust-lang/rust-clippy/pull/13485)
|
||||
|
||||
## Rust 1.83
|
||||
|
||||
Current stable, released 2024-11-28
|
||||
Released 2024-11-28
|
||||
|
||||
[View all 64 merged pull requests](https://github.com/rust-lang/rust-clippy/pulls?q=merged%3A2024-08-25T09%3A59%3A01Z..2024-10-03T13%3A42%3A56Z+base%3Amaster)
|
||||
|
||||
|
|
|
@ -83,7 +83,12 @@ As section headers, we use:
|
|||
|
||||
```
|
||||
### New Lints
|
||||
* Added [`LINT`] to `GROUP`
|
||||
|
||||
### Moves and Deprecations
|
||||
* Moved [`LINT`] to `GROUP` (From `GROUP`, now LEVEL-by-default)
|
||||
* Renamed `LINT` to [`LINT`]
|
||||
|
||||
### Enhancements
|
||||
### False Positive Fixes
|
||||
### Suggestion Fixes/Improvements
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue