Skip to content

Send CLI diagnostics to stderr - #1991

Merged
ya7010 merged 1 commit into
mainfrom
ya7010/issue-1989-request
Jul 2, 2026
Merged

Send CLI diagnostics to stderr#1991
ya7010 merged 1 commit into
mainfrom
ya7010/issue-1989-request

Conversation

@ya7010

@ya7010 ya7010 commented Jul 2, 2026

Copy link
Copy Markdown
Collaborator

Summary

  • send diagnostic printer output to stderr instead of stdout
  • send CLI error printer output to stderr as well
  • keep stdout available for command payloads such as formatted TOML, shell completions, and future machine-readable output

Breaking Changes

  • Human-readable diagnostics and CLI errors from tombi lint and tombi format --check now go to stderr instead of stdout.

Notes

  • This PR intentionally does not change tombi format --diff; diff stdout behavior will be handled separately.

Tests

  • cargo fmt --all
  • cargo check -p tombi-cli -p tombi-diagnostic

@ya7010
ya7010 merged commit fdb7f33 into main Jul 2, 2026
23 checks passed
@ya7010
ya7010 deleted the ya7010/issue-1989-request branch July 2, 2026 02:55
@ya7010

ya7010 commented Jul 2, 2026

Copy link
Copy Markdown
Collaborator Author

📝 As revealed in issue #1989, this change makes parsing stderr more complex.

@ya7010 ya7010 added the breaking-change Breaking change Tag for Release Note label Jul 5, 2026
jylenhof pushed a commit to jylenhof/mise-en-place-resources that referenced this pull request Jul 15, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `action-validator`
- `actionlint`
- `editorconfig-checker`
- `ghalint`
- `lychee`
- `pinact`
- `pipx:gh-action-pulse`
- `prek`
- `rumdl`
- `shellcheck`
- `shfmt`
- `tombi`
- `uv`
- `yamlfmt`
- `yamllint`
- `zizmor`

Command: `mise upgrade --bump --local action-validator actionlint editorconfig-checker ghalint lychee pinact pipx:gh-action-pulse prek rumdl shellcheck shfmt tombi uv yamlfmt yamllint zizmor`

<details>
<summary>Version changelog (5 tools)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `editorconfig-checker` | `3.7.0` → `3.8.0` | `3.7.0` → `3.8.0` |
| `prek` | `0.4.5` → `0.4.9` | `0.4.5` → `0.4.9` |
| `rumdl` | `0.2.18` → `0.2.33` | `0.2.18` → `0.2.33` |
| `tombi` | `1.1.3` → `1.2.0` | `1.1.3` → `1.2.0` |
| `zizmor` | `latest` → `latest` | `1.26.1` → `1.27.0` |

</details>

<details>
<summary>Release notes (5 tools)</summary>

<details>
<summary>editorconfig-checker: `3.7.0` → `3.8.0` (editorconfig-checker/editorconfig-checker)</summary>

### v3.8.0

## [3.8.0](editorconfig-checker/editorconfig-checker@v3.7.0...v3.8.0) (2026-06-25)

### Features

