| Age | Commit message (Expand) | Author | Lines |
| 2022-08-22 | Replace #[error(..)] etc. to #[diag(..)] | finalchild | -23/+23 |
| 2022-08-22 | Migrate forbidden_default and *_without_body | finalchild | -76/+152 |
| 2022-08-22 | Support #[fatal(..)] | finalchild | -2/+2 |
| 2022-08-22 | Migrate fn_param_forbidden_self and rename others to have prefix fn_param_ | finalchild | -23/+25 |
| 2022-08-22 | Rename c_var_args_without_named_arg to c_var_args_is_sole_param | finalchild | -3/+3 |
| 2022-08-22 | Migrate doc_comment_on_fn_param, forbidden_attr_on_fn_param | finalchild | -12/+17 |
| 2022-08-22 | Migrate forbidden_lifetime_bound, forbidden_non_lifetime_param, too_many_para... | finalchild | -26/+42 |
| 2022-08-22 | Migrate trait_fn_const | finalchild | -0/+8 |
| 2022-08-22 | Migrate trait_fn_async | finalchild | -10/+12 |
| 2022-08-22 | Tidy | finalchild | -1/+1 |
| 2022-08-22 | Migrate deprecated_where_clause_location, forbidden_assoc_constraint, keyword... | finalchild | -24/+57 |
| 2022-08-22 | Migrate forbidden_let | finalchild | -18/+38 |
| 2022-08-17 | Reenable early feature-gates as future-compat warnings | Christopher Durham | -23/+35 |
| 2022-08-12 | Adjust cfgs | Mark Rousskov | -1/+0 |
| 2022-08-11 | Rollup merge of #100392 - nnethercote:simplify-visitors, r=cjgillot | Matthias Krüger | -22/+8 |
| 2022-08-11 | Simplify `rustc_ast::visit::Visitor::visit_poly_trait_ref`. | Nicholas Nethercote | -4/+4 |
| 2022-08-11 | Simplify `rustc_ast::visit::Visitor::visit_enum_def`. | Nicholas Nethercote | -19/+5 |
| 2022-08-10 | Use &mut Diagnostic instead of &mut DiagnosticBuilder unless needed | Michael Goulet | -5/+3 |
| 2022-08-09 | Rollup merge of #96478 - WaffleLapkin:rustc_default_body_unstable, r=Aaron1011 | Dylan DPC | -0/+1 |
| 2022-08-03 | Provide suggestion on missing `let` in binding statement | Esteban Küber | -3/+27 |
| 2022-07-29 | Remove `visit_name` from the AST visitor. | Nicholas Nethercote | -2/+1 |
| 2022-07-26 | Implement `#[rustc_default_body_unstable]` | Maybe Waffle | -0/+1 |
| 2022-07-23 | Allow `~const` on super traits | Deadbeef | -1/+1 |
| 2022-07-19 | Auto merge of #98180 - notriddle:notriddle/rustdoc-fn, r=petrochenkov,Guillau... | bors | -2/+2 |
| 2022-07-19 | Rollup merge of #99401 - TaKO8Ki:avoid-symbol-to-&str-conversions, r=nnethercote | Matthias Krüger | -2/+2 |
| 2022-07-18 | avoid `Symbol` to `&str` conversions | Takayuki Maeda | -2/+2 |
| 2022-07-18 | Rollup merge of #99360 - compiler-errors:issue-99331, r=fee1-dead | Yuki Okushi | -4/+6 |
| 2022-07-17 | rustdoc: extend `#[doc(tuple_variadic)]` to fn pointers | Michael Howell | -2/+2 |
| 2022-07-16 | Do not ICE when we have -Zunpretty=expand with invalid ABI | Michael Goulet | -4/+6 |
| 2022-07-16 | Stabilize `let_chains` | Caio | -27/+16 |
| 2022-07-12 | Parse closure binders | Maybe Waffle | -0/+9 |
| 2022-07-06 | Suggest using block for `extern "abi" fn` with no body | Nixon Enraght-Moony | -11/+54 |
| 2022-07-02 | ast: Add span to `Extern` | Nixon Enraght-Moony | -4/+5 |
| 2022-06-16 | Auto merge of #97842 - notriddle:notriddle/tuple-docs, r=jsha,GuillaumeGomez | bors | -0/+5 |
| 2022-06-14 | Remove `rustc_deprecated` diagnostics | Jacob Pratt | -2/+1 |
| 2022-06-13 | remove unnecessary `to_string` and `String::new` | Takayuki Maeda | -9/+9 |
| 2022-06-11 | Fix incorrectly spelled "variadic" | Michael Howell | -2/+2 |
| 2022-06-08 | rustdoc: show tuple impls as `impl Trait for (T, ...)` | Michael Howell | -0/+5 |
| 2022-06-07 | Auto merge of #97512 - scottmcm:add-coldcc, r=nagisa,lcnr | bors | -0/+8 |
| 2022-06-04 | Support the `#[expect]` attribute on fn parameters (RFC-2383) | xFrednet | -2/+10 |
| 2022-05-30 | Add support for emitting functions with `coldcc` in LLVM | Scott McMurray | -0/+8 |
| 2022-05-26 | clippy::complexity fixes | Matthias Krüger | -5/+4 |
| 2022-05-21 | Remove feature: `crate` visibility modifier | Jacob Pratt | -13/+0 |
| 2022-05-20 | Introduce LifetimeCtxt. | Camille GILLOT | -2/+2 |
| 2022-05-15 | rustc: Stricter checking for #[link] attributes | Vadim Petrochenkov | -31/+0 |
| 2022-04-30 | Feature-gate `do yeet` inside `cfg`s too | Scott McMurray | -8/+1 |
| 2022-04-30 | Add `do yeet` expressions to allow experimentation in nightly | Scott McMurray | -0/+8 |
| 2022-04-21 | rename to `BoundKind` and add comments | SparrowLii | -7/+7 |
| 2022-04-20 | Add `BoundCtxt` in `visit_param_bounds` to check questions in bounds | SparrowLii | -37/+36 |
| 2022-04-17 | Auto merge of #95779 - cjgillot:ast-lifetimes-undeclared, r=petrochenkov | bors | -16/+24 |