| Age | Commit message (Expand) | Author | Lines |
| 2025-07-17 | parse `const trait Trait` | Deadbeef | -1/+1 |
| 2025-07-09 | Port `#[rustc_coherence_is_core]` to the new attribute system | Pavel Grigorenko | -2/+3 |
| 2025-07-07 | Add `ty_span` query | Oli Scherer | -2/+10 |
| 2025-06-23 | fix 142891 | Jana Dönszelmann | -1/+9 |
| 2025-06-20 | Rollup merge of #142687 - cjgillot:less-hir_crate, r=oli-obk | Trevor Gross | -11/+15 |
| 2025-06-18 | Reduce uses of `hir_crate`. | Camille GILLOT | -11/+15 |
| 2025-06-13 | collect delayed lints in hir_crate_items | Jana Dönszelmann | -0/+25 |
| 2025-06-12 | introduce new lint infra | Jana Dönszelmann | -3/+13 |
| 2025-06-05 | wfcheck closures | Oli Scherer | -0/+9 |
| 2025-05-30 | Reorder fields in `hir::ItemKind` variants. | Nicholas Nethercote | -1/+1 |
| 2025-05-27 | Rollup merge of #141551 - compiler-errors:hir-lints, r=BoxyUwU | Trevor Gross | -1/+1 |
| 2025-05-25 | hir_body_const_context should take LocalDefId | Michael Goulet | -1/+1 |
| 2025-05-23 | Properly analyze captures from unsafe binders | Michael Goulet | -0/+3 |
| 2025-04-17 | do not emit `OpaqueCast` projections with `-Znext-solver` | lcnr | -0/+2 |
| 2025-04-14 | Documentation fixes. | Nicholas Nethercote | -1/+5 |
| 2025-04-14 | Remove `rustc_middle::hir::Map`. | Nicholas Nethercote | -15/+0 |
| 2025-04-11 | Auto merge of #139011 - Zoxc:no-rayon-iters, r=oli-obk | bors | -6/+6 |
| 2025-04-10 | Remove the use of Rayon iterators | John Kåre Alsaker | -6/+6 |
| 2025-04-10 | Rename some `name` variables as `ident`. | Nicholas Nethercote | -4/+4 |
| 2025-04-02 | Rollup merge of #139232 - nnethercote:remove-Map-5, r=Zalathar | Takayuki Maeda | -29/+26 |
| 2025-04-02 | Remove a `hir_*` helper that was just forwarding to a query | Oli Scherer | -4/+0 |
| 2025-04-02 | Move methods from `Map` to `TyCtxt`, part 5. | Nicholas Nethercote | -29/+26 |
| 2025-04-01 | Decouple trait impls of different traits wrt incremental | Oli Scherer | -1/+3 |
| 2025-03-26 | doc(hir::Place): clarify that places aren't always place expressions | Maja Kądziołka | -2/+8 |
| 2025-03-26 | Ensure define_opaque is accounted for in HIR hash | Michael Goulet | -1/+6 |
| 2025-03-22 | Rollup merge of #138750 - oli-obk:decouple-hir-queries, r=fee1-dead | Matthias Krüger | -6/+5 |
| 2025-03-20 | Make `crate_hash` not iterate over `hir_crate` owners anymore | Oli Scherer | -6/+5 |
| 2025-03-19 | Use `Option<Ident>` for lowered param names. | Nicholas Nethercote | -4/+4 |
| 2025-03-18 | Move `hir::Item::ident` into `hir::ItemKind`. | Nicholas Nethercote | -17/+19 |
| 2025-03-15 | Rollup merge of #138482 - nnethercote:fix-hir-printing, r=compiler-errors | León Orell Valerian Liehr | -1/+2 |
| 2025-03-14 | Handle `_` properly in a couple of places. | Nicholas Nethercote | -1/+2 |
| 2025-03-12 | Move methods from `Map` to `TyCtxt`, part 4. | Nicholas Nethercote | -72/+42 |
| 2025-03-12 | Rename `hir_attrs` query as `hir_attr_map`. | Nicholas Nethercote | -2/+2 |
| 2025-03-12 | Adjust `Map`'s `to_string` functionality. | Nicholas Nethercote | -113/+117 |
| 2025-03-07 | Move `visit_id` calls. | Nicholas Nethercote | -1/+1 |
| 2025-02-23 | Rollup merge of #137334 - compiler-errors:edition-2024-fresh-2, r=saethlin,tr... | Jacob Pratt | -17/+14 |
| 2025-02-22 | Greatly simplify lifetime captures in edition 2024 | Michael Goulet | -17/+14 |
| 2025-02-22 | Make a fake body to store typeck results for global_asm | Michael Goulet | -1/+2 |
| 2025-02-22 | Make asm a named field | Michael Goulet | -1/+1 |
| 2025-02-21 | Move methods from Map to TyCtxt, part 3. | Nicholas Nethercote | -35/+37 |
| 2025-02-21 | Store `TyCtxt` instead of `Map` in some iterators. | Nicholas Nethercote | -19/+19 |
| 2025-02-18 | Move methods from `Map` to `TyCtxt`, part 2. | Nicholas Nethercote | -88/+85 |
| 2025-02-17 | Remove `TyCtxt::hir_krate`. | Nicholas Nethercote | -7/+1 |
| 2025-02-17 | Overhaul the `intravisit::Map` trait. | Nicholas Nethercote | -20/+22 |
| 2025-02-17 | Move some `Map` methods onto `TyCtxt`. | Nicholas Nethercote | -48/+68 |
| 2025-02-17 | Remove unused `Map::hir_node_by_def_id` method. | Nicholas Nethercote | -4/+0 |
| 2025-02-17 | Rename `rustc_middle/src/hir/map/mod.rs` as `map.rs`. | Nicholas Nethercote | -0/+0 |
| 2025-02-11 | Simplify intra-crate qualifiers. | Nicholas Nethercote | -2/+1 |
| 2025-02-03 | Use a different hir type for patterns in pattern types than we use in match p... | Oli Scherer | -0/+2 |
| 2025-01-22 | Auto merge of #134478 - compiler-errors:attr-span, r=oli-obk | bors | -1/+4 |