| Age | Commit message (Expand) | Author | Lines |
| 2024-03-05 | Rename all `ParseSess` variables/fields/lifetimes as `psess`. | Nicholas Nethercote | -13/+13 |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -23/+15 |
| 2024-02-26 | Properly emit `expected ;` on `#[attr] expr` | Lieselotte | -4/+2 |
| 2024-02-25 | Add `ErrorGuaranteed` to `ast::ExprKind::Err` | Lieselotte | -39/+51 |
| 2024-02-25 | Rollup merge of #121060 - clubby789:bool-newtypes, r=cjgillot | Matthias Krüger | -28/+28 |
| 2024-02-20 | Use `Recovered` more | clubby789 | -12/+13 |
| 2024-02-20 | Add newtype for parser recovery | clubby789 | -10/+8 |
| 2024-02-20 | Add newtype for raw idents | clubby789 | -6/+7 |
| 2024-02-19 | Prefer `DiagnosticBuilder` over `Diagnostic` in diagnostic modifiers. | Nicholas Nethercote | -6/+6 |
| 2024-02-17 | Rollup merge of #121231 - matthiaskrgr:cloone, r=compiler-errors | Matthias Krüger | -2/+2 |
| 2024-02-17 | Rollup merge of #121085 - davidtwco:always-eager-diagnostics, r=nnethercote | Matthias Krüger | -1/+1 |
| 2024-02-17 | remove a couple of redundant clones | Matthias Krüger | -2/+2 |
| 2024-02-15 | errors: only eagerly translate subdiagnostics | David Wood | -1/+1 |
| 2024-02-15 | Add an `ErrorGuaranteed` to `ast::TyKind::Err`. | Nicholas Nethercote | -9/+11 |
| 2024-02-12 | Properly handle `async` blocks and `fn`s in `if` exprs without `else` | Esteban Küber | -1/+1 |
| 2024-01-27 | Rollup merge of #118182 - estebank:issue-118164, r=davidtwco | Matthias Krüger | -2/+17 |
| 2024-01-26 | Properly recover from trailing attr in body | Esteban Küber | -2/+17 |
| 2024-01-26 | Rollup merge of #119342 - sjwang05:issue-112254, r=wesleywiser | Matthias Krüger | -5/+20 |
| 2024-01-10 | Rename consuming chaining methods on `DiagnosticBuilder`. | Nicholas Nethercote | -2/+2 |
| 2024-01-08 | Emit suggestion when trying to write exclusive ranges as `..<` | sjwang05 | -5/+20 |
| 2024-01-08 | Remove a fourth `DiagnosticBuilder::emit_without_consuming` call. | Nicholas Nethercote | -9/+8 |
| 2024-01-08 | Remove a second `DiagnosticBuilder::emit_without_consuming` call. | Nicholas Nethercote | -11/+6 |
| 2024-01-08 | Remove a `DiagnosticBuilder::emit_without_consuming` call. | Nicholas Nethercote | -4/+7 |
| 2024-01-08 | Use chaining for `DiagnosticBuilder` construction and `emit`. | Nicholas Nethercote | -9/+10 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -5/+5 |
| 2024-01-03 | Rename some `Diagnostic` setters. | Nicholas Nethercote | -2/+2 |
| 2023-12-28 | Use filter instead of filter_map in Parser::expected_one_of_not_found | DaniPopes | -18/+20 |
| 2023-12-27 | Auto merge of #117303 - sjwang05:issue-117245, r=estebank | bors | -0/+20 |
| 2023-12-26 | Suggest `=>` --> `>=` in conditions | sjwang05 | -0/+20 |
| 2023-12-24 | Remove `ParseSess` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -30/+30 |
| 2023-12-24 | Remove `Parser` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -26/+12 |
| 2023-12-23 | Give `DiagnosticBuilder` a default type. | Nicholas Nethercote | -12/+9 |
| 2023-12-22 | Auto merge of #119097 - nnethercote:fix-EmissionGuarantee, r=compiler-errors | bors | -12/+10 |
| 2023-12-20 | Rollup merge of #118691 - chfogelman:improve-cstr-error, r=fmease | Matthias Krüger | -7/+29 |
| 2023-12-19 | Improve compiler error for c-strings in pre-2021 | Carter Hunt Fogelman | -7/+29 |
| 2023-12-18 | Use `.into_diagnostic()` less. | Nicholas Nethercote | -12/+10 |
| 2023-12-18 | Rename `Parser::span_diagnostic` as `Parser::dcx`. | Nicholas Nethercote | -10/+10 |
| 2023-12-18 | Rename `ParseSess::span_diagnostic` as `ParseSess::dcx`. | Nicholas Nethercote | -1/+1 |
| 2023-12-18 | Rename `Handler` as `DiagCtxt`. | Nicholas Nethercote | -3/+3 |
| 2023-12-15 | Change `msg: impl Into<String>` for bug diagnostics. | Nicholas Nethercote | -2/+2 |
| 2023-12-08 | Auto merge of #118527 - Nadrieril:never_patterns_parse, r=compiler-errors | bors | -21/+16 |
| 2023-12-05 | Rollup merge of #117922 - estebank:unclosed-generics, r=b-naber | Matthias Krüger | -9/+34 |
| 2023-12-03 | Detect attempts to expand a macro to a match arm again | Nadrieril | -21/+16 |
| 2023-12-03 | Auto merge of #118542 - chenyukang:yukang-fix-parser-ice-118531, r=cjgillot | bors | -12/+4 |
| 2023-12-02 | Fix parser ICE from attrs | yukang | -12/+4 |
| 2023-12-02 | Use `Session::diagnostic` in more places. | Nicholas Nethercote | -10/+9 |
| 2023-12-01 | Tweak unclosed generics errors | Esteban Küber | -9/+34 |
| 2023-11-29 | Change how `for (x in foo) {}` is handled | Esteban Küber | -37/+6 |
| 2023-11-29 | More accurate span for unnecessary parens suggestion | Esteban Küber | -24/+5 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -4/+4 |