Skip to content

build(deps): update dependency ubi:rvben/rumdl to v0.1.0#9

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/ubi-rvben-rumdl-0.x
Feb 1, 2026
Merged

build(deps): update dependency ubi:rvben/rumdl to v0.1.0#9
renovate[bot] merged 1 commit intomainfrom
renovate/ubi-rvben-rumdl-0.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

This PR contains the following updates:

Package Update Change Pending OpenSSF
ubi:rvben/rumdl minor v0.0.221v0.1.0 v0.1.9 (+8) OpenSSF Scorecard

Release Notes

rvben/rumdl (ubi:rvben/rumdl)

v0.1.0

Compare Source

🎉 First Stable Release

rumdl reaches production-ready status after validation against 99,291 markdown files
across 51 popular repositories (kubernetes, react, vscode, rust-lang, tensorflow, and more)
with zero false positives detected.

Added
  • CLI: fmt --check flag for CI usage

    • Returns non-zero exit code if files would be modified
    • Enables dry-run formatting checks in CI pipelines
  • Fuzz testing infrastructure

    • Fix idempotency fuzzer verifies fixes don't oscillate
    • Run with make fuzz (requires nightly Rust)
Fixed
  • MD032: Single-pass idempotency for list blank lines

    • Fixes edge case where multiple fix passes could produce different results
  • MD050: Correct byte range for fix replacement

    • Fixes auto-fix for strong emphasis style in certain edge cases
Changed
  • README: Added "Used By" section with notable projects using rumdl
  • README: Updated SchemaStore section to reflect current status

Downloads

File Platform Checksum
rumdl-v0.1.0-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.1.0-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.1.0-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.1.0-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.1.0-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.1.0-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.1.0-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)
uv tool install rumdl
Using pip
pip install rumdl
Using pipx
pipx install rumdl
Direct Download

Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.

v0.0.224

Compare Source

Added
  • GitHub Action: fail-on-error and output-file inputs (#​324, #​325)

    • fail-on-error: Control whether the workflow fails on violations (default: true)
    • output-file: Write lint results to a file for use in subsequent steps
  • LSP: source.fixAll.rumdl code action for fix-on-save

    • Enables VS Code's "Fix All on Save" feature for rumdl
    • Configure with editor.codeActionsOnSave: { "source.fixAll.rumdl": "explicit" }

Downloads

File Platform Checksum
rumdl-v0.0.224-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.0.224-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.0.224-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.0.224-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.0.224-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.0.224-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.0.224-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)
uv tool install rumdl
Using pip
pip install rumdl
Using pipx
pipx install rumdl
Direct Download

Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.

v0.0.223

Compare Source

Added
  • MD060: column-align option for table cell text alignment (#​317)

    • Options: left, center, right to force alignment for all columns
    • Complements existing table formatting rules
  • Documentation site (rumdl.dev)

    • Rule documentation with examples and configuration guides
Fixed
  • Embedded markdown respects per-file-ignores and inline config

    • Both rumdl check and rumdl fmt now honor <!-- rumdl-disable --> comments
    • Per-file-ignores configuration applies to embedded markdown blocks
  • Fix mode re-lint uses filtered rules (#​319)

    • After applying fixes, re-linting respects per-file-ignores and inline config
  • MD030: Auto-fix applies custom spacing config (#​318)

    • Custom ul_single, ol_single, etc. values now applied during fix
Changed
  • Documentation improvements

Downloads

File Platform Checksum
rumdl-v0.0.223-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.0.223-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.0.223-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.0.223-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.0.223-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.0.223-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.0.223-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)
uv tool install rumdl
Using pip
pip install rumdl
Using pipx
pipx install rumdl
Direct Download

Download the appropriate binary for your platform from the table above, extract it, and add it to your PATH.

v0.0.222

Compare Source

Fixed
  • MD018: Comprehensive false positive fixes (#​314)

    • Skip content inside HTML comments (e.g., Jupyter cell markers #%%)
    • Skip indented patterns to match markdownlint behavior
    • Skip YAML comments inside frontmatter
    • Flag all malformed headings at line start
  • Tables inside list items (#​314)

    • Tables embedded in list items are now detected, linted, and formatted correctly
    • Validate delimiter indentation for list-table detection
  • MD009: Correct 1-indexed column in ASCII path

    • Column numbers in diagnostics now match editor positions
  • Schema: Include all flavor aliases (#​312)

    • Added gfm, github, commonmark, qmd, rmd, rmarkdown to schema
    • JSON schema now matches documentation
  • CLI: Prevent duplicate config and use canonical rule list

    • Fixes edge case where config could be loaded multiple times
Performance
  • Optimize code detection and cache hash computation

    • Faster detection of code blocks and spans
  • Cache per-file globsets

    • Significant speedup for rules using file-specific patterns

Downloads

File Platform Checksum
rumdl-v0.0.222-x86_64-unknown-linux-gnu.tar.gz Linux x86_64 checksum
rumdl-v0.0.222-x86_64-unknown-linux-musl.tar.gz Linux x86_64 (musl) checksum
rumdl-v0.0.222-aarch64-unknown-linux-gnu.tar.gz Linux ARM64 checksum
rumdl-v0.0.222-aarch64-unknown-linux-musl.tar.gz Linux ARM64 (musl) checksum
rumdl-v0.0.222-x86_64-apple-darwin.tar.gz macOS x86_64 checksum
rumdl-v0.0.222-aarch64-apple-darwin.tar.gz macOS ARM64 (Apple Silicon) checksum
rumdl-v0.0.222-x86_64-pc-windows-msvc.zip Windows x86_64 checksum

Installation

Using uv (Recommended)
uv tool install rumdl
Using pip
pip install rumdl
Using pipx
pipx install rumdl
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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Related to project dependencies label Feb 1, 2026
@renovate renovate bot force-pushed the renovate/ubi-rvben-rumdl-0.x branch from 11b9c65 to 8a95057 Compare February 1, 2026 14:06
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/ubi-rvben-rumdl-0.x branch from 8a95057 to 33e8eca Compare February 1, 2026 16:33
@renovate renovate bot merged commit a6a0bbb into main Feb 1, 2026
12 checks passed
@renovate renovate bot deleted the renovate/ubi-rvben-rumdl-0.x branch February 1, 2026 20:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Related to project dependencies

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants