| Age | Commit message (Expand) | Author | Lines |
| 2021-07-20 | Auto merge of #87244 - jackh726:issue-71883, r=estebank | bors | -7/+150 |
| 2021-07-20 | Auto merge of #87224 - RalfJung:miri-ptr-oob, r=oli-obk | bors | -10/+25 |
| 2021-07-20 | Auto merge of #87141 - spastorino:remove_impl_trait_in_bindings, r=oli-obk | bors | -1637/+475 |
| 2021-07-19 | Better errors when we don't have implicit statics in trait objects | jackh726 | -7/+102 |
| 2021-07-20 | Auto merge of #84959 - camsteffen:lint-suggest-group, r=estebank | bors | -2/+12 |
| 2021-07-19 | Auto merge of #87284 - Aaron1011:remove-paren-special, r=petrochenkov | bors | -0/+19 |
| 2021-07-19 | Remove special case for `ExprKind::Paren` in `MutVisitor` | Aaron Hill | -0/+19 |
| 2021-07-19 | Better diagnostics when mismatched types due to implict static lifetime | jackh726 | -8/+56 |
| 2021-07-19 | Auto merge of #87153 - michaelwoerister:debuginfo-names-dyn-trait-projection-... | bors | -37/+41 |
| 2021-07-19 | Auto merge of #87225 - estebank:cleanup, r=oli-obk | bors | -370/+1422 |
| 2021-07-19 | Auto merge of #87271 - flip1995:clippyup, r=Manishearth | bors | -298/+468 |
| 2021-07-19 | Various diagnostics clean ups/tweaks | Esteban Küber | -370/+1422 |
| 2021-07-19 | [debuginfo] Adapt CDB tests after changes to whitespace usage in debuginfo ty... | Michael Woerister | -12/+12 |
| 2021-07-19 | Improve impl trait disallowed context error text | Santiago Pastorino | -99/+99 |
| 2021-07-19 | Auto merge of #86970 - inquisitivecrystal:force-warn, r=davidtwco | bors | -1/+73 |
| 2021-07-19 | Merge commit '4c41a222ca5d1325fb4b6709395bd06e766cc042' into clippyup | flip1995 | -298/+468 |
| 2021-07-19 | Rollup merge of #87256 - Aaron1011:hir-wf-assoc-default, r=oli-obk | Guillaume Gomez | -6/+6 |
| 2021-07-19 | Rollup merge of #87251 - GuillaumeGomez:item-info-width, r=notriddle | Guillaume Gomez | -0/+13 |
| 2021-07-19 | Rollup merge of #87210 - notriddle:notriddle/rustdoc-sidebar-headers, r=Guill... | Guillaume Gomez | -41/+45 |
| 2021-07-19 | Rollup merge of #86230 - GuillaumeGomez:nocapture, r=camelid | Guillaume Gomez | -1/+86 |
| 2021-07-19 | Auto merge of #87146 - Aaron1011:better-macro-lint, r=petrochenkov | bors | -15/+107 |
| 2021-07-19 | Auto merge of #86848 - notriddle:notriddle/drop-dyn, r=varkor | bors | -4/+60 |
| 2021-07-18 | Auto merge of #86950 - tmiasko:personality, r=nagisa | bors | -0/+24 |
| 2021-07-18 | Extend HIR-based WF checking to associated type defaults | Aaron Hill | -6/+6 |
| 2021-07-18 | fix(clippy): add missing allow(dyn_drop) | Michael Howell | -1/+1 |
| 2021-07-18 | Add `#![allow(dyn_drop)]` to test cases with `dyn Drop` in them | Michael Howell | -3/+5 |
| 2021-07-18 | feat(rustc_lint): add `dyn_drop` | Michael Howell | -0/+54 |
| 2021-07-18 | Remove impl_trait_in_bindings feature flag | Santiago Pastorino | -695/+368 |
| 2021-07-18 | Remove `sub_types_or_anon` | Santiago Pastorino | -83/+0 |
| 2021-07-18 | Remove impl_trait_in_bindings handling on inference error reporting | Santiago Pastorino | -115/+0 |
| 2021-07-18 | Remove impl trait bindings handling on const AST lowering | Santiago Pastorino | -227/+103 |
| 2021-07-18 | update Miri | Ralf Jung | -9/+12 |
| 2021-07-18 | Add test to check width of item-info | Guillaume Gomez | -0/+10 |
| 2021-07-18 | Fix item info display | Guillaume Gomez | -0/+3 |
| 2021-07-18 | Add invalid rust code for test | Guillaume Gomez | -0/+36 |
| 2021-07-18 | Don't capture child process output at all when --no-capture is used | Guillaume Gomez | -4/+10 |
| 2021-07-18 | Add doc for --nocapture | Guillaume Gomez | -0/+7 |
| 2021-07-18 | Add test for rustdoc --nocapture option | Guillaume Gomez | -0/+18 |
| 2021-07-18 | Add --nocapture option to rustdoc | Guillaume Gomez | -0/+18 |
| 2021-07-18 | miri: better ptr-out-of-bounds errors | Ralf Jung | -10/+25 |
| 2021-07-18 | Auto merge of #87242 - JohnTitor:rollup-t9rmwpo, r=JohnTitor | bors | -21/+176 |
| 2021-07-17 | Add tests for command line lint control | inquisitivecrystal | -0/+72 |
| 2021-07-17 | Make `--force-warns` a normal lint level option | inquisitivecrystal | -1/+1 |
| 2021-07-18 | Auto merge of #87071 - inquisitivecrystal:inclusive-range, r=estebank | bors | -0/+20 |
| 2021-07-18 | Rollup merge of #87092 - ricobbe:fix-raw-dylib-multiple-definitions, r=petroc... | Yuki Okushi | -0/+36 |
| 2021-07-18 | Rollup merge of #86889 - jyn514:crate-cleanup, r=camelid | Yuki Okushi | -21/+14 |
| 2021-07-18 | Rollup merge of #86843 - FabianWolff:issue-86820, r=lcnr | Yuki Okushi | -0/+40 |
| 2021-07-18 | Rollup merge of #86814 - Aaron1011:inner-doc-recover, r=estebank | Yuki Okushi | -0/+22 |
| 2021-07-18 | Rollup merge of #86763 - JohnTitor:test-63355, r=oli-obk | Yuki Okushi | -0/+64 |
| 2021-07-17 | Add test for `#[allow]` for warnings on attribute macro | Aaron Hill | -0/+69 |