rustdoc: remove unportable markdown lint and old parser#140709
Merged
bors merged 1 commit intorust-lang:masterfrom May 7, 2025
Merged
rustdoc: remove unportable markdown lint and old parser#140709bors merged 1 commit intorust-lang:masterfrom
bors merged 1 commit intorust-lang:masterfrom
Conversation
Collaborator
|
rustbot has assigned @GuillaumeGomez. Use |
Collaborator
|
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
| itertools = "0.12" | ||
| indexmap = "2" | ||
| minifier = { version = "0.3.5", default-features = false } | ||
| pulldown-cmark-old = { version = "0.9.6", package = "pulldown-cmark", default-features = false } |
GuillaumeGomez
approved these changes
May 6, 2025
Member
|
Thanks for this! Looks all good to me, r=me once CI pass. |
Contributor
Author
|
@bors r=GuillaumeGomez |
Collaborator
bors
added a commit
to rust-lang-ci/rust
that referenced
this pull request
May 7, 2025
Rollup of 9 pull requests Successful merges: - rust-lang#134273 (de-stabilize bench attribute) - rust-lang#139534 (Added support for `apxf` target feature) - rust-lang#140419 (Move `in_external_macro` to `SyntaxContext`) - rust-lang#140483 (Comment on `Rc` abort-guard strategy without naming unrelated fn) - rust-lang#140607 (support duplicate entries in the opaque_type_storage) - rust-lang#140656 (collect all Fuchsia bindings into the `fuchsia` module) - rust-lang#140668 (Implement `VecDeque::truncate_front()`) - rust-lang#140709 (rustdoc: remove unportable markdown lint and old parser) - rust-lang#140713 (Structurally resolve in `check_ref_cast` in new solver) r? `@ghost` `@rustbot` modify labels: rollup
rust-timer
added a commit
to rust-lang-ci/rust
that referenced
this pull request
May 7, 2025
Rollup merge of rust-lang#140709 - notriddle:rm-unportable-markdown, r=GuillaumeGomez rustdoc: remove unportable markdown lint and old parser Follow up rust-lang#127127
crepererum
added a commit
to crepererum/arrow-rs
that referenced
this pull request
May 8, 2025
Nightly CI fails with: ```text Documenting arrow-flight v55.0.0 (/__w/arrow-rs/arrow-rs/arrow-flight) error: lint `rustdoc::unportable_markdown` has been removed: old parser removed --> arrow-flight/src/sql/mod.rs:48:14 | 48 | #![allow(rustdoc::unportable_markdown)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D renamed-and-removed-lints` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(renamed_and_removed_lints)]` error: could not document `arrow-flight` ``` due to rust-lang/rust#140709 .
alamb
pushed a commit
to apache/arrow-rs
that referenced
this pull request
May 8, 2025
Nightly CI fails with: ```text Documenting arrow-flight v55.0.0 (/__w/arrow-rs/arrow-rs/arrow-flight) error: lint `rustdoc::unportable_markdown` has been removed: old parser removed --> arrow-flight/src/sql/mod.rs:48:14 | 48 | #![allow(rustdoc::unportable_markdown)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D renamed-and-removed-lints` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(renamed_and_removed_lints)]` error: could not document `arrow-flight` ``` due to rust-lang/rust#140709 .
github-actions bot
pushed a commit
to carolynzech/rust
that referenced
this pull request
May 16, 2025
Rollup of 9 pull requests Successful merges: - rust-lang#134273 (de-stabilize bench attribute) - rust-lang#139534 (Added support for `apxf` target feature) - rust-lang#140419 (Move `in_external_macro` to `SyntaxContext`) - rust-lang#140483 (Comment on `Rc` abort-guard strategy without naming unrelated fn) - rust-lang#140607 (support duplicate entries in the opaque_type_storage) - rust-lang#140656 (collect all Fuchsia bindings into the `fuchsia` module) - rust-lang#140668 (Implement `VecDeque::truncate_front()`) - rust-lang#140709 (rustdoc: remove unportable markdown lint and old parser) - rust-lang#140713 (Structurally resolve in `check_ref_cast` in new solver) r? `@ghost` `@rustbot` modify labels: rollup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow up #127127