👨🔧 prevent onBlur for readOnly fields (#12971)
🐞 fix #12988 sync two defaultValues after reset with new defaultValues (#12990)
🐞 fix: do not override prototype of data in cloneObject (#12985)
🐞 fix field name type conflict in nested FieldErrors (#12972)
The first minor version since the introduction of Zod 4 back in May. This version contains a number of features that barely missed the cut for the 4.0 release. With Zod 4 stable and widely adopted, there's more time to resume feature development.
Codecs
This is the flagship feature of this release. Codecs are a new API & schema type that encapsulates a bi-directional transformation. It's a huge missing piece in Zod that's finally filled, and it unlocks some totally new ways to use Zod.
const stringToDate = z.codec(
z.iso.datetime(), // input schema: ISO date string
z.date(), // output schema: Date object
{
decode: (isoString) => new Date(isoString),
encode: (date) => date.toISOString(),
}
);
New top-level functions are added for processing inputs in the forward direction ("decoding") and backward direction ("encoding").
stringToDate.decode("2025-08-21T20:59:45.500Z")
// => Date
Note — For bundle size reasons, these new methods have not added to Zod Mini schemas. Instead, this functionality is available via equivalent top-level functions.
// equivalent at runtime
z.decode(stringToDate, "2024-01-15T10:30:00.000Z");
z.encode(stringToDate, new Date());
.parse() vs .decode()
Both .parse() and decode() process data in the "forward" direction. They behave identically at runtime.
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 commands and options
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 merge will merge this PR after your CI passes on it
@dependabot squash and merge will squash and merge this PR after your CI passes on it
@dependabot cancel merge will cancel a previously requested merge and block automerging
@dependabot reopen will reopen this PR if it is closed
@dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
@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
Bumps the prod-minor-updates group with 10 updates:
| Package | From | To |
| --- | --- | --- |
| [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.1` |
| [@uiw/codemirror-extensions-hyper-link](https://github.com/uiwjs/react-codemirror) | `4.24.1` | `4.25.1` |
| [@uiw/codemirror-extensions-langs](https://github.com/uiwjs/react-codemirror) | `4.24.1` | `4.25.1` |
| [@uiw/codemirror-themes](https://github.com/uiwjs/react-codemirror) | `4.24.1` | `4.25.1` |
| [@uiw/react-codemirror](https://github.com/uiwjs/react-codemirror) | `4.24.1` | `4.25.1` |
| [axios](https://github.com/axios/axios) | `1.10.0` | `1.11.0` |
| [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `0.525.0` | `0.541.0` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.62.0` |
| [ssh2](https://github.com/mscdex/ssh2) | `1.16.0` | `1.17.0` |
| [zod](https://github.com/colinhacks/zod) | `4.0.5` | `4.1.1` |
Updates `@hookform/resolvers` from 5.1.1 to 5.2.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/react-hook-form/resolvers/releases"><code>@hookform/resolvers</code>'s releases</a>.</em></p>
<blockquote>
<h2>v5.2.1</h2>
<h2><a href="https://github.com/react-hook-form/resolvers/compare/v5.2.0...v5.2.1">5.2.1</a> (2025-07-29)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>discriminated union for zod v4 mini (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/784">#784</a>) (<a href="https://github.com/react-hook-form/resolvers/commit/49a0d7ba939f58e04ca2d01a98949fc70f50b53e">49a0d7b</a>)</li>
<li>zod v4 peer deps (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/798">#798</a>) (<a href="https://github.com/react-hook-form/resolvers/commit/2d28e6aca611b042e07da0ae4cf448adbe78e1f3">2d28e6a</a>)</li>
<li><strong>zod:</strong> fix output type for Zod 4 resolver (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/801">#801</a>) (<a href="https://github.com/react-hook-form/resolvers/commit/bc09647a5eec21d07097a8ccf89fb52ebf50a1ec">bc09647</a>)</li>
</ul>
<h2>v5.2.0</h2>
<h1><a href="https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.0">5.2.0</a> (2025-07-25)</h1>
<h3>Features</h3>
<ul>
<li><strong>ajv:</strong> add ajv-formats for ajvResolver (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/797">#797</a>) (<a href="https://github.com/react-hook-form/resolvers/commit/f04003972a3cc7875beb073ff88c942deb6a2086">f040039</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/react-hook-form/resolvers/commit/49a0d7ba939f58e04ca2d01a98949fc70f50b53e"><code>49a0d7b</code></a> fix: discriminated union for zod v4 mini (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/784">#784</a>)</li>
<li><a href="https://github.com/react-hook-form/resolvers/commit/bc09647a5eec21d07097a8ccf89fb52ebf50a1ec"><code>bc09647</code></a> fix(zod): fix output type for Zod 4 resolver (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/801">#801</a>)</li>
<li><a href="https://github.com/react-hook-form/resolvers/commit/2d28e6aca611b042e07da0ae4cf448adbe78e1f3"><code>2d28e6a</code></a> fix: zod v4 peer deps (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/798">#798</a>)</li>
<li><a href="https://github.com/react-hook-form/resolvers/commit/f04003972a3cc7875beb073ff88c942deb6a2086"><code>f040039</code></a> feat(ajv): add ajv-formats for ajvResolver (<a href="https://redirect.github.com/react-hook-form/resolvers/issues/797">#797</a>)</li>
<li>See full diff in <a href="https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.1">compare view</a></li>
</ul>
</details>
<br />
Updates `@uiw/codemirror-extensions-hyper-link` from 4.24.1 to 4.25.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uiwjs/react-codemirror/releases"><code>@uiw/codemirror-extensions-hyper-link</code>'s releases</a>.</em></p>
<blockquote>
<h2>v4.25.1</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.1: <a href="https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html">https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1">https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>💄 chore: update peerDependencies data. 6a45175 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<h2>v4.25.0</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.0: <a href="https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html">https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0">https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>📖 doc: Update README.md 98acfd8 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>🐞 fix(langs): generate syntax highlighting from file extensions. b46ed3e <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💄 chore: remove example. 250ec77 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💢 ci: update workflows config. bc3693a <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<p>The package <a href="https://github.com/uiwjs/react-codemirror/tree/master/extensions/langs"><code>@uiw/codemirror-extensions-langs</code></a> returns syntax highlighting extensions based on file extensions.</p>
<pre lang="diff"><code>import { loadLanguage, langNames, langs } from '@uiw/codemirror-extensions-langs';
<ul>
<li>langs.js();</li>
</ul>
<ul>
<li>langs.javascript();<br />
</code></pre></li>
</ul>
<h2>v4.24.2</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.24.2: <a href="https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html">https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2">https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>🌟 feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a> 4876309 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/c09d8d231da1edf91a05fd078f23ff7e5a932efc"><code>c09d8d2</code></a> released v4.25.1</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/6a45175014341324e86126d2509c2c1cb1997384"><code>6a45175</code></a> chore: update peerDependencies data.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/bc3693af920736ca9a68f4b54b8b16483653da46"><code>bc3693a</code></a> ci: update workflows config.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/250ec776b729f298c4089a7c94209f3d10fa94fb"><code>250ec77</code></a> chore: remove example.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/9a27bfefd7b8d3b01583e8af62d26b3074432995"><code>9a27bfe</code></a> released v4.25.0</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/b46ed3e2f0f5a2728a0c9aee6bbf80ecd14c6140"><code>b46ed3e</code></a> fix(langs): generate syntax highlighting from file extensions.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/98acfd896d36873efcfd07de9b8e8ffdb2d8c632"><code>98acfd8</code></a> doc: Update README.md</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/082c85aa4ad302e3516230de66c41f6d3ec05c2e"><code>082c85a</code></a> released v4.24.2 <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/487630915c3ed222998fb0707464feeca10ff374"><code>4876309</code></a> feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li>See full diff in <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.25.1">compare view</a></li>
</ul>
</details>
<br />
Updates `@uiw/codemirror-extensions-langs` from 4.24.1 to 4.25.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uiwjs/react-codemirror/releases"><code>@uiw/codemirror-extensions-langs</code>'s releases</a>.</em></p>
<blockquote>
<h2>v4.25.1</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.1: <a href="https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html">https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1">https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>💄 chore: update peerDependencies data. 6a45175 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<h2>v4.25.0</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.0: <a href="https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html">https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0">https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>📖 doc: Update README.md 98acfd8 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>🐞 fix(langs): generate syntax highlighting from file extensions. b46ed3e <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💄 chore: remove example. 250ec77 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💢 ci: update workflows config. bc3693a <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<p>The package <a href="https://github.com/uiwjs/react-codemirror/tree/master/extensions/langs"><code>@uiw/codemirror-extensions-langs</code></a> returns syntax highlighting extensions based on file extensions.</p>
<pre lang="diff"><code>import { loadLanguage, langNames, langs } from '@uiw/codemirror-extensions-langs';
<ul>
<li>langs.js();</li>
</ul>
<ul>
<li>langs.javascript();<br />
</code></pre></li>
</ul>
<h2>v4.24.2</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.24.2: <a href="https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html">https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2">https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>🌟 feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a> 4876309 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/c09d8d231da1edf91a05fd078f23ff7e5a932efc"><code>c09d8d2</code></a> released v4.25.1</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/6a45175014341324e86126d2509c2c1cb1997384"><code>6a45175</code></a> chore: update peerDependencies data.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/bc3693af920736ca9a68f4b54b8b16483653da46"><code>bc3693a</code></a> ci: update workflows config.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/250ec776b729f298c4089a7c94209f3d10fa94fb"><code>250ec77</code></a> chore: remove example.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/9a27bfefd7b8d3b01583e8af62d26b3074432995"><code>9a27bfe</code></a> released v4.25.0</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/b46ed3e2f0f5a2728a0c9aee6bbf80ecd14c6140"><code>b46ed3e</code></a> fix(langs): generate syntax highlighting from file extensions.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/98acfd896d36873efcfd07de9b8e8ffdb2d8c632"><code>98acfd8</code></a> doc: Update README.md</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/082c85aa4ad302e3516230de66c41f6d3ec05c2e"><code>082c85a</code></a> released v4.24.2 <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/487630915c3ed222998fb0707464feeca10ff374"><code>4876309</code></a> feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li>See full diff in <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.25.1">compare view</a></li>
</ul>
</details>
<br />
Updates `@uiw/codemirror-themes` from 4.24.1 to 4.25.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uiwjs/react-codemirror/releases"><code>@uiw/codemirror-themes</code>'s releases</a>.</em></p>
<blockquote>
<h2>v4.25.1</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.1: <a href="https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html">https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1">https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>💄 chore: update peerDependencies data. 6a45175 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<h2>v4.25.0</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.0: <a href="https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html">https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0">https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>📖 doc: Update README.md 98acfd8 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>🐞 fix(langs): generate syntax highlighting from file extensions. b46ed3e <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💄 chore: remove example. 250ec77 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💢 ci: update workflows config. bc3693a <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<p>The package <a href="https://github.com/uiwjs/react-codemirror/tree/master/extensions/langs"><code>@uiw/codemirror-extensions-langs</code></a> returns syntax highlighting extensions based on file extensions.</p>
<pre lang="diff"><code>import { loadLanguage, langNames, langs } from '@uiw/codemirror-extensions-langs';
<ul>
<li>langs.js();</li>
</ul>
<ul>
<li>langs.javascript();<br />
</code></pre></li>
</ul>
<h2>v4.24.2</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.24.2: <a href="https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html">https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2">https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>🌟 feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a> 4876309 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/c09d8d231da1edf91a05fd078f23ff7e5a932efc"><code>c09d8d2</code></a> released v4.25.1</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/6a45175014341324e86126d2509c2c1cb1997384"><code>6a45175</code></a> chore: update peerDependencies data.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/bc3693af920736ca9a68f4b54b8b16483653da46"><code>bc3693a</code></a> ci: update workflows config.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/250ec776b729f298c4089a7c94209f3d10fa94fb"><code>250ec77</code></a> chore: remove example.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/9a27bfefd7b8d3b01583e8af62d26b3074432995"><code>9a27bfe</code></a> released v4.25.0</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/b46ed3e2f0f5a2728a0c9aee6bbf80ecd14c6140"><code>b46ed3e</code></a> fix(langs): generate syntax highlighting from file extensions.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/98acfd896d36873efcfd07de9b8e8ffdb2d8c632"><code>98acfd8</code></a> doc: Update README.md</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/082c85aa4ad302e3516230de66c41f6d3ec05c2e"><code>082c85a</code></a> released v4.24.2 <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/487630915c3ed222998fb0707464feeca10ff374"><code>4876309</code></a> feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li>See full diff in <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.25.1">compare view</a></li>
</ul>
</details>
<br />
Updates `@uiw/react-codemirror` from 4.24.1 to 4.25.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/uiwjs/react-codemirror/releases"><code>@uiw/react-codemirror</code>'s releases</a>.</em></p>
<blockquote>
<h2>v4.25.1</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.1: <a href="https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html">https://raw.githack.com/uiwjs/react-codemirror/0eebca2/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1">https://github.com/uiwjs/react-codemirror/compare/v4.25.0...v4.25.1</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>💄 chore: update peerDependencies data. 6a45175 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<h2>v4.25.0</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.25.0: <a href="https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html">https://raw.githack.com/uiwjs/react-codemirror/b6a0ef9/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0">https://github.com/uiwjs/react-codemirror/compare/v4.24.2...v4.25.0</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>📖 doc: Update README.md 98acfd8 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>🐞 fix(langs): generate syntax highlighting from file extensions. b46ed3e <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💄 chore: remove example. 250ec77 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
<li>💢 ci: update workflows config. bc3693a <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
<p>The package <a href="https://github.com/uiwjs/react-codemirror/tree/master/extensions/langs"><code>@uiw/codemirror-extensions-langs</code></a> returns syntax highlighting extensions based on file extensions.</p>
<pre lang="diff"><code>import { loadLanguage, langNames, langs } from '@uiw/codemirror-extensions-langs';
<ul>
<li>langs.js();</li>
</ul>
<ul>
<li>langs.javascript();<br />
</code></pre></li>
</ul>
<h2>v4.24.2</h2>
<p><a href="https://jaywcjlove.github.io/#/sponsor"><img src="https://img.shields.io/badge/Buy%20me%20a%20coffee-048754?logo=buymeacoffee" alt="Buy me a coffee" /></a> <a href="https://uiwjs.github.io/npm-unpkg/#/pkg/@uiw/[email protected]/file/README.md"><img src="https://img.shields.io/badge/Open%20in-unpkg-blue" alt="" /></a></p>
<p>Documentation v4.24.2: <a href="https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html">https://raw.githack.com/uiwjs/react-codemirror/a461727/index.html</a><br />
Comparing Changes: <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2">https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.24.2</a></p>
<pre lang="shell"><code>npm i @uiw/[email protected]
</code></pre>
<ul>
<li>🌟 feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a> 4876309 <a href="https://github.com/jaywcjlove"><code>@jaywcjlove</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/c09d8d231da1edf91a05fd078f23ff7e5a932efc"><code>c09d8d2</code></a> released v4.25.1</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/6a45175014341324e86126d2509c2c1cb1997384"><code>6a45175</code></a> chore: update peerDependencies data.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/bc3693af920736ca9a68f4b54b8b16483653da46"><code>bc3693a</code></a> ci: update workflows config.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/250ec776b729f298c4089a7c94209f3d10fa94fb"><code>250ec77</code></a> chore: remove example.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/9a27bfefd7b8d3b01583e8af62d26b3074432995"><code>9a27bfe</code></a> released v4.25.0</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/b46ed3e2f0f5a2728a0c9aee6bbf80ecd14c6140"><code>b46ed3e</code></a> fix(langs): generate syntax highlighting from file extensions.</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/98acfd896d36873efcfd07de9b8e8ffdb2d8c632"><code>98acfd8</code></a> doc: Update README.md</li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/082c85aa4ad302e3516230de66c41f6d3ec05c2e"><code>082c85a</code></a> released v4.24.2 <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li><a href="https://github.com/uiwjs/react-codemirror/commit/487630915c3ed222998fb0707464feeca10ff374"><code>4876309</code></a> feat: bump React peer dependency to 17+ <a href="https://redirect.github.com/uiwjs/react-codemirror/issues/742">#742</a></li>
<li>See full diff in <a href="https://github.com/uiwjs/react-codemirror/compare/v4.24.1...v4.25.1">compare view</a></li>
</ul>
</details>
<br />
Updates `axios` from 1.10.0 to 1.11.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/releases">axios's releases</a>.</em></p>
<blockquote>
<h2>Release v1.11.0</h2>
<h2>Release notes:</h2>
<h3>Bug Fixes</h3>
<ul>
<li>form-data npm pakcage (<a href="https://redirect.github.com/axios/axios/issues/6970">#6970</a>) (<a href="https://github.com/axios/axios/commit/e72c193722530db538b19e5ddaaa4544d226b253">e72c193</a>)</li>
<li>prevent RangeError when using large Buffers (<a href="https://redirect.github.com/axios/axios/issues/6961">#6961</a>) (<a href="https://github.com/axios/axios/commit/a2214ca1bc60540baf2c80573cea3a0ff91ba9d1">a2214ca</a>)</li>
<li><strong>types:</strong> resolve type discrepancies between ESM and CJS TypeScript declaration files (<a href="https://redirect.github.com/axios/axios/issues/6956">#6956</a>) (<a href="https://github.com/axios/axios/commit/8517aa16f8d082fc1d5309c642220fa736159110">8517aa1</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/izzygld" title="+186/-93 ([#6970](https://github.com/axios/axios/issues/6970) )">izzy goldman</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/manishsahanidev" title="+70/-0 ([#6961](https://github.com/axios/axios/issues/6961) )">Manish Sahani</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/noritaka1166" title="+12/-10 ([#6938](https://github.com/axios/axios/issues/6938) [#6939](https://github.com/axios/axios/issues/6939) )">Noritaka Kobayashi</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jrnail23" title="+13/-2 ([#6956](https://github.com/axios/axios/issues/6956) )">James Nail</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Tejaswi1305" title="+1/-1 ([#6894](https://github.com/axios/axios/issues/6894) )">Tejaswi1305</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/axios/axios/blob/v1.x/CHANGELOG.md">axios's changelog</a>.</em></p>
<blockquote>
<h1><a href="https://github.com/axios/axios/compare/v1.10.0...v1.11.0">1.11.0</a> (2025-07-22)</h1>
<h3>Bug Fixes</h3>
<ul>
<li>form-data npm pakcage (<a href="https://redirect.github.com/axios/axios/issues/6970">#6970</a>) (<a href="https://github.com/axios/axios/commit/e72c193722530db538b19e5ddaaa4544d226b253">e72c193</a>)</li>
<li>prevent RangeError when using large Buffers (<a href="https://redirect.github.com/axios/axios/issues/6961">#6961</a>) (<a href="https://github.com/axios/axios/commit/a2214ca1bc60540baf2c80573cea3a0ff91ba9d1">a2214ca</a>)</li>
<li><strong>types:</strong> resolve type discrepancies between ESM and CJS TypeScript declaration files (<a href="https://redirect.github.com/axios/axios/issues/6956">#6956</a>) (<a href="https://github.com/axios/axios/commit/8517aa16f8d082fc1d5309c642220fa736159110">8517aa1</a>)</li>
</ul>
<h3>Contributors to this release</h3>
<ul>
<li><!-- raw HTML omitted --> <a href="https://github.com/izzygld" title="+186/-93 ([#6970](https://github.com/axios/axios/issues/6970) )">izzy goldman</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/manishsahanidev" title="+70/-0 ([#6961](https://github.com/axios/axios/issues/6961) )">Manish Sahani</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/noritaka1166" title="+12/-10 ([#6938](https://github.com/axios/axios/issues/6938) [#6939](https://github.com/axios/axios/issues/6939) )">Noritaka Kobayashi</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/jrnail23" title="+13/-2 ([#6956](https://github.com/axios/axios/issues/6956) )">James Nail</a></li>
<li><!-- raw HTML omitted --> <a href="https://github.com/Tejaswi1305" title="+1/-1 ([#6894](https://github.com/axios/axios/issues/6894) )">Tejaswi1305</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/axios/axios/commit/b76c4ac6f871141dd011a21f3b7ca4e66bfc33ae"><code>b76c4ac</code></a> chore(release): v1.11.0 (<a href="https://redirect.github.com/axios/axios/issues/6974">#6974</a>)</li>
<li><a href="https://github.com/axios/axios/commit/e72c193722530db538b19e5ddaaa4544d226b253"><code>e72c193</code></a> fix: form-data npm pakcage (<a href="https://redirect.github.com/axios/axios/issues/6970">#6970</a>)</li>
<li><a href="https://github.com/axios/axios/commit/8517aa16f8d082fc1d5309c642220fa736159110"><code>8517aa1</code></a> fix(types): resolve type discrepancies between ESM and CJS TypeScript declara...</li>
<li><a href="https://github.com/axios/axios/commit/a2214ca1bc60540baf2c80573cea3a0ff91ba9d1"><code>a2214ca</code></a> fix: prevent RangeError when using large Buffers (<a href="https://redirect.github.com/axios/axios/issues/6961">#6961</a>)</li>
<li><a href="https://github.com/axios/axios/commit/6161947d9d3496ae75909a2ded98fa43ecb7e572"><code>6161947</code></a> refactor: use spread operator instead of '.apply()' (<a href="https://redirect.github.com/axios/axios/issues/6938">#6938</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a1d16dd9c59af11abd687b42bbeab1d50d01654e"><code>a1d16dd</code></a> refactor: use an object spread instead of Object.assign (<a href="https://redirect.github.com/axios/axios/issues/6939">#6939</a>)</li>
<li><a href="https://github.com/axios/axios/commit/07183cd1496737dcd10d7241b66fa6d6a55c2aed"><code>07183cd</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/6952">#6952</a>)</li>
<li><a href="https://github.com/axios/axios/commit/ef36347fb559383b04c755b07f1a8d11897fab7f"><code>ef36347</code></a> docs(CONTRIBUTING): update docs link for accuracy (<a href="https://redirect.github.com/axios/axios/issues/6894">#6894</a>)</li>
<li><a href="https://github.com/axios/axios/commit/b29bd6a64121f9e6b7c7026b96fbe64df3cf7e0b"><code>b29bd6a</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/6948">#6948</a>)</li>
<li><a href="https://github.com/axios/axios/commit/a406a93e2d99c3317596f02f3537f5457a2a80fd"><code>a406a93</code></a> chore(sponsor): update sponsor block (<a href="https://redirect.github.com/axios/axios/issues/6937">#6937</a>)</li>
<li>See full diff in <a href="https://github.com/axios/axios/compare/v1.10.0...v1.11.0">compare view</a></li>
</ul>
</details>
<br />
Updates `lucide-react` from 0.525.0 to 0.541.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/lucide-icons/lucide/releases">lucide-react's releases</a>.</em></p>
<blockquote>
<h2>Version 0.541.0</h2>
<h2>What's Changed</h2>
<ul>
<li>feat(packages/lucide): added support for providing a custom root element by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3543">lucide-icons/lucide#3543</a></li>
<li>fix(icons): optimized <code>chrome</code> icon & renamed to <code>chromium</code> by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3572">lucide-icons/lucide#3572</a></li>
<li>fix(icons): changed <code>wallpaper</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3566">lucide-icons/lucide#3566</a></li>
<li>fix(icons): optimized <code>cog</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3548">lucide-icons/lucide#3548</a></li>
<li>fix(icons): changed <code>building</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3510">lucide-icons/lucide#3510</a></li>
<li>feat(dpi-preview): add previous version for easier comparison by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3532">lucide-icons/lucide#3532</a></li>
<li>feat(icons): added 'panel-dashed' variants + update tags on existing icons by <a href="https://github.com/irvineacosta"><code>@irvineacosta</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3500">lucide-icons/lucide#3500</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.540.0...0.541.0">https://github.com/lucide-icons/lucide/compare/0.540.0...0.541.0</a></p>
<h2>Version 0.540.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(license): add full text of Feather license by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3530">lucide-icons/lucide#3530</a></li>
<li>fix(icons): changed <code>umbrella</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3490">lucide-icons/lucide#3490</a></li>
<li>docs(site): added official statement on brand logos in Lucide by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3541">lucide-icons/lucide#3541</a></li>
<li>fix(icons): changed <code>camera</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3539">lucide-icons/lucide#3539</a></li>
<li>feat(icons): added <code>rose</code> icon by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/1972">lucide-icons/lucide#1972</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.539.0...0.540.0">https://github.com/lucide-icons/lucide/compare/0.539.0...0.540.0</a></p>
<h2>Version 0.539.0</h2>
<h2>What's Changed</h2>
<ul>
<li>feat(icons): added <code>brick-wall-shield</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3476">lucide-icons/lucide#3476</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.538.0...0.539.0">https://github.com/lucide-icons/lucide/compare/0.538.0...0.539.0</a></p>
<h2>Version 0.538.0</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(icons): changed <code>apple</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3505">lucide-icons/lucide#3505</a></li>
<li>fix(icons): changed <code>store</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3501">lucide-icons/lucide#3501</a></li>
<li>fix(icons): changed <code>mic-off</code> icon by <a href="https://github.com/lieonlion"><code>@lieonlion</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2823">lucide-icons/lucide#2823</a></li>
<li>chore(deps): bump astro from 5.5.2 to 5.12.8 by <a href="https://github.com/dependabot"><code>@dependabot</code></a>[bot] in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3523">lucide-icons/lucide#3523</a></li>
<li>fix(icons): deprecate rail-symbol by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2862">lucide-icons/lucide#2862</a></li>
<li>feat(icons): added <code>kayak</code> icon by <a href="https://github.com/jpjacobpadilla"><code>@jpjacobpadilla</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3054">lucide-icons/lucide#3054</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/0.537.0...0.538.0">https://github.com/lucide-icons/lucide/compare/0.537.0...0.538.0</a></p>
<h2>Version 0.537.0</h2>
<h2>What's Changed</h2>
<ul>
<li>chore(metadata): Add tags to <code>x</code> icon by <a href="https://github.com/jamiemlaw"><code>@jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3341">lucide-icons/lucide#3341</a></li>
<li>docs: add rule against war/violence related imagery by <a href="https://github.com/jguddas"><code>@jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3506">lucide-icons/lucide#3506</a></li>
<li>fix(icons): changed <code>spade</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3502">lucide-icons/lucide#3502</a></li>
<li>fix(icons): changed <code>school</code> icon by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/2968">lucide-icons/lucide#2968</a></li>
<li>fix(site): fixes icon style customiser by <a href="https://github.com/karsa-mistmere"><code>@karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/3511">lucide-icons/lucide#3511</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/lucide-icons/lucide/commit/e71198d9b3e3db42c02e9006a61289a7766520f6"><code>e71198d</code></a> chore: icon alias improvements (<a href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2861">#2861</a>)</li>
<li>See full diff in <a href="https://github.com/lucide-icons/lucide/commits/0.541.0/packages/lucide-react">compare view</a></li>
</ul>
</details>
<br />
Updates `react-hook-form` from 7.60.0 to 7.62.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/releases">react-hook-form's releases</a>.</em></p>
<blockquote>
<h2>Version 7.62.0</h2>
<p>👨🔧 prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)
🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)
🐞 fix: do not override prototype of data in cloneObject (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)
🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</p>
<p>thanks to <a href="https://github.com/candymask0712"><code>@candymask0712</code></a>, <a href="https://github.com/Adityapradh"><code>@Adityapradh</code></a>, <a href="https://github.com/Ty3uK"><code>@Ty3uK</code></a> & <a href="https://github.com/kichikawa57"><code>@kichikawa57</code></a></p>
<h2>Version 7.61.1</h2>
<p>Revert "⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)"</p>
<h2>Version 7.61.0</h2>
<p>🧮 feat: compute prop for useWatch subscription (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12503">#12503</a>)</p>
<ul>
<li>subscribe to the entire form but only return updated value with certain condition</li>
</ul>
<pre lang="tsx"><code>type FormValue = {
test: string;
}
<p>const watchedValue = useWatch({<br />
control: methods.control,<br />
compute: (data: FormValue) => {<br />
if (data.test?.length) {<br />
return data.test;<br />
}</p>
<pre><code>return '';
</code></pre>
<p>},<br />
});<br />
</code></pre></p>
<ul>
<li>subscribe to a specific form value state</li>
</ul>
<pre lang="tsx"><code>type FormValue = {
test: string;
}
<p>const watchedValue = useWatch({<br />
control: methods.control,<br />
name: 'test',<br />
compute: (data: string) => {<br />
return data.length > 3 ? data : '';<br />
},<br />
});<br />
</code></pre></p>
<p>👨🔧 trigger watch callbacks in response to value changes only (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12945">#12945</a>)
🙏 track name with setValue subscription callbacks (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12946">#12946</a>)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/1b5a6748a83bbaf3deed4092ec631d6cda927bf7"><code>1b5a674</code></a> 7.62.0</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/6025100ea1449a97cc121ed016aedaaa031ac2d0"><code>6025100</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12988">#12988</a> sync two defaultValues after reset with new defaultValues (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12990">#12990</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/323cd416740ca7ad1d77389aee723274b24dffdb"><code>323cd41</code></a> 🐞 fix field name type conflict in nested FieldErrors (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12972">#12972</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/dac28d60e17e5916b4e3e8e4b4926393aac65159"><code>dac28d6</code></a> 👨🔧 fix: prevent onBlur for readOnly fields (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12971">#12971</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/642145a1baa9e75fa4f2274b10ade08658ab9537"><code>642145a</code></a> 🧪 test: add unit tests for convertToArrayPayload utility (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12967">#12967</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/15c03a553f4ec1abfbe399ccb824fefe1e0a1ffc"><code>15c03a5</code></a> 🐞 fix: do not override prototype of <code>data</code> in <code>cloneObject</code> (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12985">#12985</a>)</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/13465d93a1b4a173cbd9e98283341656a13f9cef"><code>13465d9</code></a> 7.61.1</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/4a7f371962f6af750af75e2309d649219696c592"><code>4a7f371</code></a> Revert "⌨️ fix: watch return type based on defaultValue (<a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12896">#12896</a>)"</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/343ac030cd00029c6aa0d245d01c6bb2646a303d"><code>343ac03</code></a> 7.61.0</li>
<li><a href="https://github.com/react-hook-form/react-hook-form/commit/3f4d24ce0734a5f573a77b701822b68d4c242203"><code>3f4d24c</code></a> 🐞 fix <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12959">#12959</a> subscribe with latest defaultValues <a href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12961">#12961</a></li>
<li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.62.0">compare view</a></li>
</ul>
</details>
<br />
Updates `ssh2` from 1.16.0 to 1.17.0
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/mscdex/ssh2/commit/844f1edfc41589737671f96a4f4e76afdf46abd4"><code>844f1ed</code></a> package: bump version to v1.17.0</li>
<li><a href="https://github.com/mscdex/ssh2/commit/f7cbb0cff0a3ae7e4447ca706feaf1cf184344c4"><code>f7cbb0c</code></a> package: bump nan to v2.23.0</li>
<li><a href="https://github.com/mscdex/ssh2/commit/83ec32070aca0d7dc679a833aa477520365ca74a"><code>83ec320</code></a> ci: add node 24.x</li>
<li><a href="https://github.com/mscdex/ssh2/commit/b33c065d8630c5942d23748ae4ca7427bc0e7d18"><code>b33c065</code></a> ci: bump windows image version</li>
<li><a href="https://github.com/mscdex/ssh2/commit/c19a821454a9034824425a7d6cc74991021d377e"><code>c19a821</code></a> client: add support for environment variables when starting SFTP</li>
<li><a href="https://github.com/mscdex/ssh2/commit/dd5510c0888476e9eec205273732473fcce5adc6"><code>dd5510c</code></a> lib: fix workers thread-safety issues</li>
<li><a href="https://github.com/mscdex/ssh2/commit/0fe2643cb29f0a29df9388af7f1ca8da15b09cd4"><code>0fe2643</code></a> ci: unset OPENSSL_CONF</li>
<li><a href="https://github.com/mscdex/ssh2/commit/42491a6053e222db4ff1b6c343b57040fb490647"><code>42491a6</code></a> ci: fix issues related to old node-gyp + new Python</li>
<li>See full diff in <a href="https://github.com/mscdex/ssh2/compare/v1.16.0...v1.17.0">compare view</a></li>
</ul>
</details>
<br />
Updates `zod` from 4.0.5 to 4.1.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/colinhacks/zod/releases">zod's releases</a>.</em></p>
<blockquote>
<h2>v4.1.1</h2>
<h2>Commits:</h2>
<ul>
<li>648eb43c23e31f7d69ef09baba46aef4e9493b13 Remove codecs from sidebare</li>
<li>7e39a99a88a9b7f0c9c3d5fd40fbbab494365c9a Improve codec docs</li>
<li>e5085beb2653f1d05a14c07c79b6f3707daf09f6 Add images</li>
<li>028b289a48f5589dca58b0b813a5a9f9e363a40b Add methods</li>
<li>10cc9941daeb28b6be5be7327e034c3388d8e60b 4.1.1</li>
</ul>
<h2>v4.1.0</h2>
<p>The first minor version since the introduction of Zod 4 back in May. This version contains a number of features that barely missed the cut for the 4.0 release. With Zod 4 stable and widely adopted, there's more time to resume feature development.</p>
<h2>Codecs</h2>
<p>This is the flagship feature of this release. Codecs are a new API & schema type that encapsulates a <em>bi-directional transformation</em>. It's a huge missing piece in Zod that's finally filled, and it unlocks some totally new ways to use Zod.</p>
<pre lang="ts"><code>const stringToDate = z.codec(
z.iso.datetime(), // input schema: ISO date string
z.date(), // output schema: Date object
{
decode: (isoString) => new Date(isoString),
encode: (date) => date.toISOString(),
}
);
</code></pre>
<p>New top-level functions are added for processing inputs in the <em>forward</em> direction ("decoding") and <em>backward</em> direction ("encoding").</p>
<pre lang="ts"><code>stringToDate.decode("2025-08-21T20:59:45.500Z")
// => Date
<p>stringToDate.encode(new Date())<br />
// => "2025-08-21T20:59:45.500Z"<br />
</code></pre></p>
<blockquote>
<p><strong>Note</strong> — For bundle size reasons, these new methods have not added to Zod Mini schemas. Instead, this functionality is available via equivalent top-level functions.</p>
<pre lang="ts"><code>// equivalent at runtime
z.decode(stringToDate, "2024-01-15T10:30:00.000Z");
z.encode(stringToDate, new Date());
</code></pre>
</blockquote>
<h3><code>.parse()</code> vs <code>.decode()</code></h3>
<p>Both <code>.parse()</code> and <code>decode()</code> process data in the "forward" direction. They behave identically at runtime.</p>
<pre lang="ts"><code></tr></table>
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/colinhacks/zod/commit/10cc9941daeb28b6be5be7327e034c3388d8e60b"><code>10cc994</code></a> 4.1.1</li>
<li><a href="https://github.com/colinhacks/zod/commit/028b289a48f5589dca58b0b813a5a9f9e363a40b"><code>028b289</code></a> Add methods</li>
<li><a href="https://github.com/colinhacks/zod/commit/e5085beb2653f1d05a14c07c79b6f3707daf09f6"><code>e5085be</code></a> Add images</li>
<li><a href="https://github.com/colinhacks/zod/commit/7e39a99a88a9b7f0c9c3d5fd40fbbab494365c9a"><code>7e39a99</code></a> Improve codec docs</li>
<li><a href="https://github.com/colinhacks/zod/commit/648eb43c23e31f7d69ef09baba46aef4e9493b13"><code>648eb43</code></a> Remove codecs from sidebare</li>
<li><a href="https://github.com/colinhacks/zod/commit/2ca716d6313dcfab425d3555ac8bf85929bc57a4"><code>2ca716d</code></a> v4.1.0</li>
<li><a href="https://github.com/colinhacks/zod/commit/cb840dd3c8b7fde81aba79b92782c0bb59e3d2b8"><code>cb840dd</code></a> Update uint8array util return types</li>
<li><a href="https://github.com/colinhacks/zod/commit/699198c8ed0a9bbd9174548cbf3cf4c16bd60b9a"><code>699198c</code></a> Update lockfile</li>
<li><a href="https://github.com/colinhacks/zod/commit/456dfe3c874350115c4aa0f9dd1b0b22bc2aed0f"><code>456dfe3</code></a> Restore ts5.5 dependency</li>
<li><a href="https://github.com/colinhacks/zod/commit/980e14cdb98876e205db02d5b7a36ed8e71ea15d"><code>980e14c</code></a> Clean up types loading</li>
<li>Additional commits viewable in <a href="https://github.com/colinhacks/zod/compare/v4.0.5...v4.1.1">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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@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>
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Bumps the prod-minor-updates group with 10 updates:
5.1.15.2.14.24.14.25.14.24.14.25.14.24.14.25.14.24.14.25.11.10.01.11.00.525.00.541.07.60.07.62.01.16.01.17.04.0.54.1.1Updates
@hookform/resolversfrom 5.1.1 to 5.2.1Release notes
Sourced from
@hookform/resolvers's releases.Commits
49a0d7bfix: discriminated union for zod v4 mini (#784)bc09647fix(zod): fix output type for Zod 4 resolver (#801)2d28e6afix: zod v4 peer deps (#798)f040039feat(ajv): add ajv-formats for ajvResolver (#797)Updates
@uiw/codemirror-extensions-hyper-linkfrom 4.24.1 to 4.25.1Release notes
Sourced from
@uiw/codemirror-extensions-hyper-link's releases.Commits
c09d8d2released v4.25.16a45175chore: update peerDependencies data.bc3693aci: update workflows config.250ec77chore: remove example.9a27bfereleased v4.25.0b46ed3efix(langs): generate syntax highlighting from file extensions.98acfd8doc: Update README.md082c85areleased v4.24.2 #7424876309feat: bump React peer dependency to 17+ #742Updates
@uiw/codemirror-extensions-langsfrom 4.24.1 to 4.25.1Release notes
Sourced from
@uiw/codemirror-extensions-langs's releases.Commits
c09d8d2released v4.25.16a45175chore: update peerDependencies data.bc3693aci: update workflows config.250ec77chore: remove example.9a27bfereleased v4.25.0b46ed3efix(langs): generate syntax highlighting from file extensions.98acfd8doc: Update README.md082c85areleased v4.24.2 #7424876309feat: bump React peer dependency to 17+ #742Updates
@uiw/codemirror-themesfrom 4.24.1 to 4.25.1Release notes
Sourced from
@uiw/codemirror-themes's releases.Commits
c09d8d2released v4.25.16a45175chore: update peerDependencies data.bc3693aci: update workflows config.250ec77chore: remove example.9a27bfereleased v4.25.0b46ed3efix(langs): generate syntax highlighting from file extensions.98acfd8doc: Update README.md082c85areleased v4.24.2 #7424876309feat: bump React peer dependency to 17+ #742Updates
@uiw/react-codemirrorfrom 4.24.1 to 4.25.1Release notes
Sourced from
@uiw/react-codemirror's releases.Commits
c09d8d2released v4.25.16a45175chore: update peerDependencies data.bc3693aci: update workflows config.250ec77chore: remove example.9a27bfereleased v4.25.0b46ed3efix(langs): generate syntax highlighting from file extensions.98acfd8doc: Update README.md082c85areleased v4.24.2 #7424876309feat: bump React peer dependency to 17+ #742Updates
axiosfrom 1.10.0 to 1.11.0Release notes
Sourced from axios's releases.
Changelog
Sourced from axios's changelog.
Commits
b76c4acchore(release): v1.11.0 (#6974)e72c193fix: form-data npm pakcage (#6970)8517aa1fix(types): resolve type discrepancies between ESM and CJS TypeScript declara...a2214cafix: prevent RangeError when using large Buffers (#6961)6161947refactor: use spread operator instead of '.apply()' (#6938)a1d16ddrefactor: use an object spread instead of Object.assign (#6939)07183cdchore(sponsor): update sponsor block (#6952)ef36347docs(CONTRIBUTING): update docs link for accuracy (#6894)b29bd6achore(sponsor): update sponsor block (#6948)a406a93chore(sponsor): update sponsor block (#6937)Updates
lucide-reactfrom 0.525.0 to 0.541.0Release notes
Sourced from lucide-react's releases.
... (truncated)
Commits
e71198dchore: icon alias improvements (#2861)Updates
react-hook-formfrom 7.60.0 to 7.62.0Release notes
Sourced from react-hook-form's releases.
... (truncated)
Commits
1b5a6747.62.06025100🐞 fix #12988 sync two defaultValues after reset with new defaultValues (#12990)323cd41🐞 fix field name type conflict in nested FieldErrors (#12972)dac28d6👨🔧 fix: prevent onBlur for readOnly fields (#12971)642145a🧪 test: add unit tests for convertToArrayPayload utility (#12967)15c03a5🐞 fix: do not override prototype ofdataincloneObject(#12985)13465d97.61.14a7f371Revert "⌨️ fix: watch return type based on defaultValue (#12896)"343ac037.61.03f4d24c🐞 fix #12959 subscribe with latest defaultValues #12961Updates
ssh2from 1.16.0 to 1.17.0Commits
844f1edpackage: bump version to v1.17.0f7cbb0cpackage: bump nan to v2.23.083ec320ci: add node 24.xb33c065ci: bump windows image versionc19a821client: add support for environment variables when starting SFTPdd5510clib: fix workers thread-safety issues0fe2643ci: unset OPENSSL_CONF42491a6ci: fix issues related to old node-gyp + new PythonUpdates
zodfrom 4.0.5 to 4.1.1Release notes
Sourced from zod's releases.
... (truncated)
Commits
10cc9944.1.1028b289Add methodse5085beAdd images7e39a99Improve codec docs648eb43Remove codecs from sidebare2ca716dv4.1.0cb840ddUpdate uint8array util return types699198cUpdate lockfile456dfe3Restore ts5.5 dependency980e14cClean up types loadingDependabot 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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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