| Age | Commit message (Expand) | Author | Lines |
| 2024-03-02 | Don't panic when waiting on poisoned queries | John Kåre Alsaker | -3/+2 |
| 2024-02-29 | Overhaul how stashed diagnostics work, again. | Nicholas Nethercote | -2/+1 |
| 2024-02-28 | Rename `DiagnosticBuilder` as `Diag`. | Nicholas Nethercote | -4/+4 |
| 2024-02-28 | Rename `Diagnostic` as `DiagInner`. | Nicholas Nethercote | -3/+3 |
| 2024-02-22 | Rollup merge of #121401 - eltociear:patch-25, r=nnethercote | Matthias Krüger | -1/+1 |
| 2024-02-22 | Adjust the `has_errors*` methods. | Nicholas Nethercote | -1/+1 |
| 2024-02-22 | Fix typo in serialized.rs | Ikko Eltociear Ashimine | -1/+1 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -2/+3 |
| 2024-02-14 | Use fewer delayed bugs. | Nicholas Nethercote | -4/+4 |
| 2024-02-14 | Remove `force_print_diagnostic`. | Nicholas Nethercote | -10/+10 |
| 2024-02-09 | Rollup merge of #120693 - nnethercote:invert-diagnostic-lints, r=davidtwco | Matthias Krüger | -2/+0 |
| 2024-02-06 | Invert diagnostic lints. | Nicholas Nethercote | -2/+0 |
| 2024-02-02 | Remove dead args from functions | Michael Goulet | -3/+2 |
| 2024-01-29 | Stop using `String` for error codes. | Nicholas Nethercote | -1/+2 |
| 2024-01-22 | Tweak error counting. | Nicholas Nethercote | -1/+1 |
| 2024-01-20 | Auto merge of #108359 - Zoxc:side-effects-tweak, r=cjgillot | bors | -6/+8 |
| 2024-01-20 | Avoid code generation for ThinVec<Diagnostic>'s destructor in the query system | John Kåre Alsaker | -6/+8 |
| 2024-01-19 | Auto merge of #120006 - cjgillot:no-hir-owner, r=wesleywiser | bors | -58/+2 |
| 2024-01-16 | Simplify BodyId hashing. | Camille GILLOT | -58/+2 |
| 2024-01-16 | Auto merge of #119977 - Mark-Simulacrum:defid-cache, r=cjgillot | bors | -2/+80 |
| 2024-01-15 | Cache local DefId-keyed queries without hashing | Mark Rousskov | -2/+80 |
| 2024-01-14 | Inline 2 functions that appear in dep-graph profiles. | Camille GILLOT | -0/+1 |
| 2024-01-10 | Add `DiagCtxt::delayed_bug`. | Nicholas Nethercote | -10/+7 |
| 2024-01-09 | Rollup merge of #119527 - klensy:ordering, r=compiler-errors | Guillaume Gomez | -7/+7 |
| 2024-01-08 | Don't check for recursion in generator witness fields | Michael Goulet | -3/+4 |
| 2024-01-08 | Value recovery can take the whole CycleError | Michael Goulet | -13/+16 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -1/+1 |
| 2024-01-06 | don't reexport atomic::ordering via rustc_data_structures, use std import | klensy | -7/+7 |
| 2024-01-03 | Rollup merge of #119086 - RossSmyth:query_panics, r=compiler-errors | León Orell Valerian Liehr | -11/+21 |
| 2024-01-03 | Add useful panic messages if queries fail to start | Ross Smyth | -11/+21 |
| 2023-12-26 | Auto merge of #119146 - nnethercote:rm-DiagCtxt-api-duplication, r=compiler-e... | bors | -7/+7 |
| 2023-12-24 | Auto merge of #119139 - michaelwoerister:cleanup-stable-source-file-id, r=cjg... | bors | -3/+3 |
| 2023-12-24 | Remove more `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -3/+3 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -4/+4 |
| 2023-12-23 | Give `DiagnosticBuilder` a default type. | Nicholas Nethercote | -4/+4 |
| 2023-12-19 | Unify SourceFile::name_hash and StableSourceFileId | Michael Woerister | -3/+3 |
| 2023-12-18 | Use `.into_diagnostic()` less. | Nicholas Nethercote | -4/+2 |
| 2023-12-18 | Rename many `DiagCtxt` and `EarlyDiagCtxt` locals. | Nicholas Nethercote | -2/+2 |
| 2023-12-18 | Rename many `DiagCtxt` arguments. | Nicholas Nethercote | -2/+2 |
| 2023-12-18 | Rename `Session::span_diagnostic` as `Session::dcx`. | Nicholas Nethercote | -2/+2 |
| 2023-12-18 | Rename `Handler` as `DiagCtxt`. | Nicholas Nethercote | -3/+3 |
| 2023-12-14 | Rollup merge of #118933 - nnethercote:cleanup-errors-even-more, r=compiler-er... | Jubilee | -2/+2 |
| 2023-12-15 | Split `Handler::emit_diagnostic` in two. | Nicholas Nethercote | -2/+2 |
| 2023-12-12 | clippy::complexity fixes | Matthias Krüger | -13/+1 |
| 2023-12-10 | remove redundant imports | surechen | -2/+0 |
| 2023-12-05 | Rollup merge of #118123 - RalfJung:internal-lib-features, r=compiler-errors | Michael Goulet | -1/+1 |
| 2023-12-02 | Use `Session::diagnostic` in more places. | Nicholas Nethercote | -1/+1 |
| 2023-12-02 | Rename `HandlerInner::delayed_span_bugs` as `HandlerInner::span_delayed_bugs`. | Nicholas Nethercote | -1/+1 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -2/+2 |
| 2023-11-29 | Auto merge of #118348 - Mark-Simulacrum:feature-code-size, r=compiler-errors | bors | -4/+4 |