Skip to content

fix(validator): report not schema resolution errors - #2007

Merged
ya7010 merged 4 commits into
tombi-toml:mainfrom
risu729:agent/fix-unresolved-not-schema-ref
Jul 16, 2026
Merged

fix(validator): report not schema resolution errors#2007
ya7010 merged 4 commits into
tombi-toml:mainfrom
risu729:agent/fix-unresolved-not-schema-ref

Conversation

@risu729

@risu729 risu729 commented Jul 15, 2026

Copy link
Copy Markdown
Contributor

Summary

  • add regression coverage for an invalid $ref used directly as a not subschema
  • surface direct not subschema resolution errors as lint diagnostics
  • resolve the schema item without holding its write lock across validation
  • use assertion semantics for warning-only subschema results
  • verify normal inline not match and non-match behavior

Bug case

Given this schema:

{
  "type": "object",
  "properties": {
    "value": {
      "type": "string",
      "not": {
        "$ref": "#/$defs/missing"
      }
    }
  }
}

and this TOML document:

value = "foo"

the $ref cannot resolve because #/$defs/missing does not exist. Resolving the schema item assigned to not returns Err(InvalidJsonPointer).

Previously, validate_not used if let Ok(Some(...)) around resolution. The error was only logged, did not match the Ok(Some(...)) pattern, and execution fell through to a successful validation result. As a result, every value passed lint even though this not subschema could not be evaluated. This was a fail-open reference-resolution bug, not a general problem with inline not constraints.

The new implementation matches the direct not schema-item resolution result explicitly. A resolution Err becomes a user-facing diagnostic with the original error code and message, so this case now fails lint with an invalid-json-pointer error. Resolved schemas continue through normal assertion evaluation, including treating warning-only results as assertion success.

Ok(None) keeps the existing unresolved/offline behavior.

Scope

This change covers errors returned while resolving the schema item directly assigned to not. It does not reclassify resolution errors produced later while evaluating deeper descendant or composite schemas; that requires validator-wide separation between assertion failures and schema-evaluation failures.

Validation

  • cargo fmt --all -- --check
  • cargo check -p tombi-validator
  • cargo test -p tombi-validator (20 passed)
  • cargo test -p tombi-linter --test integration not_schema:: (4 passed)
  • cargo test -p tombi-linter --test integration (284 passed)
  • cargo clippy -p tombi-linter --test integration -- -D warnings

The regression test and implementation fix are kept in separate commits. Follow-up review fixes add diagnostic metadata assertions and coverage for resolved inline not behavior.

@risu729 risu729 changed the title fix(validator): report unresolved not schema refs fix(validator): report not schema resolution errors Jul 15, 2026
@risu729
risu729 marked this pull request as ready for review July 15, 2026 16:45
@risu729
risu729 requested a review from ya7010 as a code owner July 15, 2026 16:45
Copilot AI review requested due to automatic review settings July 15, 2026 16:45

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

not サブスキーマ内の $ref 解決に失敗した場合に、従来は fail-open で lint が成功してしまっていた挙動を修正し、解決エラーをユーザー向け診断として返すようにする PR です。TOML のスキーマ検証/リンタの正確性(特に参照解決失敗時の扱い)を改善します。

Changes:

  • not サブスキーマ解決結果を明示的に match し、解決 Err を診断として返す(fail-closed化)
  • 未解決 Ok(None) の既存挙動を維持しつつ、解決成功時は従来通り not の評価を継続
  • 未解決 $refnot に含む回帰テスト用スキーマ/統合テストを追加

Reviewed changes

Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.

File Description
schemas/not-schema-test.schema.json not 内の未解決 $ref を再現するためのテスト用 JSON Schema を追加
crates/tombi-validator/src/validate/not_schema.rs not のサブスキーマ解決エラーを lint 診断として返すように修正
crates/tombi-linter/tests/integration/not_schema.rs 未解決 $ref が診断として報告されることの回帰テストを追加
crates/tombi-linter/tests/integration.rs 新規統合テストモジュール not_schema をテストスイートに追加

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@risu729
risu729 marked this pull request as draft July 15, 2026 16:53
@risu729
risu729 marked this pull request as ready for review July 15, 2026 16:57
@ya7010

ya7010 commented Jul 16, 2026

Copy link
Copy Markdown
Collaborator

Thank you.

In cases where the writing style cannot be resolved by JSON Schema itself, I have been treating it as a warning until now, but perhaps we should change it to a strict error overall.

@ya7010
ya7010 merged commit 9e9360b into tombi-toml:main Jul 16, 2026
23 checks passed
@risu729
risu729 deleted the agent/fix-unresolved-not-schema-ref branch July 16, 2026 03:49
@risu729

risu729 commented Jul 16, 2026

Copy link
Copy Markdown
Contributor Author

Thanks for the quick response! I'm not too sure about that tbh, but for this specific case, the warning was a problem, I think.

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>
jylenhof pushed a commit to jylenhof/gh-action-pulse 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.2.0` → `1.2.3` | `1.2.0` → `1.2.3` |

</details>

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

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

### 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

</details>

</details>

Modified files:
- `.mise.toml`
jylenhof pushed a commit to jylenhof/gh-action-pulse 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.2.0` → `1.2.3` | `1.2.0` → `1.2.3` |

</details>

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

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

### 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

