Commit ce48c74
authored
chore(deps): bump the jsonschema group with 2 updates (#951)
Updates the requirements on
[jsonschema](https://github.com/Stranger6667/jsonschema) and
[referencing](https://github.com/Stranger6667/jsonschema) to permit the
latest version.
Updates `jsonschema` to 0.41.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Stranger6667/jsonschema/releases">jsonschema's
releases</a>.</em></p>
<blockquote>
<h2>[Python] Release 0.41.0</h2>
<h3>Changed</h3>
<ul>
<li>Update <code>pyo3</code> to <code>0.28</code>.</li>
<li>Remove unused <code>pythonize</code> dependency.</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Replace regex-based <code>uri-template</code> format validation with
a hand-rolled RFC 6570 parser.</li>
<li>Specialize <code>items</code> keyword for simple type schemas
(<code>{"type": "string"}</code>,
<code>{"type": "number"}</code>, etc.) to eliminate
dynamic dispatch overhead.</li>
<li>Precompute regex matches on known properties.</li>
<li>Faster <code>unevaluatedProperties</code> validation via O(1)
property lookup and short-circuit <code>oneOf</code> evaluation.</li>
<li>Use HashMap for large set of properties.</li>
<li>Lower HashMap threshold from 40 to 15 properties for faster property
lookups.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Stranger6667/jsonschema/blob/master/CHANGELOG.md">jsonschema's
changelog</a>.</em></p>
<blockquote>
<h2>[0.41.0] - 2026-02-04</h2>
<h3>Performance</h3>
<ul>
<li>Replace regex-based <code>uri-template</code> format validation with
a hand-rolled RFC 6570 parser.</li>
<li>Specialize <code>items</code> keyword for simple type schemas
(<code>{"type": "string"}</code>,
<code>{"type": "number"}</code>, etc.) to eliminate
dynamic dispatch overhead.</li>
<li>Precompute regex matches on known properties.</li>
<li>Faster <code>unevaluatedProperties</code> validation via O(1)
property lookup and short-circuit <code>oneOf</code> evaluation.</li>
<li>Use HashMap for large set of properties.</li>
<li>Lower HashMap threshold from 40 to 15 properties for faster property
lookups.</li>
</ul>
<h2>[0.40.2] - 2026-01-30</h2>
<h3>Changed</h3>
<ul>
<li>Exclude internal <code>tracker</code> field from
<code>ValidationError</code> Debug output.</li>
<li>Switch HTTP client TLS crypto backend from <code>aws-lc-rs</code> to
<code>ring</code> to simplify building from source on some Linux
distributions. <a
href="https://redirect.github.com/Stranger6667/jsonschema/issues/957">#957</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li><code>type: integer</code> validation in Draft 4 now correctly
accepts large integers outside the i64/u64 range when
<code>arbitrary-precision</code> feature is enabled.</li>
</ul>
<h2>[0.40.1] - 2026-01-30</h2>
<h3>Changed</h3>
<ul>
<li><code>ValidationErrorKind::Custom</code> now includes a
<code>keyword</code> field containing the custom keyword name.</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Faster validation via cost-based keyword ordering.</li>
<li>Faster <code>patternProperties</code> for simple prefix patterns
(e.g., <code>^x-</code>).</li>
</ul>
<h2>[0.40.0] - 2026-01-18</h2>
<h3>Added</h3>
<ul>
<li><code>HttpOptions</code> and
<code>ValidationOptions::with_http_options()</code> for configuring HTTP
client behavior (timeouts, TLS verification, custom CA certificates)
when fetching external schemas.</li>
<li><strong>CLI</strong>: <code>--timeout</code>,
<code>--connect-timeout</code>, <code>--insecure</code>, and
<code>--cacert</code> flags for HTTP configuration.</li>
</ul>
<h2>[0.39.0] - 2026-01-16</h2>
<h3>Added</h3>
<ul>
<li><code>ValidationError::evaluation_path()</code> for the dynamic path
including <code>$ref</code> traversals.</li>
</ul>
<h3>Changed</h3>
<ul>
<li><strong>BREAKING</strong>: Simplified custom keyword API -
<code>Keyword::validate</code> no longer receives path parameters, and
<code>ValidationError::custom</code> only takes a message.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/008405d2016b7592df4898f84564414962e8e982"><code>008405d</code></a>
chore(rust): Release 0.41.0</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/e172a831f5990ef48a1eb809b3ca06b7d77f0224"><code>e172a83</code></a>
docs: Update benchmarks</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/7bd9654c6894d254f86622c462bc55ce6889d7f1"><code>7bd9654</code></a>
perf: Avoid re-building <code>SchemaNode</code> during recursive
reference validation</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/71c508b3a4baa83155b2a119ce28a5b94177fdcb"><code>71c508b</code></a>
perf: Lower HashMap threshold from 40 to 15 properties for faster
property lo...</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/258cc95a47f0762f2e8977c4c8d6d8adb7637c63"><code>258cc95</code></a>
perf: Replace regex-based <code>uri-template</code> format validation
with a hand-rolled...</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/1954c2c8a34740e3e8fbb02cc1f874c5a6a36099"><code>1954c2c</code></a>
build(deps): bump crates/jsonschema-referencing/tests/suite</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/e142095fd8987f9c2276bf2f85c68af9b3d0c5ed"><code>e142095</code></a>
docs: Update benchmarks</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/6e4cf58b3183f5ba095e99ba181e86831f691ad5"><code>6e4cf58</code></a>
perf: Fuse required with properties validator</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/a741634e35d0a8e1ec53f34471c907d1b230e2e0"><code>a741634</code></a>
perf: Fuse <code>required</code> with <code>properties</code>
validator</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/08f7b6b36892e0bf04ef97be38399634382ac251"><code>08f7b6b</code></a>
perf: Specialize <code>items</code></li>
<li>Additional commits viewable in <a
href="https://github.com/Stranger6667/jsonschema/compare/rust-v0.40.0...rust-v0.41.0">compare
view</a></li>
</ul>
</details>
<br />
Updates `referencing` to 0.41.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/Stranger6667/jsonschema/releases">referencing's
releases</a>.</em></p>
<blockquote>
<h2>[Python] Release 0.41.0</h2>
<h3>Changed</h3>
<ul>
<li>Update <code>pyo3</code> to <code>0.28</code>.</li>
<li>Remove unused <code>pythonize</code> dependency.</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Replace regex-based <code>uri-template</code> format validation with
a hand-rolled RFC 6570 parser.</li>
<li>Specialize <code>items</code> keyword for simple type schemas
(<code>{"type": "string"}</code>,
<code>{"type": "number"}</code>, etc.) to eliminate
dynamic dispatch overhead.</li>
<li>Precompute regex matches on known properties.</li>
<li>Faster <code>unevaluatedProperties</code> validation via O(1)
property lookup and short-circuit <code>oneOf</code> evaluation.</li>
<li>Use HashMap for large set of properties.</li>
<li>Lower HashMap threshold from 40 to 15 properties for faster property
lookups.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/Stranger6667/jsonschema/blob/master/CHANGELOG.md">referencing's
changelog</a>.</em></p>
<blockquote>
<h2>[0.41.0] - 2026-02-04</h2>
<h3>Performance</h3>
<ul>
<li>Replace regex-based <code>uri-template</code> format validation with
a hand-rolled RFC 6570 parser.</li>
<li>Specialize <code>items</code> keyword for simple type schemas
(<code>{"type": "string"}</code>,
<code>{"type": "number"}</code>, etc.) to eliminate
dynamic dispatch overhead.</li>
<li>Precompute regex matches on known properties.</li>
<li>Faster <code>unevaluatedProperties</code> validation via O(1)
property lookup and short-circuit <code>oneOf</code> evaluation.</li>
<li>Use HashMap for large set of properties.</li>
<li>Lower HashMap threshold from 40 to 15 properties for faster property
lookups.</li>
</ul>
<h2>[0.40.2] - 2026-01-30</h2>
<h3>Changed</h3>
<ul>
<li>Exclude internal <code>tracker</code> field from
<code>ValidationError</code> Debug output.</li>
<li>Switch HTTP client TLS crypto backend from <code>aws-lc-rs</code> to
<code>ring</code> to simplify building from source on some Linux
distributions. <a
href="https://redirect.github.com/Stranger6667/jsonschema/issues/957">#957</a></li>
</ul>
<h3>Fixed</h3>
<ul>
<li><code>type: integer</code> validation in Draft 4 now correctly
accepts large integers outside the i64/u64 range when
<code>arbitrary-precision</code> feature is enabled.</li>
</ul>
<h2>[0.40.1] - 2026-01-30</h2>
<h3>Changed</h3>
<ul>
<li><code>ValidationErrorKind::Custom</code> now includes a
<code>keyword</code> field containing the custom keyword name.</li>
</ul>
<h3>Performance</h3>
<ul>
<li>Faster validation via cost-based keyword ordering.</li>
<li>Faster <code>patternProperties</code> for simple prefix patterns
(e.g., <code>^x-</code>).</li>
</ul>
<h2>[0.40.0] - 2026-01-18</h2>
<h3>Added</h3>
<ul>
<li><code>HttpOptions</code> and
<code>ValidationOptions::with_http_options()</code> for configuring HTTP
client behavior (timeouts, TLS verification, custom CA certificates)
when fetching external schemas.</li>
<li><strong>CLI</strong>: <code>--timeout</code>,
<code>--connect-timeout</code>, <code>--insecure</code>, and
<code>--cacert</code> flags for HTTP configuration.</li>
</ul>
<h2>[0.39.0] - 2026-01-16</h2>
<h3>Added</h3>
<ul>
<li><code>ValidationError::evaluation_path()</code> for the dynamic path
including <code>$ref</code> traversals.</li>
</ul>
<h3>Changed</h3>
<ul>
<li><strong>BREAKING</strong>: Simplified custom keyword API -
<code>Keyword::validate</code> no longer receives path parameters, and
<code>ValidationError::custom</code> only takes a message.</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/008405d2016b7592df4898f84564414962e8e982"><code>008405d</code></a>
chore(rust): Release 0.41.0</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/e172a831f5990ef48a1eb809b3ca06b7d77f0224"><code>e172a83</code></a>
docs: Update benchmarks</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/7bd9654c6894d254f86622c462bc55ce6889d7f1"><code>7bd9654</code></a>
perf: Avoid re-building <code>SchemaNode</code> during recursive
reference validation</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/71c508b3a4baa83155b2a119ce28a5b94177fdcb"><code>71c508b</code></a>
perf: Lower HashMap threshold from 40 to 15 properties for faster
property lo...</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/258cc95a47f0762f2e8977c4c8d6d8adb7637c63"><code>258cc95</code></a>
perf: Replace regex-based <code>uri-template</code> format validation
with a hand-rolled...</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/1954c2c8a34740e3e8fbb02cc1f874c5a6a36099"><code>1954c2c</code></a>
build(deps): bump crates/jsonschema-referencing/tests/suite</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/e142095fd8987f9c2276bf2f85c68af9b3d0c5ed"><code>e142095</code></a>
docs: Update benchmarks</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/6e4cf58b3183f5ba095e99ba181e86831f691ad5"><code>6e4cf58</code></a>
perf: Fuse required with properties validator</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/a741634e35d0a8e1ec53f34471c907d1b230e2e0"><code>a741634</code></a>
perf: Fuse <code>required</code> with <code>properties</code>
validator</li>
<li><a
href="https://github.com/Stranger6667/jsonschema/commit/08f7b6b36892e0bf04ef97be38399634382ac251"><code>08f7b6b</code></a>
perf: Specialize <code>items</code></li>
<li>Additional commits viewable in <a
href="https://github.com/Stranger6667/jsonschema/compare/rust-v0.40.0...rust-v0.41.0">compare
view</a></li>
</ul>
</details>
<br />
Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 3087a34 commit ce48c74
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
69 | | - | |
| 69 | + | |
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
80 | | - | |
| 80 | + | |
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
| |||
0 commit comments