Skip to content

fix(deps): update dependency react-hook-form to v7.71.2#949

Open
github-actions[bot] wants to merge 2 commits intomasterfrom
renovate/react-hook-form-7.x
Open

fix(deps): update dependency react-hook-form to v7.71.2#949
github-actions[bot] wants to merge 2 commits intomasterfrom
renovate/react-hook-form-7.x

Conversation

@github-actions
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
react-hook-form (source) dependencies minor 7.64.0 -> 7.71.2

Release Notes

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

v7.71.2: Version 7.71.2

Compare Source

🕵️‍♂️ fix: use DeepPartialSkipArrayKey for WatchObserver value parameter (#​13278)
🧹 fix(clearErrors): emit name signal for targeted field updates (#​13280)

thanks to @​veeceey, @​kaigritun, @​pgoslatara & @​seongbiny

v7.71.1: Version v7.71.1

Compare Source

🐞 fix #​13250 issue with booleans_as_integers (#​13252)

v7.71.0: Version 7.71.0

Compare Source

⚡ perf: memoize FormProvider context value to prevent unnecessary rerenders (#​13235)
🚄 perf: separate control context to prevent unnecessary rerenders (#​13234)
🐞 fix: update isValid when field disabled state changes (#​13231)
👌 chore: optimize bundle size via safe terser options (#​13243) (#​13244)

thanks to @​kamja44, @​a28689604 & @​newsiberian

v7.70.0: Version 7.70.0

Compare Source

✅ watch type improvement (#​13228)
🐞 fix: prevent field array ghost elements with keepDirtyValues (#​13188)
🐞 fix: improve invalid date handling in deepEqual and validation (#​13230)
🐞 fix(types): handle branded types correctly in DeepPartial (#​13222)
🐞 fix native validation focus issue (#​13220)
🐞 change spread operator to set name with depricated names prop, then override with new name prop is supplied (#​13214)
🐞 fix: prevent duplicate subscription trigger in setValue (#​13206) (#​13209)
👌 chore: fix lib type check include tests (#​13229)

thanks to @​EdwardEB, @​constantly-dev & @​a28689604

v7.69.0: 🎄 Version 7.69.0

Compare Source

📏 feat: align API with useWatch (#​13192)
🤦🏻‍♂️ chore: update @​deprecated names prop on (#​13198)
🏥 chore: safely call function methods on elements (#​13190)
🪖 chore: cve-2025-67779 (#​13196)
🪖 chore: cve-2025-55184 & cve-2025-55183 (#​13194)
🪖 chore: CVE-2025-55182 Critical RCE vulnerabilty (#​13175)
🔬 test: add regression tests for #​12837 and #​13136 (#​13187)
🐞 fix(reset): preserve isValid state when keepIsValid option is used (#​13173)
🐞 fix: ensure each createFormControl.subscribe subscription listens only to the changes it subscribes to (#​12968)
🐞 fix(validation): batch isValidating state updates with validation result (#​13181)
🐞 fix(createFormControl): resolve race condition between setError and setFocus (#​13138) (#​13169)
🧿 fix control prop type (#​13189)
🔔 chore: clean cloneObject logic (#​13179)

thanks to @​PierreCrb, @​a28689604, @​AnuragM7666, @​ap0nia, @​dusan233 & @​hlongc

v7.68.0: Version 7.68.0

Compare Source

🎧 feat: <FormStateSubscribe /> component (#​13142)

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

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

  return (
    <div>
      <form>
        <input {...register('foo')} />
        <input {...register('bar')} />
      </form>
      {/* re-render only when formState of `foo` changes */}
      <FormStateSubscribe
        control={control}
        name={"foo"}
        render={({errors}) => <span>{errors.foo?.message}</span>}
      />
    </div>
  );
};

🐞 fix: clear validation errors synchronously in reset() to fix Next.js 16 Server Actions issue (#​13139)
Revert "✨ fix(types): allow undefined value with async defaultValues in Contr…" (#​13171)

thanks to @​xiangnuans, @​abnud11, @​ntatoud & @​ap0nia

v7.67.0: Version 7.67.0

Compare Source

🎯 feat: add exact to useController props (#​13154)

useForm({
  defaultValues: {
    user: {
      name: ''
    }
  }
})

<Controller control={control} name="user" exact={false} /> // subscribe to all user object

✨ fix(types): allow undefined value with async defaultValues in Controller (#​13160)
🐞 fix(types): correct PathValueImpl type inference (#​13150)

thanks to @​ap0nia, @​Fasping & @​joseph0926

v7.66.1: Version 7.66.1

Compare Source

⚡ perf: reduce redundant property access in getDirtyFields (#​13146)
🐞 fix(createFormControl): skip setValid() during batch array updates (#​13140)
🐞 fix(useForm): recompute isValid after reset when values update asynchronously (#​13126)
🐞 fix(deepEqual): handle NaN comparison correctly using Object.is (#​13120)

thanks to @​kimtaejin3, @​a28689604 & @​WuMingDao

v7.66.0: Version 7.66.0

Compare Source

🎥 feat: make useWatch and useController to react to name change (#​13070)
🐛 fix: watch() returning undefined immediately after reset() - Issue #​13088 (#​13091)
🐞 fix <Watch />: correct render function parameter typing (#​13108)

thanks to @​aspirisen, @​scato3, @​dusan233 & @​zoldyzdk

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


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 has been generated by Renovate Bot.

@jji05 jji05 self-assigned this Mar 1, 2026
@github-actions
Copy link
Contributor Author

github-actions bot commented Mar 1, 2026

Preview Deployment Status

✅ Storybook Preview: https://1f7f879d.uabc-storybook.pages.dev

✅ Frontend Preview: https://4b63bf66.uabc.pages.dev

@github-actions
Copy link
Contributor Author

github-actions bot commented Mar 1, 2026

Coverage Report

Status Category Percentage Covered / Total
🔵 Lines 76.75% (🎯 70%)
⬇️ -7.65%
1119 / 1458
🔵 Statements 76.59% (🎯 70%)
⬇️ -7.68%
1135 / 1482
🔵 Functions 64.45% (🎯 80%)
⬇️ -14.56%
194 / 301
🔵 Branches 69.46% (🎯 60%)
⬇️ -9.13%
448 / 645
File CoverageNo changed files found.
Generated in workflow #3945 for commit 6f73665 by the Vitest Coverage Report Action

@github-actions
Copy link
Contributor Author

github-actions bot commented Mar 2, 2026

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant