| Age | Commit message (Expand) | Author | Lines |
| 2023-08-03 | Add `internal_features` lint | Nilstrieb | -0/+1 |
| 2023-08-02 | Resolve visibility paths as modules not as types. | Camille GILLOT | -1/+1 |
| 2023-08-02 | Replace old private-in-public diagnostic with type privacy lints | Bryanskiy | -6/+0 |
| 2023-08-02 | trivial style fix | yukang | -30/+27 |
| 2023-07-31 | Rollup merge of #113920 - bvanjoi:fix-81413, r=petrochenkov | Matthias Krüger | -23/+30 |
| 2023-07-30 | inline format!() args up to and including rustc_codegen_llvm | Matthias Krüger | -90/+75 |
| 2023-07-29 | Auto merge of #113099 - bvanjoi:fix-112713-2, r=petrochenkov | bors | -46/+175 |
| 2023-07-28 | Resolve generic const items | León Orell Valerian Liehr | -69/+109 |
| 2023-07-29 | fix(resolve): update the ambiguity glob binding as warning recursively | bohan | -46/+175 |
| 2023-07-29 | fix(resolve): report unresolved imports firstly | bohan | -23/+30 |
| 2023-07-28 | Introduce the `#[diagnostic]` attribute namespace | Georg Semmler | -3/+17 |
| 2023-07-25 | Auto merge of #113980 - bvanjoi:fix-113953, r=petrochenkov | bors | -5/+8 |
| 2023-07-25 | Auto merge of #113958 - lukas-code:doc-links, r=GuillaumeGomez,petrochenkov | bors | -2/+11 |
| 2023-07-25 | resolve: ensure compile failed when has dummy or ambiguous | bohan | -8/+8 |
| 2023-07-25 | fix(resolve): skip panic when resolution is dummy | bohan | -1/+4 |
| 2023-07-23 | fix clippy::useless_format | Matthias Krüger | -2/+2 |
| 2023-07-22 | Use features() over features_untracked() where possible | León Orell Valerian Liehr | -5/+2 |
| 2023-07-22 | fix doc links on `use` items | Lukas Markeffsky | -2/+11 |
| 2023-07-19 | Make it clearer that edition functions are >=, not == | Michael Goulet | -8/+8 |
| 2023-07-18 | Fix removal span calculation of unused_qualifications suggestion | 许杰友 Jieyou Xu (Joe) | -3/+3 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -1/+1 |
| 2023-07-14 | Rollup merge of #112729 - jieyouxu:unused-qualifications-suggestion, r=b-naber | Matthias Krüger | -1/+5 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -18/+40 |
| 2023-07-13 | Add machine-applicable suggestion for `unused_qualifications` lint | 许杰友 Jieyou Xu (Joe) | -1/+5 |
| 2023-07-10 | Auto merge of #112988 - spastorino:new-rpitit-24, r=compiler-errors | bors | -1/+0 |
| 2023-07-10 | Rollup merge of #113331 - chenyukang:yukang-fix-112590-false-positive, r=este... | Matthias Krüger | -23/+51 |
| 2023-07-08 | Replace RPITIT current impl with new strategy that lowers as a GAT | Santiago Pastorino | -1/+0 |
| 2023-07-07 | adjust smart_resolve_partial_mod_path_errors | yukang | -2/+1 |
| 2023-07-07 | smart_resolve_partial_mod_path_errors should not suggest parent | yukang | -3/+4 |
| 2023-07-07 | Add filter with next segment while lookup typo for path | yukang | -21/+49 |
| 2023-07-05 | resolve: Add comments explaining use of `Interned` | Vadim Petrochenkov | -0/+6 |
| 2023-07-05 | resolve: Use `Interned` for `Module` | Vadim Petrochenkov | -65/+59 |
| 2023-07-05 | resolve: Use `Interned` for `Import` | Vadim Petrochenkov | -71/+58 |
| 2023-07-05 | resolve: Use `Interned` for `NameBinding` | Vadim Petrochenkov | -124/+106 |
| 2023-07-04 | Auto merge of #112917 - chenyukang:yukang-fix-112590, r=estebank | bors | -5/+64 |
| 2023-07-02 | add testcase for 112590 | yukang | -17/+44 |
| 2023-07-01 | fix(resolve): skip assertion judgment when `NonModule` is dummy | bohan | -4/+5 |
| 2023-06-30 | Rollup merge of #113177 - estebank:hrlt-sugg, r=compiler-errors | Matthias Krüger | -3/+7 |
| 2023-06-30 | Use structured suggestion when telling user about `for<'a>` | Esteban Küber | -3/+7 |
| 2023-06-29 | resolve: Remove artificial import ambiguity errors | Vadim Petrochenkov | -37/+22 |
| 2023-06-27 | Rollup merge of #113084 - WaffleLapkin:less_map_or, r=Nilstrieb | Matthias Krüger | -4/+3 |
| 2023-06-27 | Simplify some conditions | Maybe Waffle | -4/+3 |
| 2023-06-26 | Rollup merge of #112979 - NotStirred:translatable_diag/resolve_imports, r=fee... | Matthias Krüger | -44/+130 |
| 2023-06-25 | Add translatable diagnostic for import resolution strings | Tom Martin | -44/+130 |
| 2023-06-24 | fix: add cfg diagnostic for unresolved import error | bohan | -1/+12 |
| 2023-06-22 | Tweak privacy errors to account for reachable items | Esteban Küber | -28/+100 |
| 2023-06-22 | suggest importing for partial mod path in name resolving | yukang | -2/+34 |
| 2023-06-21 | resolve: Minor cleanup to `fn resolve_path_with_ribs` | Vadim Petrochenkov | -51/+38 |
| 2023-06-20 | Revert "Rollup merge of #112758 - bvanjoi:clean-up-resolve, r=petrochenkov" | bohan | -40/+53 |
| 2023-06-19 | Rollup merge of #112768 - NotStirred:translatable_diag/resolve1, r=WaffleLapkin | Matthias Krüger | -24/+86 |