| Age | Commit message (Expand) | Author | Lines |
| 2024-10-19 | compiler: Remove outdated comment | Jubilee Young | -1/+0 |
| 2024-10-19 | compiler: Fully stabilize `result_ffi_guarantees` | Jubilee Young | -4/+0 |
| 2024-10-19 | Rollup merge of #116863 - workingjubilee:non-exhaustive-is-not-ffi-unsafe, r=... | Matthias Krüger | -20/+66 |
| 2024-10-19 | Get rid of const eval_* and try_eval_* helpers | Michael Goulet | -2/+2 |
| 2024-10-19 | Apply review comments + use `shallow_lint_levels_on` | blyxyas | -6/+16 |
| 2024-10-19 | Unify syntax (all to @eval_always) | blyxyas | -2/+2 |
| 2024-10-19 | Remove module passes filtering | blyxyas | -159/+65 |
| 2024-10-19 | Follow review comments (optimize the filtering) | blyxyas | -117/+173 |
| 2024-10-19 | Change lints_to_emit to lints_that_actually_run | blyxyas | -22/+26 |
| 2024-10-19 | Do not run lints that cannot emit | blyxyas | -31/+198 |
| 2024-10-18 | compiler: Embed consensus in `lint::types::improper_ctypes` | Jubilee Young | -28/+65 |
| 2024-10-18 | Allow `#[deny(..)]` inside `#[forbid(..)]` as a no-op with a warning | Noratrieb | -1/+4 |
| 2024-10-15 | update bootstrap configs | Josh Stone | -1/+1 |
| 2024-10-15 | Rollup merge of #131652 - compiler-errors:modifiers, r=Nadrieril,jieyouxu | Matthias Krüger | -2/+3 |
| 2024-10-14 | Move trait bound modifiers into hir::PolyTraitRef | Michael Goulet | -2/+3 |
| 2024-10-13 | Also use outermost const-anon for impl items in `non_local_defs` lint | Urgau | -3/+7 |
| 2024-10-11 | Rollup merge of #131565 - Urgau:non_local_def-rm-deprecate, r=compiler-errors | Trevor Gross | -5/+0 |
| 2024-10-11 | Rollup merge of #131546 - surechen:fix_129833, r=jieyouxu | Trevor Gross | -1/+9 |
| 2024-10-12 | Make unused_parens's suggestion considering expr's attributes | surechen | -1/+9 |
| 2024-10-11 | Remove deprecation note in the `non_local_definitions` warning | Urgau | -5/+0 |
| 2024-10-11 | Rollup merge of #131498 - Urgau:transparent-const-anons, r=lcnr | Matthias Krüger | -31/+59 |
| 2024-10-11 | Consider outermost const-anon in non_local_def lint | Urgau | -31/+59 |
| 2024-10-08 | Reserve guarded string literals (RFC 3593) | Peter Jaszkowiak | -0/+13 |
| 2024-10-07 | Auto merge of #131354 - matthiaskrgr:rollup-hprnng2, r=matthiaskrgr | bors | -3/+2 |
| 2024-10-07 | Auto merge of #131235 - codemountains:rename-nestedmetaitem-to-metaitemlnner,... | bors | -1/+1 |
| 2024-10-07 | Remove an unnecessary `&Lrc<_>` local variable. | Nicholas Nethercote | -3/+2 |
| 2024-10-06 | Don't emit null pointer lint for raw ref of null deref | Michael Goulet | -9/+17 |
| 2024-10-06 | Auto merge of #129670 - est31:cfg_attr_crate_type_name_error, r=Urgau | bors | -20/+5 |
| 2024-10-06 | Rename NestedMetaItem to MetaItemInner | codemountains | -1/+1 |
| 2024-10-05 | Auto merge of #129244 - cjgillot:opaque-hir, r=compiler-errors | bors | -8/+8 |
| 2024-10-05 | Make deprecated_cfg_attr_crate_type_name a hard error | est31 | -20/+5 |
| 2024-10-04 | rm `ItemKind::OpaqueTy` | Noah Lev | -8/+8 |
| 2024-10-04 | Rollup merge of #130518 - scottmcm:stabilize-controlflow-extra, r=dtolnay | Jubilee | -1/+0 |
| 2024-10-04 | Auto merge of #130157 - eduardosm:stabilize-const_float_classify, r=RalfJung | bors | -14/+10 |
| 2024-10-02 | Move in_trait into OpaqueTyOrigin | Michael Goulet | -4/+6 |
| 2024-10-02 | Use named fields for OpaqueTyOrigin | Michael Goulet | -5/+5 |
| 2024-09-30 | Rollup merge of #131035 - dingxiangfei2009:tweak-if-let-rescope-lint, r=jieyouxu | Matthias Krüger | -2/+28 |
| 2024-09-30 | apply suggestions | Ding Xiang Fei | -1/+2 |
| 2024-09-30 | preserve brackets around if-lets and skip while-lets | Ding Xiang Fei | -2/+27 |
| 2024-09-29 | cleanup: don't `.into()` identical types | Matthias Krüger | -1/+1 |
| 2024-09-28 | Rollup merge of #130924 - surechen:fix_130851, r=compiler-errors | Matthias Krüger | -3/+3 |
| 2024-09-27 | Rollup merge of #130826 - fmease:compiler-mv-obj-safe-dyn-compat, r=compiler-... | Matthias Krüger | -5/+5 |
| 2024-09-27 | Make clashing_extern_declarations considering generic args for ADT field | surechen | -3/+3 |
| 2024-09-26 | Fix the misleading diagnostic for let_underscore_drop on type without Drop im... | makai410 | -2/+2 |
| 2024-09-25 | Stabilize the `map`/`value` methods on `ControlFlow` | Scott McMurray | -1/+0 |
| 2024-09-25 | Revert "Avoid invalid NaN lint machine-applicable suggestion in const context" | Eduardo Sánchez Muñoz | -14/+10 |
| 2024-09-25 | Compiler: Rename "object safe" to "dyn compatible" | León Orell Valerian Liehr | -5/+5 |
| 2024-09-24 | Auto merge of #130768 - compiler-errors:rollup-8ncjy55, r=compiler-errors | bors | -19/+3 |
| 2024-09-23 | Rollup merge of #130758 - compiler-errors:ctype-recursion-limit, r=jieyouxu | Michael Goulet | -19/+3 |
| 2024-09-24 | Auto merge of #127117 - Urgau:non_local_def-syntactic, r=BoxyUwU | bors | -316/+41 |