* exclude .gpg files ([#571](editorconfig-checker/editorconfig-checker#571)) ([e5b53f4](editorconfig-checker/editorconfig-checker@e5b53f4))

### Bug Fixes

* anchor node_modules and target default excludes at path start ([#568](editorconfig-checker/editorconfig-checker#568)) ([c0c39af](editorconfig-checker/editorconfig-checker@c0c39af))
* honor -no-color for .ecrc deprecation warning ([#575](editorconfig-checker/editorconfig-checker#575)) ([dbb0dbb](editorconfig-checker/editorconfig-checker@dbb0dbb))

</details>
<details>
<summary>prek: `0.4.5` → `0.4.9` (j178/prek)</summary>

### v0.4.6

## Release Notes

Released on 2026-07-01.

### Enhancements

- Verify managed toolchain downloads before installation ([#2229](j178/prek#2229))
- Add `PREK_DOCKER_NO_INIT` to opt-out Docker `--init` ([#2242](j178/prek#2242))
- Improve subprocess error messages ([#2257](j178/prek#2257))
- Split run concurrency knobs: `PREK_CONCURRENT_HOOKS` and `PREK_CONCURRENT_BATCHES` ([#2276](j178/prek#2276))

### Performance

- Avoid allocating markdown extensions per file ([#2245](j178/prek#2245))
- Avoid unchanged config tracking writes ([#2247](j178/prek#2247))
- Delay trailing whitespace output buffer ([#2244](j178/prek#2244))
- Prefilter VCS permalink lines ([#2253](j178/prek#2253))
- Skip unnecessary submodule updates during hook repo clone ([#2255](j178/prek#2255))

### Documentation

- Document `language_version` inferring for Python and Go ([#2241](j178/prek#2241))

### Other changes

- Refactor env var handling ([#2277](j178/prek#2277))
- Use `serde-saphyr` for YAML string quoting ([#2228](j178/prek#2228))

### Contributors

- @shaanmajid
- @j178

## Install prek 0.4.6

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.6/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.6/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.6

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.6/p… (truncated)

### v0.4.8

## Release Notes

Released on 2026-07-04.

### Enhancements

- Add default_env configuration ([#2288](j178/prek#2288))
- Rename `auto-update` to `update` ([#2286](j178/prek#2286))

### Bug fixes

- Fix progress collapse ordering ([#2291](j178/prek#2291))
- Fix progress insertion after collapsed rows ([#2292](j178/prek#2292))

### Contributors

- @j178

## Install prek 0.4.8

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.8/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.8/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.8

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-apple-darwin.tar.gz.sha256) |
| [prek-x86_64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.8/prek-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-x86_64-apple-darwin.tar.gz.sha256) |
| [prek-aarch64-pc-windows-msvc.zip](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-pc-windows-msvc.zip) | ARM64 Windows | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-pc-windows-msvc.zip.sha256) |
| [prek-i686-pc-windows-msvc.zip](https://github.com/j178/prek/releases/download/v0.4.8/prek-i686-pc-windows-msvc.zip) | x86 Windows | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-i686-pc-windows-msvc.zip.sha25… (truncated)

### v0.4.9

## Release Notes

Released on 2026-07-11.

Note: This release changes the repository identity schema stored in cached hook environments. Existing
hook environments will be invalidated, and prek will reinstall them automatically when needed.

### Enhancements

- Preserve additional dependency order ([#2311](j178/prek#2311))
- Remove parallel Ruby gem installation ([#2307](j178/prek#2307))
- Warn for missing update repositories ([#2316](j178/prek#2316))

### Bug fixes

- Fix mixed workspace selectors ([#2306](j178/prek#2306))
- Fix try-repo local path resolution ([#2310](j178/prek#2310))
- Use resolved gem executable ([#2308](j178/prek#2308))
- Validate complete XML documents in check-xml ([#2312](j178/prek#2312))

### Contributors

- @j178

## Install prek 0.4.9

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.9

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.9/prek-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.9/prek-aarch64-apple-darwin.tar.gz.sha256) |
| [prek-x86_64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.9/prek-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.9/prek-x86_64-apple-darwin.tar.gz.sha256) |
| [prek-aarch64-pc-… (truncated)

</details>
<details>
<summary>rumdl: `0.2.18` → `0.2.33` (rvben/rumdl)</summary>

### v0.2.24

### Added

- **MD043**: report expected and actual headings at first mismatch (#696) ([57f0902](rvben/rumdl@57f0902)) - thanks @mkowen1
- **MD013**: add semantic-link-understanding to flag long-URL links in stern mode (#691) ([f17e3f7](rvben/rumdl@f17e3f7)) - thanks @chandlerc

### Fixed

- **MD013**: extend standalone-link reflow boundary to blockquotes ([74e79f6](rvben/rumdl@74e79f6))
- **MD013**: treat standalone links as paragraph boundaries in reflow (#697) ([39ea2b2](rvben/rumdl@39ea2b2)) - thanks @chandlerc
- **MD013**: associate paragraph reflow fix with all violating lines (#698) ([f17be35](rvben/rumdl@f17be35)) - thanks @chandlerc
- **fix-coordinator**: honor inline rumdl-configure-file overrides when applying fixes ([c347ab6](rvben/rumdl@c347ab6))
- **MD013**: exempt standalone links with trailing punctuation and wrappers (#694) ([d7a3c2e](rvben/rumdl@d7a3c2e)) - thanks @chandlerc
- **MD013**: keep the space after an inline code span before punctuation (#693) ([13745db](rvben/rumdl@13745db)) - thanks @chandlerc
- **lsp**: iterate formatting fixes to a fixpoint so one format pass converges (#695) ([78c42ad](rvben/rumdl@78c42ad)) - thanks @chandlerc
- **MD028**: make blockquote-merge autofix opt-in by default ([cffadef](rvben/rumdl@cffadef))
- **MD036**: make emphasis-to-heading autofix opt-in by default ([9b145a9](https://github.com/rvben/rumdl/commit/9b145a9b55a85… (truncated)

### v0.2.25

### Added

- **lsp**: document LSP settings and scope link-completion triggers ([18fae1b](rvben/rumdl@18fae1b))
- **MD013**: reflow lists with configured marker spacing (#692) ([b00b117](rvben/rumdl@b00b117))

### Fixed

- **MD052**: preserve author casing in undefined-reference messages ([6d1cb96](rvben/rumdl@6d1cb96))
- **MD013**: preserve single-tilde strikethrough content during reflow (#701) ([a2387ce](rvben/rumdl@a2387ce))
- **rules**: resolve complex link handling in reflow and MD052 (#702) ([d57a61a](rvben/rumdl@d57a61a))
- **rules**: prevent front-matter and skippable region leakage (#699) ([e09fa06](rvben/rumdl@e09fa06))
- **MD007**: align nested lists to a widened parent's content column (#700) ([595cc4d](rvben/rumdl@595cc4d))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.25-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-aarch64-unknown-linux-gnu.… (truncated)

### v0.2.26

### Added

- **wasi**: add wasi build feature, make target, and CI coverage ([8b9b027](rvben/rumdl@8b9b027))
- **lsp**: add enableSymbols setting to gate symbol providers ([b80f001](rvben/rumdl@b80f001))

### Fixed

- **workspace-index**: make cache temp file names unique per write ([d3aa269](rvben/rumdl@d3aa269))
- allow building for WASI ([8d0b44a](rvben/rumdl@8d0b44a))
- **MD060**: preserve trailing blank lines and skip table-free content ([0223b30](rvben/rumdl@0223b30))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.26-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/downlo… (truncated)

### v0.2.27

### Fixed

- **MD077**: detect latent list markers past an unstable heading ([05d273e](rvben/rumdl@05d273e))
- **MD013**: keep reference-style links atomic when reflowing ([a991a71](rvben/rumdl@a991a71))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.27-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/… (truncated)

### v0.2.28

### Added

- **md043**: report each heading mismatch via sequence alignment ([d46dbef](rvben/rumdl@d46dbef))

### Fixed

- **lsp**: isolate rule panics from the document lint path ([020d4a2](rvben/rumdl@020d4a2))
- prevent stack overflow on deeply nested blockquote markers ([1dd3ce5](rvben/rumdl@1dd3ce5))
- write fixes atomically and exit non-zero on unreadable files ([085d7fe](rvben/rumdl@085d7fe))
- **per-file-ignores**: enforce centrally in the fix coordinator ([c4b9899](rvben/rumdl@c4b9899))
- **fmt**: honor per-file-ignores on the stdin pipeline ([5b5e779](rvben/rumdl@5b5e779))
- **fmt**: honor per-file-ignores in the fix pipeline ([cb2d7f7](rvben/rumdl@cb2d7f7))
- **md043**: say 'pattern position' in unsatisfied-wildcard warnings ([9ffc105](rvben/rumdl@9ffc105))

### Performance

- **md013**: drop the per-check heading lookup allocation ([f76a209](rvben/rumdl@f76a209))
- make semantic-line-break reflow iterative ([5692564](rvben/rumdl@5692564))
- **md077**: compute list-continuation ranges in linear time ([d36b017](rvben/rumdl@d36b017))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.28-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.28/rumdl-v0.2.28-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/… (truncated)

### v0.2.29

### Fixed

- **lint-context**: keep indented continuation lines when a different list type follows ([5dd3c3f](rvben/rumdl@5dd3c3f))
- **MD013**: treat tabs and extra spaces after a list marker as marker padding ([f0f97a2](rvben/rumdl@f0f97a2))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.29-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-apple-darwin.tar.gz](https://github.co… (truncated)

### v0.2.30

### Added

- **MD007**: clamp explicit fixed-style indent under ordered parents ([1f3a32d](rvben/rumdl@1f3a32d))

### Fixed

- **lint-context**: keep lazy continuation lines in their list block ([a17f0af](rvben/rumdl@a17f0af))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.30-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/rel… (truncated)

### v0.2.31

### Added

- **action**: install rumdl from GitHub Releases instead of pip ([7f69695](rvben/rumdl@7f69695))

### Performance

- **reflow**: optimize inline code mask calculation using pre-extracted spans ([27e5507](rvben/rumdl@27e5507))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.31-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-apple-darwin.tar.gz](https://github.com/rvben… (truncated)

### v0.2.32

### Fixed

- **md032**: stop flagging ordered lists nested in MkDocs admonitions ([80f896e](rvben/rumdl@80f896e))
- **md013**: recognize sentence boundaries followed by footnote references ([04a8c78](rvben/rumdl@04a8c78))
- **md036,md023**: skip admonition and content tab bodies under MkDocs flavor ([e8d1421](rvben/rumdl@e8d1421))
- **md040**: recognize py and py3 as Python language aliases ([6e7f8bf](rvben/rumdl@6e7f8bf))
- **md057**: anchor URL extraction so links cannot borrow a sibling's destination ([5a643ca](rvben/rumdl@5a643ca))

### Performance

- **reflow**: skip pulldown-cmark parses when a span kind cannot be present ([66d7f7b](rvben/rumdl@66d7f7b))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz… (truncated)

### v0.2.33

### Fixed

- **md044**: stop flagging proper names inside bare URLs ([5e9b51a](rvben/rumdl@5e9b51a))
- **md040**: recognize file-extension fence labels as known languages ([686ba20](rvben/rumdl@686ba20))
- **cli**: replace unhelpful panic message with an actionable one (#717) ([37ac880](rvben/rumdl@37ac880))
- **reflow**: re-search cached inline-math after a dollar sign ([a30a4f9](rvben/rumdl@a30a4f9))
- **reflow**: support multiple backticks and optimize code span parsing ([81944c5](rvben/rumdl@81944c5))
- **md013**: stop reflow from starting lines with block markers ([eebd18b](rvben/rumdl@eebd18b))

### Performance

- **reflow**: implement cached match lookups to prevent quadratic suffix scanning ([1cc8d2b](rvben/rumdl@1cc8d2b))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.33-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-aarch64-unknown-linux-gnu.tar.gz)… (truncated)

_Omitted 5 older releases._

</details>
<details>
<summary>tombi: `1.1.3` → `1.2.0` (tombi-toml/tombi)</summary>

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @ya7010 in tombi-toml/tombi#1973

## New Contributors
* @EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

</details>
<details>
<summary>zizmor: `1.26.1` → `1.27.0` (zizmorcore/zizmor)</summary>

### v1.27.0

## New Features 🌈[🔗](https://docs.zizmor.sh/release-notes/#new-feartures)

- zizmor now has experimental support for workflows that specify parallel steps. See [Usage - Parallel steps](https://docs.zizmor.sh/usage/#parallel-steps) for more information ([#2153](zizmorcore/zizmor#2153))
Enhancements 🌱[🔗](https://docs.zizmor.sh/release-notes/#enhancements)

- zizmor's handling of paths is now more consistent, particularly when run on Windows ([#2163](zizmorcore/zizmor#2163))

- zizmor now emits a helpful warning when being run in implicit offline mode ([#2180](zizmorcore/zizmor#2180))

## Bug Fixes 🐛[🔗](https://docs.zizmor.sh/release-notes/#bug-fixes)

- Fixed a bug where the [secrets-outside-env](https://docs.zizmor.sh/audits/#secrets-outside-env) audit would not honor ignore comments within the same job scope ([#2157](zizmorcore/zizmor#2157))

- Fixed a bug where the [ref-version-mismatch](https://docs.zizmor.sh/audits/#ref-version-mismatch) audit would not honor ignore comments within the same steps scope ([#2177](zizmorcore/zizmor#2177))

- Fixed a bug where `--collect=[MODE]` was not correctly handled when auditing remote inputs ([#2185](zizmorcore/zizmor#2185))

</details>

</details>

Modified files:
- `.mise.toml`

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
jylenhof pushed a commit to jylenhof/gh-action-pulse that referenced this pull request Jul 16, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `tombi`

Command: `mise upgrade --bump --local tombi`

<details>
<summary>Version changelog (tombi)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `tombi` | `1.0.0` → `1.2.0` | `1.0.0` → `1.2.0` |

</details>

<details>
<summary>Release notes (1 tools)</summary>

<details>
<summary>tombi: `1.0.0` → `1.2.0` (tombi-toml/tombi)</summary>

### v1.1.0

<!-- Release notes generated using configuration in .github/release.yml at v1.1.0 -->

## What's Changed

Starting with this version, we will synchronize [setup-tombi](https://github.com/tombi-toml/setup-tombi) with version control.

### 🛠️ Other Changes
* test: consolidate tombi-lsp ad hoc cases by @ya7010 in tombi-toml/tombi#1914
* ci: sync setup-tombi release automation by @ya7010 in tombi-toml/tombi#1915

**Full Changelog**: tombi-toml/tombi@v1.0.0...v1.1.0

### v1.1.1

<!-- Release notes generated using configuration in .github/release.yml at v1.1.1 -->

## What's Changed
### 🐛 Bug Fixes
* Align multiline delimiter comments with trailing comment width by @ya7010 in tombi-toml/tombi#1924
### 👒 Dependencies
* fix: address Dependabot security alerts by @ya7010 in tombi-toml/tombi#1919
* fix: remove unused surf fallback from schema store by @ya7010 in tombi-toml/tombi#1920
### 🛠️ Other Changes
* fix: statically link Windows MSVC CRT by @ya7010 in tombi-toml/tombi#1917
* fix: resolve Dependabot security alerts by @ya7010 in tombi-toml/tombi#1918

**Full Changelog**: tombi-toml/tombi@v1.1.0...v1.1.1

### v1.1.2

<!-- Release notes generated using configuration in .github/release.yml at v1.1.2 -->

## What's Changed
### 🚀 New Features
* feat(installer): add archive checksum verification by @ya7010 in tombi-toml/tombi#1931
* fix(cargo-hover): show feature dependency metadata in hover by @ya7010 in tombi-toml/tombi#1932
### 👒 Dependencies
* build(deps): bump tar from 0.4.45 to 0.4.46 in the cargo group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1928
### 🛠️ Other Changes
* ci: follow setup-tombi consolidated release workflow by @ya7010 in tombi-toml/tombi#1925
* docs(schema): describe partially dynamic pyproject metadata by @ya7010 in tombi-toml/tombi#1929

**Full Changelog**: tombi-toml/tombi@v1.1.1...v1.1.2

### v1.1.3

<!-- Release notes generated using configuration in .github/release.yml at v1.1.3 -->

## What's Changed
### 🚀 New Features
* fix(pyproject): keep declarations out of references by @ya7010 in tombi-toml/tombi#1937
### 🛠️ Other Changes
* docs(install): remove sha256 prefix from checksum example by @ya7010 in tombi-toml/tombi#1933
* fix(ci): quote install workflow step name by @ya7010 in tombi-toml/tombi#1934
* ci: pin GitHub Actions and tighten defaults by @ya7010 in tombi-toml/tombi#1935
* ci: pin npm release tooling versions by @ya7010 in tombi-toml/tombi#1936
* ci: use trusted publishing for PyPI release by @ya7010 in tombi-toml/tombi#1938
* fix(ci): pass snapcraft matrix platform to build by @ya7010 in tombi-toml/tombi#1939
* fix(ci): allow snapcraft cross-build platforms on amd64 by @ya7010 in tombi-toml/tombi#1940

**Full Changelog**: tombi-toml/tombi@v1.1.2...v1.1.3

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @ya7010 in tombi-toml/tombi#1973

## New Contributors
* @EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

</details>

</details>

Modified files:
- `.mise.toml`

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
jylenhof pushed a commit to jylenhof/github-actions-resources that referenced this pull request Jul 16, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `tombi`

Command: `mise upgrade --bump --local tombi`

<details>
<summary>Version changelog (tombi)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `tombi` | `1.1.3` → `1.2.0` | `1.1.3` → `1.2.0` |

</details>

<details>
<summary>Release notes (1 tools)</summary>

<details>
<summary>tombi: `1.1.3` → `1.2.0` (tombi-toml/tombi)</summary>

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @ya7010 in tombi-toml/tombi#1973

## New Contributors
* @EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

</details>

</details>

Modified files:
- `.mise.toml`
jylenhof pushed a commit to jylenhof/github-actions-resources that referenced this pull request Jul 16, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `tombi`

Command: `mise upgrade --bump --local tombi`

<details>
<summary>Version changelog (tombi)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `tombi` | `1.1.3` → `1.2.0` | `1.1.3` → `1.2.0` |

</details>

<details>
<summary>Release notes (1 tools)</summary>

<details>
<summary>tombi: `1.1.3` → `1.2.0` (tombi-toml/tombi)</summary>

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @ya7010 in tombi-toml/tombi#1973

## New Contributors
* @EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

</details>

</details>

Modified files:
- `.mise.toml`

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
jylenhof pushed a commit to jylenhof/mise-en-place-resources that referenced this pull request Jul 16, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `action-validator`
- `actionlint`
- `editorconfig-checker`
- `ghalint`
- `lychee`
- `pinact`
- `pipx:gh-action-pulse`
- `prek`
- `rumdl`
- `shellcheck`
- `shfmt`
- `tombi`
- `uv`
- `yamlfmt`
- `yamllint`
- `zizmor`

Command: `mise upgrade --bump --local action-validator actionlint editorconfig-checker ghalint lychee pinact pipx:gh-action-pulse prek rumdl shellcheck shfmt tombi uv yamlfmt yamllint zizmor`

<details>
<summary>Version changelog (5 tools)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `editorconfig-checker` | `3.7.0` → `3.8.0` | `3.7.0` → `3.8.0` |
| `prek` | `0.4.5` → `0.4.9` | `0.4.5` → `0.4.9` |
| `rumdl` | `0.2.18` → `0.2.34` | `0.2.18` → `0.2.34` |
| `tombi` | `1.1.3` → `1.2.0` | `1.1.3` → `1.2.0` |
| `zizmor` | `latest` → `latest` | `1.26.1` → `1.27.0` |

</details>

<details>
<summary>Release notes (5 tools)</summary>

<details>
<summary>editorconfig-checker: `3.7.0` → `3.8.0` (editorconfig-checker/editorconfig-checker)</summary>

### v3.8.0

## [3.8.0](editorconfig-checker/editorconfig-checker@v3.7.0...v3.8.0) (2026-06-25)

### Features

* exclude .gpg files ([#571](editorconfig-checker/editorconfig-checker#571)) ([e5b53f4](editorconfig-checker/editorconfig-checker@e5b53f4))

### Bug Fixes

* anchor node_modules and target default excludes at path start ([#568](editorconfig-checker/editorconfig-checker#568)) ([c0c39af](editorconfig-checker/editorconfig-checker@c0c39af))
* honor -no-color for .ecrc deprecation warning ([#575](editorconfig-checker/editorconfig-checker#575)) ([dbb0dbb](editorconfig-checker/editorconfig-checker@dbb0dbb))

</details>
<details>
<summary>prek: `0.4.5` → `0.4.9` (j178/prek)</summary>

### v0.4.6

## Release Notes

Released on 2026-07-01.

### Enhancements

- Verify managed toolchain downloads before installation ([#2229](j178/prek#2229))
- Add `PREK_DOCKER_NO_INIT` to opt-out Docker `--init` ([#2242](j178/prek#2242))
- Improve subprocess error messages ([#2257](j178/prek#2257))
- Split run concurrency knobs: `PREK_CONCURRENT_HOOKS` and `PREK_CONCURRENT_BATCHES` ([#2276](j178/prek#2276))

### Performance

- Avoid allocating markdown extensions per file ([#2245](j178/prek#2245))
- Avoid unchanged config tracking writes ([#2247](j178/prek#2247))
- Delay trailing whitespace output buffer ([#2244](j178/prek#2244))
- Prefilter VCS permalink lines ([#2253](j178/prek#2253))
- Skip unnecessary submodule updates during hook repo clone ([#2255](j178/prek#2255))

### Documentation

- Document `language_version` inferring for Python and Go ([#2241](j178/prek#2241))

### Other changes

- Refactor env var handling ([#2277](j178/prek#2277))
- Use `serde-saphyr` for YAML string quoting ([#2228](j178/prek#2228))

### Contributors

- @shaanmajid
- @j178

## Install prek 0.4.6

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.6/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.6/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.6

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.6/p… (truncated)

### v0.4.8

## Release Notes

Released on 2026-07-04.

### Enhancements

- Add default_env configuration ([#2288](j178/prek#2288))
- Rename `auto-update` to `update` ([#2286](j178/prek#2286))

### Bug fixes

- Fix progress collapse ordering ([#2291](j178/prek#2291))
- Fix progress insertion after collapsed rows ([#2292](j178/prek#2292))

### Contributors

- @j178

## Install prek 0.4.8

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.8/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.8/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.8

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-apple-darwin.tar.gz.sha256) |
| [prek-x86_64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.8/prek-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-x86_64-apple-darwin.tar.gz.sha256) |
| [prek-aarch64-pc-windows-msvc.zip](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-pc-windows-msvc.zip) | ARM64 Windows | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-aarch64-pc-windows-msvc.zip.sha256) |
| [prek-i686-pc-windows-msvc.zip](https://github.com/j178/prek/releases/download/v0.4.8/prek-i686-pc-windows-msvc.zip) | x86 Windows | [checksum](https://github.com/j178/prek/releases/download/v0.4.8/prek-i686-pc-windows-msvc.zip.sha25… (truncated)

### v0.4.9

## Release Notes

Released on 2026-07-11.

Note: This release changes the repository identity schema stored in cached hook environments. Existing
hook environments will be invalidated, and prek will reinstall them automatically when needed.

### Enhancements

- Preserve additional dependency order ([#2311](j178/prek#2311))
- Remove parallel Ruby gem installation ([#2307](j178/prek#2307))
- Warn for missing update repositories ([#2316](j178/prek#2316))

### Bug fixes

- Fix mixed workspace selectors ([#2306](j178/prek#2306))
- Fix try-repo local path resolution ([#2310](j178/prek#2310))
- Use resolved gem executable ([#2308](j178/prek#2308))
- Validate complete XML documents in check-xml ([#2312](j178/prek#2312))

### Contributors

- @j178

## Install prek 0.4.9

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.sh | sh
```

### Install prebuilt binaries via powershell script

```sh
powershell -ExecutionPolicy Bypass -c "irm https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.9

|  File  | Platform | Checksum |
|--------|----------|----------|
| [prek-aarch64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.9/prek-aarch64-apple-darwin.tar.gz) | Apple Silicon macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.9/prek-aarch64-apple-darwin.tar.gz.sha256) |
| [prek-x86_64-apple-darwin.tar.gz](https://github.com/j178/prek/releases/download/v0.4.9/prek-x86_64-apple-darwin.tar.gz) | Intel macOS | [checksum](https://github.com/j178/prek/releases/download/v0.4.9/prek-x86_64-apple-darwin.tar.gz.sha256) |
| [prek-aarch64-pc-… (truncated)

</details>
<details>
<summary>rumdl: `0.2.18` → `0.2.34` (rvben/rumdl)</summary>

### v0.2.25

### Added

- **lsp**: document LSP settings and scope link-completion triggers ([18fae1b](rvben/rumdl@18fae1b))
- **MD013**: reflow lists with configured marker spacing (#692) ([b00b117](rvben/rumdl@b00b117))

### Fixed

- **MD052**: preserve author casing in undefined-reference messages ([6d1cb96](rvben/rumdl@6d1cb96))
- **MD013**: preserve single-tilde strikethrough content during reflow (#701) ([a2387ce](rvben/rumdl@a2387ce))
- **rules**: resolve complex link handling in reflow and MD052 (#702) ([d57a61a](rvben/rumdl@d57a61a))
- **rules**: prevent front-matter and skippable region leakage (#699) ([e09fa06](rvben/rumdl@e09fa06))
- **MD007**: align nested lists to a widened parent's content column (#700) ([595cc4d](rvben/rumdl@595cc4d))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.25-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.25/rumdl-v0.2.25-aarch64-unknown-linux-gnu.… (truncated)

### v0.2.26

### Added

- **wasi**: add wasi build feature, make target, and CI coverage ([8b9b027](rvben/rumdl@8b9b027))
- **lsp**: add enableSymbols setting to gate symbol providers ([b80f001](rvben/rumdl@b80f001))

### Fixed

- **workspace-index**: make cache temp file names unique per write ([d3aa269](rvben/rumdl@d3aa269))
- allow building for WASI ([8d0b44a](rvben/rumdl@8d0b44a))
- **MD060**: preserve trailing blank lines and skip table-free content ([0223b30](rvben/rumdl@0223b30))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.26-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.26/rumdl-v0.2.26-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/downlo… (truncated)

### v0.2.27

### Fixed

- **MD077**: detect latent list markers past an unstable heading ([05d273e](rvben/rumdl@05d273e))
- **MD013**: keep reference-style links atomic when reflowing ([a991a71](rvben/rumdl@a991a71))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.27-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.27/rumdl-v0.2.27-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.27-aarch64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.27/… (truncated)

### v0.2.28

### Added

- **md043**: report each heading mismatch via sequence alignment ([d46dbef](rvben/rumdl@d46dbef))

### Fixed

- **lsp**: isolate rule panics from the document lint path ([020d4a2](rvben/rumdl@020d4a2))
- prevent stack overflow on deeply nested blockquote markers ([1dd3ce5](rvben/rumdl@1dd3ce5))
- write fixes atomically and exit non-zero on unreadable files ([085d7fe](rvben/rumdl@085d7fe))
- **per-file-ignores**: enforce centrally in the fix coordinator ([c4b9899](rvben/rumdl@c4b9899))
- **fmt**: honor per-file-ignores on the stdin pipeline ([5b5e779](rvben/rumdl@5b5e779))
- **fmt**: honor per-file-ignores in the fix pipeline ([cb2d7f7](rvben/rumdl@cb2d7f7))
- **md043**: say 'pattern position' in unsatisfied-wildcard warnings ([9ffc105](rvben/rumdl@9ffc105))

### Performance

- **md013**: drop the per-check heading lookup allocation ([f76a209](rvben/rumdl@f76a209))
- make semantic-line-break reflow iterative ([5692564](rvben/rumdl@5692564))
- **md077**: compute list-continuation ranges in linear time ([d36b017](rvben/rumdl@d36b017))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.28-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.28/rumdl-v0.2.28-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/… (truncated)

### v0.2.29

### Fixed

- **lint-context**: keep indented continuation lines when a different list type follows ([5dd3c3f](rvben/rumdl@5dd3c3f))
- **MD013**: treat tabs and extra spaces after a list marker as marker padding ([f0f97a2](rvben/rumdl@f0f97a2))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.29-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.29/rumdl-v0.2.29-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.29-aarch64-apple-darwin.tar.gz](https://github.co… (truncated)

### v0.2.30

### Added

- **MD007**: clamp explicit fixed-style indent under ordered parents ([1f3a32d](rvben/rumdl@1f3a32d))

### Fixed

- **lint-context**: keep lazy continuation lines in their list block ([a17f0af](rvben/rumdl@a17f0af))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.30-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.30/rumdl-v0.2.30-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.30-aarch64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/rel… (truncated)

### v0.2.31

### Added

- **action**: install rumdl from GitHub Releases instead of pip ([7f69695](rvben/rumdl@7f69695))

### Performance

- **reflow**: optimize inline code mask calculation using pre-extracted spans ([27e5507](rvben/rumdl@27e5507))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.31-x86_64-apple-darwin.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-apple-darwin.tar.gz) | macOS x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.31/rumdl-v0.2.31-x86_64-apple-darwin.tar.gz.sha256) |
| [rumdl-v0.2.31-aarch64-apple-darwin.tar.gz](https://github.com/rvben… (truncated)

### v0.2.32

### Fixed

- **md032**: stop flagging ordered lists nested in MkDocs admonitions ([80f896e](rvben/rumdl@80f896e))
- **md013**: recognize sentence boundaries followed by footnote references ([04a8c78](rvben/rumdl@04a8c78))
- **md036,md023**: skip admonition and content tab bodies under MkDocs flavor ([e8d1421](rvben/rumdl@e8d1421))
- **md040**: recognize py and py3 as Python language aliases ([6e7f8bf](rvben/rumdl@6e7f8bf))
- **md057**: anchor URL extraction so links cannot borrow a sibling's destination ([5a643ca](rvben/rumdl@5a643ca))

### Performance

- **reflow**: skip pulldown-cmark parses when a span kind cannot be present ([66d7f7b](rvben/rumdl@66d7f7b))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.32/rumdl-v0.2.32-aarch64-unknown-linux-gnu.tar.gz… (truncated)

### v0.2.33

### Fixed

- **md044**: stop flagging proper names inside bare URLs ([5e9b51a](rvben/rumdl@5e9b51a))
- **md040**: recognize file-extension fence labels as known languages ([686ba20](rvben/rumdl@686ba20))
- **cli**: replace unhelpful panic message with an actionable one (#717) ([37ac880](rvben/rumdl@37ac880))
- **reflow**: re-search cached inline-math after a dollar sign ([a30a4f9](rvben/rumdl@a30a4f9))
- **reflow**: support multiple backticks and optimize code span parsing ([81944c5](rvben/rumdl@81944c5))
- **md013**: stop reflow from starting lines with block markers ([eebd18b](rvben/rumdl@eebd18b))

### Performance

- **reflow**: implement cached match lookups to prevent quadratic suffix scanning ([1cc8d2b](rvben/rumdl@1cc8d2b))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.33-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.33/rumdl-v0.2.33-aarch64-unknown-linux-gnu.tar.gz)… (truncated)

### v0.2.34

### Added

- **code-block-tools**: restore shuck as a built-in shell linter ([da66447](rvben/rumdl@da66447))

### Performance

- **reflow**: probe inline math at the cursor instead of rescanning the suffix ([1e6ea3b](rvben/rumdl@1e6ea3b))
- **reflow**: merge emphasis and code span extraction into a single cmark pass ([8e03537](rvben/rumdl@8e03537))
- **reflow**: optimize MyST inline role parsing using pre-extracted code spans ([e966899](rvben/rumdl@e966899))

## Downloads

| File | Platform | Checksum |
|------|----------|----------|
| [rumdl-v0.2.34-x86_64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-x86_64-unknown-linux-gnu.tar.gz) | Linux x86_64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-x86_64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.34-x86_64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-x86_64-unknown-linux-musl.tar.gz) | Linux x86_64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-x86_64-unknown-linux-musl.tar.gz.sha256) |
| [rumdl-v0.2.34-aarch64-unknown-linux-gnu.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-aarch64-unknown-linux-gnu.tar.gz) | Linux ARM64 | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-aarch64-unknown-linux-gnu.tar.gz.sha256) |
| [rumdl-v0.2.34-aarch64-unknown-linux-musl.tar.gz](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-aarch64-unknown-linux-musl.tar.gz) | Linux ARM64 (musl) | [checksum](https://github.com/rvben/rumdl/releases/download/v0.2.34/rumdl-v0.2.34-aarch64-unknown-linux-musl.tar.gz.sha256) |
| [rum… (truncated)

_Omitted 6 older releases._

</details>
<details>
<summary>tombi: `1.1.3` → `1.2.0` (tombi-toml/tombi)</summary>

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @ya7010 in tombi-toml/tombi#1973

## New Contributors
* @EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

</details>
<details>
<summary>zizmor: `1.26.1` → `1.27.0` (zizmorcore/zizmor)</summary>

### v1.27.0

## New Features 🌈[🔗](https://docs.zizmor.sh/release-notes/#new-feartures)

- zizmor now has experimental support for workflows that specify parallel steps. See [Usage - Parallel steps](https://docs.zizmor.sh/usage/#parallel-steps) for more information ([#2153](zizmorcore/zizmor#2153))
Enhancements 🌱[🔗](https://docs.zizmor.sh/release-notes/#enhancements)

- zizmor's handling of paths is now more consistent, particularly when run on Windows ([#2163](zizmorcore/zizmor#2163))

- zizmor now emits a helpful warning when being run in implicit offline mode ([#2180](zizmorcore/zizmor#2180))

## Bug Fixes 🐛[🔗](https://docs.zizmor.sh/release-notes/#bug-fixes)

- Fixed a bug where the [secrets-outside-env](https://docs.zizmor.sh/audits/#secrets-outside-env) audit would not honor ignore comments within the same job scope ([#2157](zizmorcore/zizmor#2157))

- Fixed a bug where the [ref-version-mismatch](https://docs.zizmor.sh/audits/#ref-version-mismatch) audit would not honor ignore comments within the same steps scope ([#2177](zizmorcore/zizmor#2177))

- Fixed a bug where `--collect=[MODE]` was not correctly handled when auditing remote inputs ([#2185](zizmorcore/zizmor#2185))

</details>

</details>

Modified files:
- `.mise.toml`

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
jylenhof pushed a commit to jylenhof/mise-en-place-tips that referenced this pull request Jul 20, 2026
Automated mise tool upgrades from local config.

Updated tools:
- `tombi`

Command: `mise upgrade --bump --local tombi`

<details>
<summary>Version changelog (tombi)</summary>

| Tool | Requested | Installed |
|------|-----------|-----------|
| `tombi` | `1.1.3` → `1.2.4` | `1.1.3` → `1.2.4` |

</details>

<details>
<summary>Release notes (1 tools)</summary>

<details>
<summary>tombi: `1.1.3` → `1.2.4` (tombi-toml/tombi)</summary>

### v1.1.4

<!-- Release notes generated using configuration in .github/release.yml at v1.1.4 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): avoid stale diagnostics after changes by @​ya7010 in tombi-toml/tombi#1954
### 👒 Dependencies
* build(deps-dev): bump esbuild from 0.28.0 to 0.28.1 in the npm_and_yarn group across 1 directory by @​dependabot[bot] in tombi-toml/tombi#1945
* build(deps-dev): bump the npm_and_yarn group across 2 directories with 1 update by @​dependabot[bot] in tombi-toml/tombi#1952
### 🛠️ Other Changes
* fix(ci): include LICENSE in python sdist by @​ya7010 in tombi-toml/tombi#1942
* docs: explain selective auto-sort re-enable by @​ya7010 in tombi-toml/tombi#1943
* Use GitHub App token for dependent release dispatches by @​ya7010 in tombi-toml/tombi#1951

**Full Changelog**: tombi-toml/tombi@v1.1.3...v1.1.4

### v1.1.5

<!-- Release notes generated using configuration in .github/release.yml at v1.1.5 -->

## What's Changed
### 🐛 Bug Fixes
* fix(lsp): merge allOf table key completions by @​ya7010 in tombi-toml/tombi#1959
* fix(vscode): color TOML dates as constants by @​ya7010 in tombi-toml/tombi#1960
### 🛠️ Other Changes
* fix(lsp): complete literal keys in tables by @​ya7010 in tombi-toml/tombi#1958

**Full Changelog**: tombi-toml/tombi@v1.1.4...v1.1.5

### v1.1.6

<!-- Release notes generated using configuration in .github/release.yml at v1.1.6 -->

## What's Changed
### 🚀 New Features
* feat: include target in CLI version output by @​ya7010 in tombi-toml/tombi#1974
### 🐛 Bug Fixes
* fix: remove npm install script from tombi package by @​ya7010 in tombi-toml/tombi#1969
### 🛠️ Other Changes
* Fix Windows release CRT linkage by @​ya7010 in tombi-toml/tombi#1961
* ci: use shared release environment by @​ya7010 in tombi-toml/tombi#1962
* Deprecate legacy document-link feature toggles by @​ya7010 in tombi-toml/tombi#1965
* docs: add v2 release todo by @​ya7010 in tombi-toml/tombi#1966
* chore: bump biome $schema to match pinned CLI 2.3.8 by @​EduardF1 in tombi-toml/tombi#1967
* Align release build settings by @​ya7010 in tombi-toml/tombi#1972
* fix: update vulnerable npm dependencies by @​ya7010 in tombi-toml/tombi#1973

## New Contributors
* @​EduardF1 made their first contribution in tombi-toml/tombi#1967

**Full Changelog**: tombi-toml/tombi@v1.1.5...v1.1.6

### v1.1.7

<!-- Release notes generated using configuration in .github/release.yml at v1.1.7 -->

## What's Changed
### 🦅 New Features
* Apply quote style to string keys by @​ya7010 in tombi-toml/tombi#1980
* Support JSON schema `deprecationMessage` by @​ya7010 in tombi-toml/tombi#1986
### 🐝 Bug Fixes
* Fix nested anyOf hover enum selection by @​ya7010 in tombi-toml/tombi#1979
### 🛠️ Other Changes
* Update issue template emoji by @​ya7010 in tombi-toml/tombi#1975
* Fix anyOf hover enum leakage by @​ya7010 in tombi-toml/tombi#1976
* ci: validate winget manifest before submission by @​ya7010 in tombi-toml/tombi#1977
* Improve formatting edit debug log by @​ya7010 in tombi-toml/tombi#1978
* ci: harden winget manifest invocation check by @​ya7010 in tombi-toml/tombi#1981
* ci: validate winget manifest leaf directory by @​ya7010 in tombi-toml/tombi#1982
* ci: ignore winget manifest validation warnings by @​ya7010 in tombi-toml/tombi#1983
* Fix root `$ref` schema completion by @​kjanat in tombi-toml/tombi#1984

**Full Changelog**: tombi-toml/tombi@v1.1.6...v1.1.7

### v1.2.0

<!-- Release notes generated using configuration in .github/release.yml at v1.2.0 -->

## What's Changed
### 🚨 Breaking Changes
* Send CLI diagnostics to stderr by @​ya7010 in tombi-toml/tombi#1991
### 🦅 New Features
* Add release asset attestations by @​ya7010 in tombi-toml/tombi#1993
### 🐝 Bug Fixes
* fix(lsp): clear diagnostics after document close if workspace-diagnostics is disabled by @​ya7010 in tombi-toml/tombi#1998
### 🛠️ Other Changes
* ci: align release note category emoji by @​ya7010 in tombi-toml/tombi#1990
* docs: document TOMBI_NO_COLOR by @​ya7010 in tombi-toml/tombi#1997
* fix(lsp): avoid cloning document URIs by @​ya7010 in tombi-toml/tombi#1999

**Full Changelog**: tombi-toml/tombi@v1.1.7...v1.2.0

### v1.2.1

<!-- Release notes generated using configuration in .github/release.yml at v1.2.1 -->

## What's Changed

In this release, we have updated the linter to issue a warning if it is unable to resolve elements such as $ref within a JSON Schema.

### 🐝 Bug Fixes
* Stabilize diagnostic collection names by @​ya7010 in tombi-toml/tombi#2000
* fix(lint): avoid false unused deprecated directive by @​ya7010 in tombi-toml/tombi#2001
* fix(vscode): make executable settings machine-scoped by @​ya7010 in tombi-toml/tombi#2002
* fix(validator): report schema resolution errors by @​ya7010 in tombi-toml/tombi#2010
* fix(glob): remove unused profile import by @​ya7010 in tombi-toml/tombi#2011
### 📦 Dependencies
* chore: resolve OSV code scanning alerts by @​ya7010 in tombi-toml/tombi#2004
### 🛠️ Other Changes
* docs: document deprecationMessage as non-standard support by @​ya7010 in tombi-toml/tombi#2003
* ci: pin OSV scanner workflow to existing action ref by @​ya7010 in tombi-toml/tombi#2005
* fix(validator): report not schema resolution errors by @​risu729 in tombi-toml/tombi#2007
* feat(diagnostic): integrate tombi-diagnostic for error reporting in validator by @​ya7010 in tombi-toml/tombi#2015
* Update error handling by @​ya7010 in tombi-toml/tombi#2016
* chore: change schemastore diagnostics level by @​ya7010 in tombi-toml/tombi#2017

## New Contributors
* @​risu729 made their first contribution in tombi-toml/tombi#2007

**Full Changelog**: tombi-toml/tombi@v1.2.0...v1.2.1

### v1.2.2

<!-- Release notes generated using configuration in .github/release.yml at v1.2.2 -->

## What's Changed
### 🐝 Bug Fixes
* ci: submit winget manifest leaf directory by @​ya7010 in tombi-toml/tombi#2018
### 📦 Dependencies
* chore: update package lock files for SunOS package by @​ya7010 in tombi-toml/tombi#2020
### 🛠️ Other Changes
* feat(dist): add x86_64-unknown-illumos binary distribution by @​sunshowers in tombi-toml/tombi#2014
* refactor(dist): infer CLI-only illumos builds by @​ya7010 in tombi-toml/tombi#2019

## New Contributors
* @​sunshowers made their first contribution in tombi-toml/tombi#2014

**Full Changelog**: tombi-toml/tombi@v1.2.1...v1.2.2

### v1.2.3

<!-- Release notes generated using configuration in .github/release.yml at v1.2.3 -->

## What's Changed
### 🦅 New Features
* Allow comment directives to suppress schema resolution warnings by @​ya7010 in tombi-toml/tombi#2023
### 🛠️ Other Changes
* ci: finalize illumos install checks by @​ya7010 in tombi-toml/tombi#2021
* fix(ci): preserve winget release metadata by @​ya7010 in tombi-toml/tombi#2022

**Full Changelog**: tombi-toml/tombi@v1.2.2...v1.2.3

### v1.2.4

<!-- Release notes generated using configuration in .github/release.yml at v1.2.4 -->

## What's Changed
### 🛠️ Other Changes
* fix(date-time): accept leap second 60 in date-time values by @​LordAizen1 in tombi-toml/tombi#2024

## New Contributors
* @​LordAizen1 made their first contribution in tombi-toml/tombi#2024

**Full Changelog**: tombi-toml/tombi@v1.2.3...v1.2.4

</details>

</details>

Modified files:
- `.mise.toml`

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

breaking-change Breaking change Tag for Release Note

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant