| Age | Commit message (Expand) | Author | Lines |
| 2023-07-03 | Add a simple markdown parser for formatting `rustc --explain` | Trevor Gross | -0/+1 |
| 2023-06-14 | s/drain_filter/extract_if/ for Vec, Btree{Map,Set} and LinkedList | The 8472 | -2/+2 |
| 2023-06-06 | Respect `RUST_BACKTRACE` for delayed bugs | Nilstrieb | -4/+14 |
| 2023-06-01 | Remove adt_const_params usage from compiler | Michael Goulet | -2/+1 |
| 2023-05-29 | Use `Cow` in `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -7/+7 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -2/+2 |
| 2023-05-22 | Check opaques for mismatch during writeback | Michael Goulet | -0/+1 |
| 2023-05-21 | Rollup merge of #111745 - Badel2:emitter-add-overflow, r=compiler-errors | Matthias Krüger | -6/+5 |
| 2023-05-19 | Fix overflow in error emitter | Badel2 | -6/+5 |
| 2023-05-17 | Give a more useful location for where a span_bug was delayed | jyn | -1/+1 |
| 2023-05-17 | Emits E0599 when meeting MyTrait::missing_method | mu001999 | -0/+1 |
| 2023-05-13 | Auto merge of #107586 - SparrowLii:parallel-query, r=cjgillot | bors | -3/+3 |
| 2023-05-06 | correct literals for dyn thread safe | SparrowLii | -3/+3 |
| 2023-05-06 | introduce `DynSend` and `DynSync` auto trait | SparrowLii | -3/+3 |
| 2023-05-05 | Mark `ErrorGuaranteed` constructor as deprecated so people don't use it | Michael Goulet | -14/+21 |
| 2023-05-03 | Restrict `From<S>` for `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -8/+8 |
| 2023-04-19 | Auto merge of #110407 - Nilstrieb:fluent-macro, r=davidtwco | bors | -1/+1 |
| 2023-04-18 | Add `rustc_fluent_macro` to decouple fluent from `rustc_macros` | Nilstrieb | -1/+1 |
| 2023-04-18 | Store hashes in special types so they aren't accidentally encoded as numbers | Ben Kimock | -2/+2 |
| 2023-04-13 | Rollup merge of #110072 - joshtriplett:stabilize-is-terminal, r=Mark-Simulacrum | Matthias Krüger | -1/+0 |
| 2023-04-12 | Rollup merge of #110135 - compiler-errors:revert-108031, r=davidtwco | Matthias Krüger | -2/+0 |
| 2023-04-10 | Migrate most of `rustc_builtin_macros` to diagnostic impls | clubby789 | -1/+3 |
| 2023-04-10 | Stabilize IsTerminal | Josh Triplett | -1/+0 |
| 2023-04-10 | Revert "Don't recover lifetimes/labels containing emojis as character literals" | Michael Goulet | -2/+0 |
| 2023-03-21 | Avoid ICE of attempt to add with overflow in emitter | yukang | -1/+1 |
| 2023-03-11 | Simplify message paths | est31 | -1/+1 |
| 2023-03-04 | Properly colorize multi-part suggestions in the same line | Esteban Küber | -1/+1 |
| 2023-02-26 | Rollup merge of #108482 - Ezrashaw:force-error-docs, r=GuillaumeGomez | Matthias Krüger | -3/+1 |
| 2023-02-26 | refactor: statically guarantee that current error codes are documented | Ezra Shaw | -3/+1 |
| 2023-02-25 | Add ErrorGuaranteed to HIR TyKind::Err | Michael Goulet | -15/+1 |
| 2023-02-22 | errors: generate typed identifiers in each crate | David Wood | -2/+4 |
| 2023-02-18 | Rollup merge of #108031 - jieyouxu:issue-108019, r=estebank | Matthias Krüger | -0/+2 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -16/+13 |
| 2023-02-14 | Don't recover lifetimes/labels containing emojis as character literals | 许杰友 Jieyou Xu (Joe) | -0/+2 |
| 2023-02-09 | Introduce `-Zterminal-urls` to use OSC8 for error codes | Esteban Küber | -0/+8 |
| 2023-01-30 | session: diagnostic migration lint on more fns | David Wood | -9/+32 |
| 2023-01-30 | errors: add `emit_note`/`create_note` on `Handler` | David Wood | -0/+11 |
| 2023-01-20 | add debug assertion for suggestions with overlapping parts | Lukas Markeffsky | -0/+1 |
| 2023-01-11 | Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco | nils | -1/+16 |
| 2023-01-09 | Collect backtraces for delayed span-bugs too | Michael Goulet | -23/+15 |
| 2023-01-08 | Make translate_message return result and add tests | mejrs | -1/+11 |
| 2023-01-07 | Rollup merge of #104543 - JhonnyBillM:migrate-codegen-ssa-to-diagnostics-stru... | Matthias Krüger | -0/+14 |
| 2023-01-06 | Rollup merge of #106287 - Nilstrieb:its-bugging-me-how-we-dont-have-docs, r=j... | Matthias Krüger | -0/+2 |
| 2023-01-05 | Improve fluent error messages | mejrs | -0/+5 |
| 2023-01-02 | Auto merge of #84762 - cjgillot:resolve-span-opt, r=petrochenkov | bors | -50/+56 |
| 2022-12-31 | Only deduplicate stack traces for good path bugs | Michael Goulet | -12/+18 |
| 2022-12-30 | Add some docs to `bug`, `span_bug` and `delay_span_bug` | Nilstrieb | -0/+2 |
| 2022-12-27 | ADD - create and emit Bug support for Diagnostics | Jhonny Bill Mena | -0/+14 |
| 2022-12-25 | Ignore span references from diagnostics. | Camille GILLOT | -47/+51 |
| 2022-12-25 | Use absolute spans when trying to steal an AST diagnostic. | Camille GILLOT | -3/+5 |