Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Sep 20, 2025

This PR contains the following updates:

Package Change Age Confidence
react-hook-form (source) 7.62.0 -> 7.66.0 age confidence

Release Notes

react-hook-form/react-hook-form (react-hook-form)

v7.66.0

Compare Source

v7.65.0: Version 7.65.0

Compare Source

🧿 feat: <Watch /> component (#​12986)

import { useForm, Watch } from 'react-hook-form';

const App = () => {
  const { register, control } = useForm();

  return (
    <div>
      <form>
        <input {...register('foo')} />
        <input {...register('bar')} />
      </form>
      {/* re-render only when value of `foo` changes */}
      <Watch
        control={control}
        names={['foo']}
        render={([foo]) => <span>{foo}</span>}
      />
    </div>
  );
};

🐞 fix: respect parent-provided useFieldArray rules (#​13082) (#​13083
🐞 fix: getDirtyFields submit fields with null values when using useForm (#​13079)

thanks to @​tesseractjh, @​Han5991 & @​jonathanarnault

v7.64.0: Version 7.64.0

Compare Source

🚏 Support optional array fields in PathValueImpl type (#​13057)
🐞 fix: preserve Controller's defaultValue with shouldUnregister prop (#​13063)
✂ chore: remove unused field ids ref in useFieldArray (#​13066)

thanks to @​MPrieur-chaps, @​gynekolog & @​uk960214

v7.63.0: Version 7.63.0

Compare Source

🥢 feat: extract form values by form state (#​12936)

getValues(undefined, { dirtyFields: true }); // return only dirty fields 
getValues(undefined, { touchedFields: true });  // return only touched fields 

🦍 feat: improve get dirty fields logic (#​13049)
🐿️ chore: remove duplicated function isMessage (#​13050)
🐞 fix: use field name to update isValidating fields (#​13000)
🐞 fix: unregister previous field when switching conditional Controllers (#​13041)
🐞 fix: only excuse trigger function when deps has a valid array (#​13056)

thanks to @​candymask0712, @​GorkemKir, @​kimtaejin3, @​m2na7 & @​abnud11


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 20, 2025
@renovate renovate bot assigned gjong Sep 20, 2025
@github-actions
Copy link

github-actions bot commented Sep 20, 2025

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 10.61% 1172 / 11037
🔵 Statements 10.61% 1172 / 11037
🔵 Functions 22.51% 86 / 382
🔵 Branches 50.98% 182 / 357
File CoverageNo changed files found.
Generated in workflow #1199 for commit 0bbae90 by the Vitest Coverage Report Action

@renovate renovate bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from e82e9d0 to 401b243 Compare October 4, 2025 01:55
@renovate renovate bot changed the title Update dependency react-hook-form to v7.63.0 Update dependency react-hook-form to v7.64.0 Oct 4, 2025
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 401b243 to 0eea63d Compare October 11, 2025 00:36
@renovate renovate bot changed the title Update dependency react-hook-form to v7.64.0 Update dependency react-hook-form to v7.65.0 Oct 11, 2025
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 0eea63d to 0bbae90 Compare November 1, 2025 01:50
@renovate renovate bot changed the title Update dependency react-hook-form to v7.65.0 Update dependency react-hook-form to v7.66.0 Nov 1, 2025
@sonarqubecloud
Copy link

sonarqubecloud bot commented Nov 1, 2025

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants