| Age | Commit message (Expand) | Author | Lines |
| 2025-06-17 | fix clippy | Jana Dönszelmann | -3/+3 |
| 2025-06-16 | rustdoc: `{Meta,Pointee,}Sized` in non-minicore | David Wood | -4/+16 |
| 2025-06-09 | rustdoc-json: Rearrange deck chairs in ABI testing | Jubilee Young | -24/+38 |
| 2025-05-28 | Stabilise `repr128` | beetrees | -3/+0 |
| 2025-05-22 | rustdoc JSON: Don't apply `#[repr]` privacy heuristics | León Orell Valerian Liehr | -37/+4 |
| 2025-05-21 | rustdoc-json: Remove false docs and add test for inline attribute | Alona Enraght-Moony | -0/+11 |
| 2025-05-07 | rustdoc-json: Remove newlines from attributes | Alona Enraght-Moony | -12/+12 |
| 2025-05-03 | Improve hir pretty-printing of attributes. | Nicholas Nethercote | -12/+12 |
| 2025-04-21 | Rollup merge of #140076 - aDotInTheVoid:jsondocline, r=GuillaumeGomez | Chris Denton | -1/+1 |
| 2025-04-20 | jsondocck: Require command is at start of line | Alona Enraght-Moony | -1/+1 |
| 2025-04-20 | rustdoc-json: Improve test for auto-trait impls | Alona Enraght-Moony | -2/+4 |
| 2025-04-18 | Add regression test for span 1-indexed check | Guillaume Gomez | -2/+6 |
| 2025-04-15 | rustdoc: Output target feature information | Will Glynn | -0/+132 |
| 2025-03-31 | rustdoc-json: Add test for #[automatically_derived] attribute | Alona Enraght-Moony | -0/+13 |
| 2025-03-22 | rustdoc: Use own logic to print `#[repr(..)]` attributes in JSON output. | Predrag Gruevski | -31/+47 |
| 2025-03-21 | tests/rustdoc-json: change assertions to use RFC 9535 jsonpath | Alona Enraght-Moony | -25/+25 |
| 2025-03-21 | tests/rustdoc-json: replace `$.paths[*][?` with `$.paths[?` | Alona Enraght-Moony | -6/+6 |
| 2025-03-21 | tests/rustdoc-json: replace `$.index[*][?` with `$.index[?` | Alona Enraght-Moony | -1155/+1155 |
| 2025-03-18 | Rollup merge of #138569 - aDotInTheVoid:reprdoc-json, r=GuillaumeGomez | Matthias Krüger | -0/+163 |
| 2025-03-16 | rustdoc-json: Don't also include `#[deprecated]` in `Item::attrs` | Alona Enraght-Moony | -8/+8 |
| 2025-03-16 | rustdoc-json: Add tests for `#[deprecated(...)]` | Alona Enraght-Moony | -0/+38 |
| 2025-03-16 | rustdoc-json: Add tests for `#[repr(...)]` | Alona Enraght-Moony | -0/+163 |
| 2025-03-15 | Add RTN support to rustdoc | Michael Goulet | -0/+18 |
| 2025-03-13 | Rollup merge of #138109 - Kohei316:feat/rust-doc-precise-capturing-arg, r=aDo... | Matthias Krüger | -3/+3 |
| 2025-03-10 | make precise capturing args in rustdoc Json typed | morine0122 | -3/+3 |
| 2025-03-10 | Fix pretty printing of parsed attrs in hir_pretty | Michael Goulet | -2/+2 |
| 2025-03-05 | rustdoc: Add attribute-related tests for rustdoc JSON. | Predrag Gruevski | -0/+58 |
| 2025-03-03 | Always allow rustdoc-json tests to contain long lines | Noratrieb | -72/+0 |
| 2025-02-24 | Fix rustdoc and clippy | Jana Dönszelmann | -2/+2 |
| 2025-02-04 | Add missing lang items in no_core tests in rustdoc | Michael Goulet | -1/+4 |
| 2025-01-22 | rustdoc-json: Rename `Path::name` to `path`, and give it path (again). | Alona Enraght-Moony | -15/+110 |
| 2025-01-14 | Rollup merge of #134880 - as1100k-forks:fix-rustdoc-json-path-name, r=aDotInT... | Matthias Krüger | -1/+1 |
| 2025-01-14 | Made `Path::name` only have item name rather than full name | Aditya Kumar | -1/+1 |
| 2025-01-10 | rustdoc-json: Include items in stripped modules in `Crate::paths`. | Alona Enraght-Moony | -0/+11 |
| 2024-12-17 | Remove `rustc::existing_doc_keyword` lint. | Nicholas Nethercote | -5/+5 |
| 2024-12-02 | Rollup merge of #133721 - aDotInTheVoid:rdj-dyn-link, r=GuillaumeGomez | Guillaume Gomez | -0/+15 |
| 2024-12-01 | rustdoc-json: Add test for `impl Trait for dyn Trait` | Alona Enraght-Moony | -0/+15 |
| 2024-12-01 | rustdoc-json: Include safety of `static`s | Alona Enraght-Moony | -0/+41 |
| 2024-12-01 | rustdoc-json: Add tests for `static`s | Alona Enraght-Moony | -0/+10 |
| 2024-10-22 | Rename Receiver -> LegacyReceiver | Adrian Taylor | -2/+2 |
| 2024-10-16 | rustdoc-JSON: Rename "object safe" to "dyn compatible" | León Orell Valerian Liehr | -19/+19 |
| 2024-10-11 | Remove unadorned | Michael Goulet | -1/+1 |
| 2024-10-10 | rustdoc-json: Add tests for unsafe/safe extern blocks (RFC 3484) | Alona Enraght-Moony | -0/+17 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -2/+5 |
| 2024-09-01 | rustdoc: normalise type/field names in rustdoc-json-types/jsondoclint | schvv31n | -245/+245 |
| 2024-08-31 | Rollup merge of #129123 - aDotInTheVoid:rustdoc-json-self, r=fmease | Matthias Krüger | -0/+58 |
| 2024-08-17 | Stabilize opaque type precise capturing | Michael Goulet | -2/+0 |
| 2024-08-15 | rustdoc-json: Add test for `Self` type | Alona Enraght-Moony | -0/+58 |
| 2024-08-09 | Rollup merge of #128836 - its-the-shrimp:add_test_for_107278, r=aDotInTheVoid | Matthias Krüger | -0/+10 |
| 2024-08-08 | rustdoc-json: added a test for #107278 | schvv31n | -0/+10 |