dependabot[bot] opened a new pull request, #9327:
URL: https://github.com/apache/gravitino/pull/9327

   Bumps [react-hook-form](https://github.com/react-hook-form/react-hook-form) 
from 7.62.0 to 7.67.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.67.0</h2>
   <p>🎯 feat: add exact to useController props (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13154";>#13154</a>)</p>
   <pre lang="tsx"><code>useForm({
     defaultValues: {
       user: {
         name: ''
       }
     }
   })
   <p>&lt;Controller control={control} name=&quot;user&quot; exact={false} 
/&gt; // subscribe to all user object<br />
   </code></pre></p>
   <p>✨ fix(types): allow undefined value with async defaultValues in 
Controller (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13160";>#13160</a>)
   🐞 fix(types): correct PathValueImpl type inference (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13150";>#13150</a>)</p>
   <p>thanks to <a href="https://github.com/ap0nia";><code>@​ap0nia</code></a>, 
<a href="https://github.com/Fasping";><code>@​Fasping</code></a> &amp; <a 
href="https://github.com/joseph0926";><code>@​joseph0926</code></a></p>
   <h2>Version 7.66.1</h2>
   <p>⚡ perf: reduce redundant property access in getDirtyFields (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13146";>#13146</a>)
   🐞 fix(createFormControl): skip setValid() during batch array updates (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13140";>#13140</a>)
   🐞 fix(useForm): recompute isValid after reset when values update 
asynchronously (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13126";>#13126</a>)
   🐞 fix(deepEqual): handle NaN comparison correctly using Object.is (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13120";>#13120</a>)</p>
   <p>thanks to <a 
href="https://github.com/kimtaejin3";><code>@​kimtaejin3</code></a>, <a 
href="https://github.com/a28689604";><code>@​a28689604</code></a> &amp; <a 
href="https://github.com/WuMingDao";><code>@​WuMingDao</code></a></p>
   <h2>Version 7.66.0</h2>
   <p>🎥 feat: make <code>useWatch</code> and <code>useController</code> to 
react to name change (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13070";>#13070</a>)
   🐛 fix: <code>watch()</code> returning <code>undefined</code> immediately 
after <code>reset()</code> - Issue <a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13088";>#13088</a>
 (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13091";>#13091</a>)
   🐞 fix <code>&lt;Watch /&gt;</code>: correct render function parameter typing 
(<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13108";>#13108</a>)</p>
   <p>thanks to <a 
href="https://github.com/aspirisen";><code>@​aspirisen</code></a>, <a 
href="https://github.com/scato3";><code>@​scato3</code></a>, <a 
href="https://github.com/dusan233";><code>@​dusan233</code></a> &amp; <a 
href="https://github.com/zoldyzdk";><code>@​zoldyzdk</code></a></p>
   <h2>Version 7.65.0</h2>
   <p>🧿 feat: <code>&lt;Watch /&gt;</code> component (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12986";>#12986</a>)</p>
   <pre lang="tsx"><code>import { useForm, Watch } from 'react-hook-form';
   <p>const App = () =&gt; {<br />
   const { register, control } = useForm();</p>
   <p>return (<br />
   &lt;div&gt;<br />
   &lt;form&gt;<br />
   &lt;input {...register('foo')} /&gt;<br />
   &lt;input {...register('bar')} /&gt;<br />
   &lt;/form&gt;<br />
   &lt;/tr&gt;&lt;/table&gt;<br />
   </code></pre></p>
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/bc0c12f217390414804542ccdba586db542044d8";><code>bc0c12f</code></a>
 7.67.0</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/caa514c6d1a9d5116cee973728daa837b1deedf2";><code>caa514c</code></a>
 7.66.1</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/d13be6a52d4a0af74f157893aeeb3c1b481bbec9";><code>d13be6a</code></a>
 ⚡ perf: reduce redundant property access in getDirtyFields (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13146";>#13146</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/6800ba967a7a651c25947186602126c4abcc1a71";><code>6800ba9</code></a>
 ❤️ thank you so much thanks.dev for sponsoring the project!</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/932c957eda1cebaf155d2156e79128089186ace0";><code>932c957</code></a>
 🐞 fix(createFormControl): skip setValid() during batch array updates (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13140";>#13140</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/fb6423fee14d28f8768fc97cd46016e86ff471ca";><code>fb6423f</code></a>
 🐞 fix(useForm): recompute isValid after reset when values update 
asynchronous...</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/49226985f4c1b1486b96b6ccbf68a18c3165550d";><code>4922698</code></a>
 🐞 fix(deepEqual): handle NaN comparison correctly using Object.is (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13120";>#13120</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/67770d3ea4e7010954a76b011cf17f011ddb18d1";><code>67770d3</code></a>
 🫧 chore: add eslint cache in package.json (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13117";>#13117</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/2596e5eccd35e242f1b704497c6628c84b1082ad";><code>2596e5e</code></a>
 🔩 chore: upgrade dev deps (<a 
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/13116";>#13116</a>)</li>
   <li><a 
href="https://github.com/react-hook-form/react-hook-form/commit/089f0a30fe0081e3dcc7ac3bae3ed034bf9c63dc";><code>089f0a3</code></a>
 7.66.0</li>
   <li>Additional commits viewable in <a 
href="https://github.com/react-hook-form/react-hook-form/compare/v7.62.0...v7.67.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.62.0&new-version=7.67.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to