build(deps): update dependency ubi:rvben/rumdl to v0.1.15#16
Merged
renovate[bot] merged 1 commit intomainfrom Feb 15, 2026
Merged
build(deps): update dependency ubi:rvben/rumdl to v0.1.15#16renovate[bot] merged 1 commit intomainfrom
renovate[bot] merged 1 commit intomainfrom
Conversation
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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.
This PR contains the following updates:
v0.1.9→v0.1.15v0.1.21(+5)Release Notes
rvben/rumdl (ubi:rvben/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
Downloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
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
Downloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
v0.1.13Compare Source
Added
LSP: Code block language completion - Autocomplete fenced code block languages
```and press Ctrl+Space for language suggestionsMD041: Opt-in auto-fix - Add missing first-line heading with
--fixfix = truein MD041 configMD040: GitHub Linguist integration - Normalize code block languages
py→python)Code Block Tools: Additional built-in tools
Code Block Tools: Configurable missing tool handling
on-missing-language-definition: What to do when language has no tools (skip,warn,fail)on-missing-tool-binary: What to do when tool binary not found (skip,warn,fail)MkDocs: PyMdown Blocks support - Recognize PyMdown extension syntax
/// note,/// warning,/// detailsand other block typesnpm: CLI distribution - Install via npm/npx
npx rumdl check .- Run without global installFixed
Code Block Tools: Embedded markdown linting is now opt-in (#380)
[code-block-tools.languages.md]configurationMD040: Skip disabled lines when computing preferred labels
Schema: Use standard integer type for timeout field (#374)
Downloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
v0.1.12Compare Source
Added
Code Block Tools [preview] - Run external linters and formatters on fenced code blocks (#331)
rumdl check: Run configured linters (ruff, shellcheck, eslint, etc.) on code blocksrumdl check --fix: Run configured formatters (ruff, prettier, shfmt, etc.) to auto-format code blockspy→python,bash→shell)fail,warn,skip)MD018: Per-rule magiclink configuration - Control whether
magiclinksyntax is recognized per rulemagiclink = trueto MD018 config to skip email-like syntaxMD033: Auto-fix for
<a>and<img>tags - Convert simple HTML links and images to Markdown<a href="url">text</a>→[text](url)<img src="url" alt="text">→fix = truein MD033 config (disabled by default)MkDocs: Support for markdown-enabled HTML blocks - Properly handle
<div markdown>grid cards and similar patternsskip_mkdocs_html_markdown()filter to filtered_lines APIFixed
MD013: Prevent infinite loop in MkDocs admonition reflow - Fixed edge case causing reflow to hang on certain admonition content
Config: Remove deprecated MD002 from example -
rumdl.toml.exampleno longer includes deprecated rulesChanged
rumdl.toml.examplenow uses more readable inline tables for code-block-toolsDownloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
v0.1.11Compare Source
Added
Fixed
MD044: Check proper names in link text, image alt text, and WikiLinks (#369)
[link text](url),, and[[WikiLinks]]Schema: Remove non-standard 'uint' format (#368)
flavor = "obsidian"integerwithminimum: 0instead of non-standarduintformatDownloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
v0.1.10Compare Source
Added
Obsidian flavor support - New markdown flavor for Obsidian-specific syntax
#my-tag) - Not flagged as missing heading space (MD018)> [!NOTE]) - Recognized as valid blockquotes==text==) - Not flagged as spacing issues%%comment%%) - Content inside is skipped by all rules- [/],- [-],- [>]) - Recognized as valid task itemsfield:: value) - Not flagged as consecutive spaces<% code %>) - Recognized as template syntax^block-id) - Not flaggedWASM: Obsidian flavor support - Use
flavor: 'obsidian'in Linter configWASM: Rule-specific configuration - Pass rule configs to Linter constructor
new Linter({ 'MD013': { 'line-length': 120 } })Fixed
[](){#id}are now skipped when checking for first-line headingDownloads
Installation
Using uv (Recommended)
Using pip
Using pipx
Direct Download
Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.
Configuration
📅 Schedule: Branch creation - "after 8:00pm on Saturday,before 11:59pm on Sunday" in timezone Europe/Stockholm, 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.