</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 20, 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 |
|------|-----------|-----------|
| `pipx:gh-action-pulse` | `latest` → `latest` | `0.5.1` → `1.0.0` |
| `prek` | `0.4.9` → `0.4.10` | `0.4.9` → `0.4.10` |
| `rumdl` | `0.2.34` → `0.2.36` | `0.2.34` → `0.2.36` |
| `tombi` | `1.2.0` → `1.2.3` | `1.2.0` → `1.2.3` |
| `uv` | `latest` → `latest` | `0.11.28` → `0.11.29` |

</details>

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

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

### v0.4.10

## Release Notes

Released on 2026-07-16.

### Enhancements

- Add PHP language support ([#2314](j178/prek#2314))
- Add freeze option to update settings ([#2323](j178/prek#2323))
- Add tag filters to update configuration ([#2354](j178/prek#2354))
- Identify 'mts' and 'cts' as TypeScript files ([#2209](j178/prek#2209))
- Publish Alpine Docker images ([#2352](j178/prek#2352))
- Support builtin and meta in try-repo ([#2350](j178/prek#2350))

### Bug fixes

- Fix Python discovery order ([#2348](j178/prek#2348))
- Fix Windows progress rendering ([#2328](j178/prek#2328))
- Preserve configured repo values for updates ([#2324](j178/prek#2324))
- Scope synthetic `GIT_WORK_TREE` to git commands ([#2356](j178/prek#2356))

### Documentation

- Expand common workflows guide ([#2351](j178/prek#2351))

### Contributors

- @​j178

## Install prek 0.4.10

### Install prebuilt binaries via shell script

```sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.10/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.10/prek-installer.ps1 | iex"
```

### Install prebuilt binaries via Homebrew

```sh
brew install prek
```

## Download prek 0.4.10

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

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

### v0.2.35

### Added

- **cli**: honor --deny-config-warnings on the stdin path ([0f93ca5](rvben/rumdl@0f93ca5))
- **cli**: make --deny-config-warnings cover inline disable-comment rule names ([96d75f5](rvben/rumdl@96d75f5))
- **cli**: add --deny-config-warnings for config-file and CLI-flag problems ([5045daf](rvben/rumdl@5045daf))
- **reflow**: support breaking within emphasis spans ([2e8bded](rvben/rumdl@2e8bded))

### Fixed

- **reflow**: preserve non-breaking spaces and the space before French double punctuation ([f66021f](rvben/rumdl@f66021f))
- **cli**: walk directory arguments even when file paths are also passed ([d058273](rvben/rumdl@d058273))
- **lsp**: honor line anchors in goto-definition ([17a21e7](rvben/rumdl@17a21e7))
- **md077**: attribute middle-level continuation lines to their own list item ([c73763b](rvben/rumdl@c73763b))

## Downloads

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

### v0.2.36

### Added

- **code-block-tools**: add shuck:format as a built-in shell formatter ([5b23261](rvben/rumdl@5b23261))

### Fixed

- **wasm**: stop double-converting already-character-based columns ([4178cdf](rvben/rumdl@4178cdf))
- **tests**: resolve String addition compilation errors under Rust 1.96 (#737) ([38f36cf](rvben/rumdl@38f36cf))

## Downloads

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

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

### 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

</details>
<details>
<summary>uv: `0.11.28` → `0.11.29` (astral-sh/uv)</summary>

### 0.11.29

## Release Notes

Released on 2026-07-15.

### Python

- Use gzip-compressed artifacts for PyPy downloads ([#20265](astral-sh/uv#20265))

### Enhancements

- Add JSON output to `uv tree` ([#19978](astral-sh/uv#19978))
- Add CUDA 13.2 as a supported PyTorch backend ([#20267](astral-sh/uv#20267))
- Prefer local artifacts over URLs when installing from `pylock.toml` ([#20393](astral-sh/uv#20393))
- Clarify diagnostics for unsatisfiable direct requirement ranges ([#20227](astral-sh/uv#20227))
- Include the selected project name in missing-extra errors ([#20358](astral-sh/uv#20358))

### Preview features

- Preserve extras and dependency-group conflict context when selecting locked project tools ([#20078](astral-sh/uv#20078))
- Split OSV audit queries that exceed the service's 1,000-package limit ([#20398](astral-sh/uv#20398))
- Apply OSV fixed-version information only to the matching package and ecosystem ([#20399](astral-sh/uv#20399))
- Skip the virtualenv distutils monkeypatch on Python 3.10 and later ([#20222](astral-sh/uv#20222))
- Report invalid `uv audit --service-url` values instead of panicking ([#20374](astral-sh/uv#20374))
- Include preview settings in the published SchemaStore schema ([#20304](astral-sh/uv#20304))

### Performance

- Reduce resolver work by widening selected versions across ranges without other known candidates ([#20115](astral-sh/uv#20115))
- Defer client and build setup for no-op `uv sync` operations ([#20364](astral-sh/uv#20364))
- Reuse workspace discovery during frozen syncs ([#20363](astral-sh/uv#20363))
- Reuse workspace discovery after resolving settings ([#20356](http… (truncated)

</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 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.2.0` → `1.2.3` | `1.2.0` → `1.2.3` |

</details>

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

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

### 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

</details>

</details>

Modified files:
- `.mise.toml`
jylenhof pushed a commit to jylenhof/github-actions-resources 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.2.0` → `1.2.3` | `1.2.0` → `1.2.3` |

</details>

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

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

### 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

</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

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants