-
Notifications
You must be signed in to change notification settings - Fork 13.5k
rustdoc: remove unportable markdown lint and old parser #140709
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Conversation
rustbot has assigned @GuillaumeGomez. Use |
These commits modify the If this was unintentional then you should revert the changes before this PR is merged. |
@@ -14,7 +14,6 @@ base64 = "0.21.7" | |||
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 } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Finally! \o/
Thanks for this! Looks all good to me, r=me once CI pass. |
@bors r=GuillaumeGomez |
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
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
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 .
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 .
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
Follow up #127127