-
-
Notifications
You must be signed in to change notification settings - Fork 282
chore(deps): update dependency rumdl to v0.1.15 #7109
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
Contributor
✅
|
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.

This PR contains the following updates:
0.1.13→0.1.15Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
rvben/rumdl (rumdl)
v0.1.15Compare Source
Added
relative-to-docsoption - New config option for validating absolutelink paths relative to a documentation root directory
Performance
2.5x faster on real-world repositories - Comprehensive performance audit and
optimization across the core pipeline, rule implementations, and infrastructure.
Validated against ripgrep, ruff, and rust repositories (1,832 files, 276K lines)
with zero regressions.
Key optimizations:
opt-level = "z") to speed (opt-level = 3)chars().nth()O(n) calls with O(1) byte indexing for ASCII checksLazyLockstatics (eliminated ~160K mutex cycles per 10K-line file)LineInfomemory 79% by boxing rare struct variants (3.4MB → 720KB for 10K-line files)Vec<char>allocation in horizontal rule detectionListBlockby value instead of cloningHashMapcloning inInlineConfigwith state-transition storagecontent.lines().collect()across 48 call sites in 27 rulesLintContext, share viactx.raw_lines()LineIndexInlineConfigparsing (parse once inLintContext)LineIndexLazyLock(eliminated 5+ redundantall_rules()calls)Changed
explaincommand completeness - Now uses the full rule registry instead ofa manually maintained list, ensuring all rules (including MD069-MD074) are included
v0.1.14Compare Source
Added
MD074: MkDocs nav validation - Validate that
mkdocs.ymlnavigation entriespoint to existing files (requires
flavor = "mkdocs")not-found = "warn"(default): Report nav entries pointing to non-existent filesomitted-files = "ignore"(default): Optionally report markdown files not in navabsolute-links = "ignore"(default): Optionally warn about absolute pathsdocs_dirsetting, and session cachingMD057: Absolute links configuration - New
absolute-linksconfig optionfor controlling how absolute link paths are handled
MkDocs flavor: Extension-aware support - Recognize Python-Markdown and
pymdown-extensions syntax to prevent false positives
{#custom-id}header attributes)Fixed
Tables in list items lose indentation (#383)
rumdl fmtnow preserves indentation for tables on list continuation linesand respects CommonMark code block boundaries
MD065: Fix idempotency for consecutive horizontal rules - Running
--fixtwice on consecutive
---rules no longer produces different outputMD032: Fix idempotency for ordered-non-1 items with code fences - Fix mode
no longer produces different output on repeated runs for this edge case
Changed
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
Note
Low Risk
Pin-only dependency version bump in Docker build args; risk is limited to potential behavior/performance changes in
rumdlaffecting Markdown linting output.Overview
Updates the bundled Markdown linter
rumdlfrom0.1.13to0.1.15across the main MegaLinter image, multiple flavor images, and the dedicatedlinters/markdown_rumdlDockerfile.Also bumps the pinned
PIP_RUMDL_VERSIONin the Markdown descriptor (markdown.megalinter-descriptor.yml) so generated builds/install snippets reference the new version.Written by Cursor Bugbot for commit 4ba723a. This will update automatically on new commits. Configure here.