Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 923b8f3

Browse files
build(deps): Bump react-hook-form from 7.37.0 to 7.39.0 in /api-editor/gui (#1105)
Bumps [react-hook-form](https://github.com/react-hook-form/react-hook-form) from 7.37.0 to 7.39.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.39.0</h2> <p>🔮 improve <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/8601">#8601</a> and remove the relationship between <code>isValid</code> state with <code>mode</code> (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9219">#9219</a>)</p> <p><a href="https://user-images.githubusercontent.com/10513364/199356486-bec6cff7-0c33-4076-a60a-e15dc86ddb8a.mov">https://user-images.githubusercontent.com/10513364/199356486-bec6cff7-0c33-4076-a60a-e15dc86ddb8a.mov</a></p> <p>🐞 fix <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9282">#9282</a> regression on async validation block validation (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9286">#9286</a>) 🐞 fix <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9251">#9251</a> <code>isValidating</code> state stale with resolver (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9254">#9254</a>) 🏍 delete dirty fields node instead of marking as false (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9156">#9156</a>) 🤯 use input reference instead custom object (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9132">#9132</a>) 🥊 improve native reset API invoke (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9293">#9293</a>) 🦘 related <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9290">#9290</a> improve setCustomValidity logic (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9292">#9292</a>) 👺 fix re-render bug with isValid (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9307">#9307</a>)</p> <h2>Version 7.38.0</h2> <p>🕰 support validation for week and time input type (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9189">#9189</a>)</p> <pre lang="tsx"><code>&lt;input {...register(&quot;week&quot;, { min: &quot;2022-W40&quot;, max: &quot;2022-W50&quot; })} type=&quot;week&quot; /&gt; &lt;input {...register(&quot;time&quot;, { min: &quot;11:00&quot;, max: &quot;12:00&quot; })} type=&quot;time&quot; /&gt; </code></pre> <p><a href="https://user-images.githubusercontent.com/10513364/196547407-8ea7363c-44b8-463e-9aaf-f946a2e5af88.mov">https://user-images.githubusercontent.com/10513364/196547407-8ea7363c-44b8-463e-9aaf-f946a2e5af88.mov</a></p> <p>🧘🏻 enable focus error with disabled inputs while submitting (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9155">#9155</a>) 🧱 prevent runtime error <code>startsWith</code> called with undefined (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9223">#9223</a>) 🐞 fix <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9216">#9216</a> isValid state not update with async form level trigger (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9218">#9218</a>) 🧦 fix accessibility issue on examples with input missing id (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9174">#9174</a>) 🚔 check field array value type before updating (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9170">#9170</a>) 📓 update TSDoc for useFieldArray (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9178">#9178</a>)</p> <p>thanks to <a href="https://github.com/BogdanCerovac"><code>@​BogdanCerovac</code></a> and <a href="https://github.com/leapful"><code>@​leapful</code></a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md">react-hook-form's changelog</a>.</em></p> <blockquote> <h2>[7.39.0] - 2022-11-2</h2> <h2>Changed</h2> <ul> <li><code>isValid</code> formState is no longer only applicable with <code>onChange</code>, <code>onTouched</code>, and <code>onBlur</code> mode.</li> </ul> <h2>[7.38.0] - 2022-10-19</h2> <h2>Added</h2> <ul> <li>support build-in validation with input type week and time</li> </ul> <pre lang="tsx"><code>&lt;input {...register(&quot;week&quot;, { min: &quot;2022-W40&quot; })} type=&quot;week&quot; /&gt; &lt;input {...register(&quot;time&quot;, { min: &quot;11:00&quot; })} type=&quot;time&quot; /&gt; </code></pre> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/1ec5f5bab05cadf324d5a2f05dfa197be767bc6c"><code>1ec5f5b</code></a> 7.39.0</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/923fb5ec21e7e2c1221d872db02c4ab4bae22a62"><code>923fb5e</code></a> 📼 add youtube tutorial video link</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/e5cc38adf8298a11b004d1024b4396a879c62630"><code>e5cc38a</code></a> 🥊 improve native reset API invoke (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9293">#9293</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/b07cb3054de9a7555dc6e23460cae9683307130e"><code>b07cb30</code></a> 🦘 related <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9290">#9290</a> improve setCustomValidity logic (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9292">#9292</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/8dbf4dd8c958205a3a020d42c057c6750de382dc"><code>8dbf4dd</code></a> 🐞 fix <a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9282">#9282</a> regression on async validation block validation (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9286">#9286</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/e83b9234edf1723cc5f41ba0d27a4c213a41cc0e"><code>e83b923</code></a> 🤯 use input reference insead custom object (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9132">#9132</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/c373093238b33ea3ed20127d4b1b1849e1e79569"><code>c373093</code></a> 🙏 remove: thank you circle CI for building over the years (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9263">#9263</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/16cf67b2791d3d57214a10f157e15717589c8eeb"><code>16cf67b</code></a> Revert &quot;⛱ simplify the subscription return (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9258">#9258</a>)&quot; (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9260">#9260</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/a57ab09bcc15c5b0e6c285b1944e5b5e4f2ced59"><code>a57ab09</code></a> 🏍 delete dirty fields node instead of mark as false (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9156">#9156</a>)</li> <li><a href="https://github.com/react-hook-form/react-hook-form/commit/3b77a36ee6ede78c4b9f1a3d053946aa1cfa2252"><code>3b77a36</code></a> ⛱ simplify the subscription return (<a href="https://github-redirect.dependabot.com/react-hook-form/react-hook-form/issues/9258">#9258</a>)</li> <li>Additional commits viewable in <a href="https://github.com/react-hook-form/react-hook-form/compare/v7.37.0...v7.39.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=react-hook-form&package-manager=npm_and_yarn&previous-version=7.37.0&new-version=7.39.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 3898a86 commit 923b8f3

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

api-editor/gui/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api-editor/gui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"react-chartjs-2": "^4.3.1",
3131
"react-dom": "^18.2.0",
3232
"react-dropzone": "^14.2.3",
33-
"react-hook-form": "^7.37.0",
33+
"react-hook-form": "^7.39.0",
3434
"react-icons": "^4.4.0",
3535
"react-markdown": "^8.0.3",
3636
"react-redux": "^8.0.4",

0 commit comments

Comments
 (0)