Skip to content

Commit dae1be9

Browse files
committed
Auto merge of rust-lang#13525 - xFrednet:changelog-1-82, r=dswij
Changelog for Clippy 1.82 ✈️ ``` Roses are red, Violets are blue, EuroRust in Austria, RustConf in Canada. ``` --- ### The cat of this release is *Racka*: <img height=500 src="https://github.com/user-attachments/assets/e5e3cc95-6fc3-4214-aab0-4f26e0967ae5" alt="The cats of this Clippy release" /> Cats for the next release can be nominated in the comments :D --- changelog: none
2 parents ccb30bf + 512ad86 commit dae1be9

File tree

2 files changed

+38
-3
lines changed

2 files changed

+38
-3
lines changed

CHANGELOG.md

+37-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,46 @@ document.
66

77
## Unreleased / Beta / In Rust Nightly
88

9-
[b794b8e0...master](https://github.com/rust-lang/rust-clippy/compare/b794b8e0...master)
9+
[0f8eabd6...master](https://github.com/rust-lang/rust-clippy/compare/0f8eabd6...master)
10+
11+
## Rust 1.82
12+
13+
Current stable, released 2024-10-17
14+
15+
[View all 108 merged pull requests](https://github.com/rust-lang/rust-clippy/pulls?q=merged%3A2024-07-11T20%3A12%3A07Z..2024-08-24T20%3A55%3A35Z+base%3Amaster)
16+
17+
### New Lints
18+
19+
* Added [`too_long_first_doc_paragraph`] to `nursery`
20+
[#12993](https://github.com/rust-lang/rust-clippy/pull/12993)
21+
* Added [`unused_result_ok`] to `restriction`
22+
[#12150](https://github.com/rust-lang/rust-clippy/pull/12150)
23+
* Added [`pathbuf_init_then_push`] to `restriction`
24+
[#11700](https://github.com/rust-lang/rust-clippy/pull/11700)
25+
26+
### Enhancements
27+
28+
* [`explicit_iter_loop`]: Now respects the `msrv` configuration
29+
[#13288](https://github.com/rust-lang/rust-clippy/pull/13288)
30+
* [`assigning_clones`]: No longer lints in test code
31+
[#13273](https://github.com/rust-lang/rust-clippy/pull/13273)
32+
* [`inconsistent_struct_constructor`]: Lint attributes now work on the struct definition
33+
[#13211](https://github.com/rust-lang/rust-clippy/pull/13211)
34+
* [`set_contains_or_insert`]: Now also checks for `BTreeSet`
35+
[#13053](https://github.com/rust-lang/rust-clippy/pull/13053)
36+
* [`doc_markdown`]: Added the following identifiers to [`doc-valid-idents`]: AccessKit,
37+
CoreFoundation, CoreGraphics, CoreText, Direct2D, Direct3D, DirectWrite, PostScript,
38+
OpenAL, OpenType, WebRTC, WebSocket, WebTransport, NetBSD, and OpenBSD
39+
[#13093](https://github.com/rust-lang/rust-clippy/pull/13093)
40+
41+
### ICE Fixes
42+
43+
* [`uninit_vec`]
44+
[rust#128720](https://github.com/rust-lang/rust/pull/128720)
1045

1146
## Rust 1.81
1247

13-
Current stable, released 2024-09-05
48+
Released 2024-09-05
1449

1550
### New Lints
1651

clippy_lints/src/pathbuf_init_then_push.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ declare_clippy_lint! {
3737
/// // or
3838
/// let path_buf = PathBuf::new().join("foo");
3939
/// ```
40-
#[clippy::version = "1.81.0"]
40+
#[clippy::version = "1.82.0"]
4141
pub PATHBUF_INIT_THEN_PUSH,
4242
restriction,
4343
"`push` immediately after `PathBuf` creation"

0 commit comments

Comments
 (0)