| Age | Commit message (Expand) | Author | Lines |
| 2023-12-26 | Make some non-diagnostic-affecting QPath::LangItem into regular qpaths | Michael Goulet | -0/+4 |
| 2023-12-25 | Fix clippy's usage of Body's coroutine_kind | Michael Goulet | -73/+119 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -15/+15 |
| 2023-12-23 | Rollup merge of #119231 - aDotInTheVoid:PatKind-struct-bool-docs, r=compiler-... | Matthias Krüger | -1/+1 |
| 2023-12-23 | bool->enum for ast::PatKind::Struct presence of `..` | Alona Enraght-Moony | -1/+1 |
| 2023-12-22 | Split coroutine desugaring kind from source | Michael Goulet | -15/+19 |
| 2023-12-22 | Auto merge of #118847 - eholk:for-await, r=compiler-errors | bors | -7/+24 |
| 2023-12-20 | Hide foreign `#[doc(hidden)]` paths in import suggestions | Jules Bertholet | -2/+0 |
| 2023-12-20 | Give `VariantData::Struct` named fields, to clairfy `recovered`. | Alona Enraght-Moony | -5/+7 |
| 2023-12-19 | Plumb awaitness of for loops | Eric Holk | -7/+24 |
| 2023-12-18 | Rename many `DiagCtxt` and `EarlyDiagCtxt` locals. | Nicholas Nethercote | -4/+4 |
| 2023-12-18 | Rename `ParseSess::with_span_handler` as `ParseSess::with_dcx`. | Nicholas Nethercote | -2/+2 |
| 2023-12-18 | Rename `EarlyErrorHandler` as `EarlyDiagCtxt`. | Nicholas Nethercote | -2/+2 |
| 2023-12-18 | Rename `Handler` as `DiagCtxt`. | Nicholas Nethercote | -2/+2 |
| 2023-12-16 | Merge commit 'a859e5cc1ce100df22346a1005da30532d04de59' into clippyup | Philipp Krones | -637/+3064 |
| 2023-12-15 | Rollup merge of #118727 - compiler-errors:lint-decorate, r=WaffleLapkin | Jubilee | -6/+0 |
| 2023-12-15 | Appease the tools: clippy, rustdoc | Michael Goulet | -4/+6 |
| 2023-12-15 | Don't pass lint back out of lint decorator | Michael Goulet | -6/+0 |
| 2023-12-15 | Rollup merge of #118888 - compiler-errors:uplift-more-things, r=jackh726 | Matthias Krüger | -3/+3 |
| 2023-12-12 | Uplift TypeAndMut | Michael Goulet | -3/+3 |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -60/+59 |
| 2023-12-11 | Auto merge of #117758 - Urgau:lint_pointer_trait_comparisons, r=davidtwco | bors | -244/+70 |
| 2023-12-11 | Auto merge of #118661 - fee1-dead-contrib:restore-const-partialEq, r=compiler... | bors | -14/+31 |
| 2023-12-11 | Add spacing information to delimiters. | Nicholas Nethercote | -1/+1 |
| 2023-12-10 | fix clippy | Deadbeef | -14/+31 |
| 2023-12-10 | remove redundant imports | surechen | -8/+5 |
| 2023-12-08 | Auto merge of #118420 - compiler-errors:async-gen, r=eholk | bors | -6/+7 |
| 2023-12-08 | Make some matches exhaustive to avoid bugs, fix tools | Michael Goulet | -1/+2 |
| 2023-12-08 | coro_kind -> coroutine_kind | Michael Goulet | -5/+5 |
| 2023-12-08 | Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errors | bors | -3/+7 |
| 2023-12-06 | Drop clippy::vtable_address_comparisons | Urgau | -244/+70 |
| 2023-12-04 | Fix build | Eric Holk | -1/+1 |
| 2023-12-04 | Update doctest | Eric Holk | -2/+2 |
| 2023-12-04 | Remove bad merge | Eric Holk | -199/+0 |
| 2023-12-04 | Option<CoroutineKind> | Eric Holk | -3/+12 |
| 2023-12-04 | Merge Async and Gen into CoroutineKind | Eric Holk | -3/+202 |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -3/+7 |
| 2023-12-02 | Auto merge of #118507 - flip1995:clippy-subtree-sync, r=matthiaskrgr | bors | -1174/+3660 |
| 2023-12-02 | Auto merge of #118470 - nnethercote:cleanup-error-handlers, r=compiler-errors | bors | -5/+5 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -4/+4 |
| 2023-12-02 | Rename `*note_without_error` as `*note`. | Nicholas Nethercote | -1/+1 |
| 2023-12-01 | Merge commit 'f0cdee4a3f094416189261481eae374b76792af1' into clippy-subtree-sync | Philipp Krones | -1174/+3660 |
| 2023-12-01 | Auto merge of #117472 - jmillikin:stable-c-str-literals, r=Nilstrieb | bors | -26/+22 |
| 2023-11-29 | Rollup merge of #118157 - Nadrieril:never_pat-feature-gate, r=compiler-errors | Matthias Krüger | -2/+8 |
| 2023-11-29 | Add `never_patterns` feature gate | Nadrieril | -2/+8 |
| 2023-11-28 | Rework `ast::BinOpKind::to_string` and `ast::UnOp::to_string`. | Nicholas Nethercote | -10/+10 |
| 2023-11-26 | rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle... | Vadim Petrochenkov | -32/+32 |
| 2023-11-26 | Auto merge of #118250 - petrochenkov:optdefkind, r=compiler-errors | bors | -3/+2 |
| 2023-11-25 | Appease the clippy | Michael Goulet | -4/+4 |
| 2023-11-25 | rustc: Make `def_kind` mandatory for all `DefId`s | Vadim Petrochenkov | -3/+2 |