| Age | Commit message (Expand) | Author | Lines |
| 2024-01-31 | Rollup merge of #120501 - GuillaumeGomez:glob-reexport-attr-merge-bugfix, r=n... | Nadrieril | -1/+19 |
| 2024-01-30 | rustdoc: Correctly handle attribute merge if this is a glob reexport | Guillaume Gomez | -1/+19 |
| 2024-01-29 | Rollup merge of #120428 - petrochenkov:somehir2, r=compiler-errors | Dylan DPC | -1/+1 |
| 2024-01-29 | Stop using `String` for error codes. | Nicholas Nethercote | -2/+3 |
| 2024-01-28 | hir: Use `InferArg` in `ArrayLen::Infer` | Vadim Petrochenkov | -1/+1 |
| 2024-01-19 | Pack the u128 in LitKind::Int | Josh Stone | -1/+1 |
| 2024-01-12 | Delegation implementation: step 1 | Bryanskiy | -1/+1 |
| 2024-01-10 | Auto merge of #119751 - nnethercote:error-api-fixes, r=oli-obk | bors | -2/+2 |
| 2024-01-10 | Rollup merge of #119769 - fmease:rustdoc-off-by-one-dyn-trait-def-gen-args, r... | Matthias Krüger | -26/+26 |
| 2024-01-10 | Rename consuming chaining methods on `DiagnosticBuilder`. | Nicholas Nethercote | -1/+1 |
| 2024-01-10 | Rename `struct_span_err!` as `struct_span_code_err!`. | Nicholas Nethercote | -1/+1 |
| 2024-01-09 | Don't arena-allocate extended generic args | León Orell Valerian Liehr | -6/+6 |
| 2024-01-09 | Offset args of trait object types when cleaning | León Orell Valerian Liehr | -10/+4 |
| 2024-01-09 | Rename rustc_middle path cleaning functions | León Orell Valerian Liehr | -10/+16 |
| 2024-01-08 | Make `DiagnosticBuilder::emit` consuming. | Nicholas Nethercote | -1/+1 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -1/+1 |
| 2023-12-20 | Give `VariantData::Struct` named fields, to clairfy `recovered`. | Alona Enraght-Moony | -2/+2 |
| 2023-12-15 | Rollup merge of #119004 - matthiaskrgr:conv, r=compiler-errors | Jubilee | -1/+1 |
| 2023-12-15 | NFC don't convert types to identical types | Matthias Krüger | -1/+1 |
| 2023-12-15 | Appease the tools: clippy, rustdoc | Michael Goulet | -16/+0 |
| 2023-12-15 | Rollup merge of #113091 - GuillaumeGomez:prevent-cfg-merge-reexport, r=rustdoc | Guillaume Gomez | -34/+42 |
| 2023-12-14 | Auto merge of #117749 - aliemjay:perf-canon-cache, r=lcnr | bors | -1/+1 |
| 2023-12-14 | rustdoc: avoid ParamEnv with infer vars | Ali MJ Al-Nasrawy | -1/+1 |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -2/+2 |
| 2023-12-05 | Remove `#[rustc_host]`, use internal desugaring | Deadbeef | -6/+7 |
| 2023-11-27 | Address unused tuple struct fields in rustdoc | Jake Goulding | -5/+2 |
| 2023-11-22 | Add documentation on `filter_doc_attr` | Guillaume Gomez | -0/+2 |
| 2023-11-22 | Don't merge cfg and doc(cfg) attributes for re-exports | Guillaume Gomez | -34/+40 |
| 2023-11-15 | Re-format code with new rustfmt | Mark Rousskov | -41/+49 |
| 2023-11-14 | finish `RegionKind` rename | lcnr | -5/+5 |
| 2023-11-13 | rename `ReLateBound` to `ReBound` | lcnr | -8/+4 |
| 2023-11-05 | rustdoc: properly elide cross-crate host effect args | León Orell Valerian Liehr | -1/+2 |
| 2023-10-30 | Rollup merge of #112463 - fmease:rustdoc-elide-x-crate-def-gen-args, r=Guilla... | Guillaume Gomez | -5/+7 |
| 2023-10-30 | rustdoc: elide cross-crate default generic arguments | León Orell Valerian Liehr | -5/+7 |
| 2023-10-29 | rustdoc: Use `ThinVec` in `GenericParamDefKind` | Noah Lev | -6/+6 |
| 2023-10-27 | Auto merge of #116471 - notriddle:notriddle/js-trait-alias, r=GuillaumeGomez | bors | -7/+32 |
| 2023-10-22 | rustdoc: wrap Type with Box instead of Generics | Michael Howell | -15/+15 |
| 2023-10-22 | rustdoc: use JS to inline target type impl docs into alias | Michael Howell | -7/+32 |
| 2023-10-20 | s/Generator/Coroutine/ | Oli Scherer | -2/+2 |
| 2023-10-13 | Add some FIXMEs for remaining issues that we need to fix before using more c... | Oli Scherer | -0/+1 |
| 2023-10-12 | hide `host` param from generic parameter list of `~const` bounds | Oli Scherer | -8/+15 |
| 2023-10-12 | Hide host effect params from docs | Oli Scherer | -1/+3 |
| 2023-10-04 | Rollup merge of #116388 - fmease:rustdoc-fix-n-clean-up-x-crate-higher-ranked... | Matthias Krüger | -58/+53 |
| 2023-10-03 | rustdoc: add support for cross-crate higher-ranked types | León Orell Valerian Liehr | -1/+16 |
| 2023-10-03 | rustdoc: fix & clean up handling of cross-crate higher-ranked lifetimes | León Orell Valerian Liehr | -57/+37 |
| 2023-09-30 | rustdoc: reduce the amount of `asyncness` query executions | León Orell Valerian Liehr | -1/+7 |
| 2023-09-26 | Don't store lazyness in DefKind | Michael Goulet | -3/+3 |
| 2023-09-25 | Auto merge of #116084 - fmease:rustdoc-fix-x-crate-async-fn, r=GuillaumeGomez | bors | -8/+13 |
| 2023-09-25 | rustdoc: correctly render ret ty of cross-crate async fns | León Orell Valerian Liehr | -8/+13 |
| 2023-09-23 | Remove GeneratorWitness and rename GeneratorWitnessMIR. | Camille GILLOT | -1/+0 |