Skip to content

Update dependency react-hook-form to v7.78.0 - #35

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/react-hook-form-7.x-lockfile
Open

Update dependency react-hook-form to v7.78.0#35
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/react-hook-form-7.x-lockfile

Conversation

@renovate

@renovaterenovateBot commented Jul 30, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

PackageChangeAgeConfidence
react-hook-form (source)7.44.37.78.0ageconfidence

Release Notes

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

v7.78.0

Compare Source

v7.77.0

Compare Source

Added
  • resetDefaultValues API
Fixed
  • Stale isDirty in subscribe payload after reset(..., { keepValues: true })
  • Preserve values with shouldUnregister
  • Inconsistent reset({}) behavior requiring double-call to take effect
  • FieldArray errors overriding nested fields
Security
  • Harden get() against prototype-path traversal (__proto__ / constructor / prototype)
Performance
  • Bundle size reduction

v7.76.1: Version 7.76.1

Compare Source

🐞 fix: pass options parameter through setValues to enable validation (#​13457)
🐞 fix(setValues): emit whole-form change without stale name/type (#​13450)
🚗 perf(setValues): thread skipClone through setFieldValue (#​13448)
🚗 perf(setValues): skip redundant per-field deep clones (#​13445)
Revert "🐞 fix: treat NaN as empty when valueAsNumber is true in validateField (#​13388)"

thanks to @​philibea & @​maxkostow

v7.76.0

Compare Source

v7.75.0: Version 7.75.0

Compare Source

🦧 feat: improve get dirty fields prune empty fields (#​13363)

+ dirtyFields: { test: [{ data: false }] }- dirtyFields: {} // removed the empty node with false value

🎹 typescript 6.0 (#​13330)
🌡️ chore: minor improvement on setValue & reset (#​13366)
🐞 fix #​13403: include setValues in FormProvider context value (#​13404)
🐞 fix: recompute isDirty after re-registering a previously unregistered field (#​13399)
🐞 fix: preserve watch updates on field array unmount fixes #​13375 (#​13385)
🐞 fix: prevent useWatch re-render when unrelated field validation is … (#​13398)

thanks to @​dfedoryshchev, @​cyky & @​gkarabelos

v7.74.0: Version 7.74.0

Compare Source

🪇 feat: setValues (#​13201)

setValues((data)=>{return{
...data,name: 'test'}})setValues(formValues);

🐞 fix: preserve previous field value when useController name changes (#​13395)
🐞 fix: handle null parent when unregistering nested field (#​13396)
🐞 fix: treat NaN as empty when valueAsNumber is true in validateField (#​13388)
🪢 fix build to exclude test files (#​13387)

thanks to @​Yihao-G & @​mixelburg

v7.73.1

Compare Source

v7.72.1

Compare Source

v7.72.0

Compare Source

v7.71.2

Compare Source

v7.71.1

Compare Source

v7.71.0

Compare Source

v7.70.0

Compare Source

v7.69.0

Compare Source

v7.68.0

Compare Source

v7.67.0

Compare Source

v7.66.1

Compare Source

v7.66.0

Compare Source

v7.65.0

Compare Source

v7.64.0

Compare Source

v7.63.0

Compare Source

v7.62.0

Compare Source

v7.61.1

Compare Source

v7.61.0

Compare Source

v7.60.0

Compare Source

v7.59.0

Compare Source

v7.58.1

Compare Source

v7.58.0

Compare Source

v7.57.0

Compare Source

v7.56.4

Compare Source

v7.56.3

Compare Source

v7.56.2

Compare Source

v7.56.1

Compare Source

v7.56.0

Compare Source

v7.55.0

Compare Source

v7.54.2

Compare Source

v7.54.1

Compare Source

v7.54.0

Compare Source

v7.53.2

Compare Source

v7.53.1

Compare Source

v7.53.0

Compare Source

v7.52.2

Compare Source

v7.52.1

Compare Source

v7.52.0

Compare Source

v7.51.5

Compare Source

v7.51.4

Compare Source

v7.51.3

Compare Source

v7.51.2

Compare Source

v7.51.1

Compare Source

v7.51.0

Compare Source

v7.50.1

Compare Source

v7.50.0

Compare Source

v7.49.3

Compare Source

v7.49.2: Version 7.49.2

Compare Source

🐞 fix #​11292 issue with controller validation prop (#​11294)

v7.49.1: Version 7.49.1

Compare Source

🐞 fix #​11276 issue with disabled omit on Controller (#​11277)
🐞 fix #​11287 disabled prop cause const dirtyFields update (#​11291)

v7.49.0

Compare Source

Added
  • add reactive errors prop at useForm
useForm({
errors,// Server errors});

v7.48.2: Version 7.48.2

Compare Source

🐞 #​11106 fix disabled prop not update dirty formState (#​11143)
🐞 fix controller update with disabled prop from useForm (#​11142)

v7.48.1: Version 7.48.1

Compare Source

🐞 fix controller update with disabled prop from useForm

v7.48.0

Compare Source

Added
  • added new disabled prop for useForm to disable the entire form
const App = () => {
const [disabled, setDisabled] = useState(false);
const { handleSubmit } = useForm({ disabled });
return (
<form
onSubmit={handleSubmit(async () => {
setDisabled(true);
await sleep(100);
setDisabled(false);
})}
/ >
);
}

v7.47.0

Compare Source

Added
  • reset api with keepIsSubmitSuccessful option, keep successfully submitted form state.
<FormonSubmit={()=>{reset(formValues,{keepIsSubmitSuccessful: true,});}}/>

v7.46.2: Version 7.46.2

Compare Source

🐞 fix implicit type coercion (#​10949)
🙄 close #​10932 omit disabled prop when not defined (#​10937)
🔧 fix controller test is dirty (#​10899)

thanks to @​samimakicc & @​pierluigigiancola

v7.46.1: Version 7.46.1

Compare Source

🐞 fix #​10878 return disabled field state (#​10879)

thanks to @​Moshyfawn

v7.46.0

Compare Source

Added
  • Controller disabled prop
const[disabled,setDisabled]=useState(false);useController({
disabled,});
  • Trigger passed names to construct resolver options
  • Add exact option for array name in useWatch
Changed
  • Update isDirty when setting disabled in register

v7.45.4: Version 7.45.4

Compare Source

🐞 fix #​10767 dep issue with replayio (#​10768)
🐞 fix #​10762 async submit with Form component (#​10766)
🫖 add test case for issue #​10744 to avoid future regressions (#​10759)

thanks to @​eg-bernardo

v7.45.3: Version 7.45.3

Compare Source

📼 add Replay Test Suites (#​10681)
Revert "🧑‍🎓 close #​10585 update controller value on each render (#​10586)"
🐞 close #​10682 make sure action flag gets reset after useEffect (#​10732)

thanks to @​jasonLaster

v7.45.2: Version 7.45.2

Compare Source

🧾 fix(types): async defaultValues await promise value (#​10637)
🥲 revert strict type check on Controller onChange (#​10609)
📖 docs(changelog 7.45.0): typo and format (#​10624)
📖 fix:test-spelling-error (#​10629)

thanks to @​anton-g, @​milhamm, @​moshfeu & @​OlliePrentice

v7.45.1: Version 7.45.1

Compare Source

🐞 fix #​10602 issue with reactive values props update (#​10606)
🧑‍🎓 close #​10585 update controller value on each render (#​10586)
🧪 test(generated-id): setting window performance undefined without ts-ignore (#​10584)

thanks to @​mateoguzmana

v7.45.0

Compare Source

Changed
  • Controller with type check on onChange
- onChange: (...event: any[]) => void;+ onChange: (event: ChangeEvent | FieldPathValue<TFieldValues, TName>) => void;
  • Include missing generic for useFormContext
- export const useFormContext: <TFieldValues extends FieldValues, TransformedValues extends FieldValues | undefined = undefined>() => UseFormReturn<TFieldValues>;+ export const useFormContext: <TFieldValues extends FieldValues, TContext = any, TransformedValues extends FieldValues | undefined = undefined>() => UseFormReturn<TFieldValues, TContext, TransformedValues>;

Configuration

📅 Schedule: (UTC)

  • 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
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 689486b to f30f167CompareAugust 3, 2024 06:15
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.52.1fix(deps): update dependency react-hook-form to v7.52.2Aug 3, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from f30f167 to 42777caCompareAugust 24, 2024 07:25
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.52.2fix(deps): update dependency react-hook-form to v7.53.0Aug 24, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 42777ca to 05ba87aCompareOctober 19, 2024 03:51
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.53.0fix(deps): update dependency react-hook-form to v7.53.1Oct 19, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 05ba87a to 79bbf62CompareNovember 9, 2024 01:02
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.53.1fix(deps): update dependency react-hook-form to v7.53.2Nov 9, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 79bbf62 to d094c62CompareDecember 7, 2024 00:56
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.53.2fix(deps): update dependency react-hook-form to v7.54.0Dec 7, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from d094c62 to 03fbd01CompareDecember 13, 2024 00:27
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.54.0fix(deps): update dependency react-hook-form to v7.54.1Dec 13, 2024
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 03fbd01 to 303214aCompareDecember 21, 2024 02:33
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.54.1fix(deps): update dependency react-hook-form to v7.54.2Dec 21, 2024
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.54.2fix(deps): update dependency react-hook-form to v7.55.0Mar 29, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 303214a to 5ff4fa6CompareMarch 29, 2025 02:26
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 5ff4fa6 to 4ccbc37CompareApril 20, 2025 09:42
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.55.0fix(deps): update dependency react-hook-form to v7.56.0Apr 20, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 4ccbc37 to b3a0571CompareApril 23, 2025 02:53
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.56.0fix(deps): update dependency react-hook-form to v7.56.1Apr 23, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from b3a0571 to 161d7eaCompareMay 4, 2025 01:57
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.56.1fix(deps): update dependency react-hook-form to v7.56.2May 4, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 161d7ea to e05b4e3CompareMay 8, 2025 00:02
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.56.2fix(deps): update dependency react-hook-form to v7.56.3May 8, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from e05b4e3 to dcec854CompareMay 17, 2025 02:48
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.56.3fix(deps): update dependency react-hook-form to v7.56.4May 17, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from dcec854 to 6af5a69CompareJune 2, 2025 01:15
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.56.4fix(deps): update dependency react-hook-form to v7.57.0Jun 2, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 6af5a69 to 1b8f868CompareJune 15, 2025 11:53
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.57.0fix(deps): update dependency react-hook-form to v7.58.0Jun 15, 2025
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.61.1fix(deps): update dependency react-hook-form to v7.62.0Aug 2, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from c011ed1 to 7225018CompareSeptember 20, 2025 01:48
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.62.0fix(deps): update dependency react-hook-form to v7.63.0Sep 20, 2025
@renovaterenovateBot changed the title fix(deps): update dependency react-hook-form to v7.63.0chore(deps): update dependency react-hook-form to v7.63.0Sep 25, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 7225018 to d30c66cCompareOctober 4, 2025 01:40
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.63.0chore(deps): update dependency react-hook-form to v7.64.0Oct 4, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from d30c66c to fca9c35CompareOctober 11, 2025 01:29
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.64.0chore(deps): update dependency react-hook-form to v7.65.0Oct 11, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from fca9c35 to 3a2c065CompareNovember 1, 2025 02:53
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.65.0chore(deps): update dependency react-hook-form to v7.66.0Nov 1, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 3a2c065 to 8423cfaCompareNovember 18, 2025 02:30
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.66.0chore(deps): update dependency react-hook-form to v7.66.1Nov 18, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 8423cfa to d419ffcCompareNovember 29, 2025 02:45
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.66.1chore(deps): update dependency react-hook-form to v7.67.0Nov 29, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from d419ffc to d4bcc69CompareDecember 4, 2025 03:12
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.67.0chore(deps): update dependency react-hook-form to v7.68.0Dec 4, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from d4bcc69 to df02a67CompareDecember 20, 2025 04:48
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.68.0chore(deps): update dependency react-hook-form to v7.69.0Dec 20, 2025
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from df02a67 to 7f920e5CompareJanuary 4, 2026 05:33
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.69.0chore(deps): update dependency react-hook-form to v7.70.0Jan 4, 2026
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 7f920e5 to f4d45a7CompareJanuary 11, 2026 01:08
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.70.0chore(deps): update dependency react-hook-form to v7.71.0Jan 11, 2026
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from f4d45a7 to ff13eb4CompareJanuary 14, 2026 01:30
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.71.0chore(deps): update dependency react-hook-form to v7.71.1Jan 14, 2026
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from ff13eb4 to 34f8179CompareFebruary 21, 2026 01:58
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.71.1chore(deps): update dependency react-hook-form to v7.71.2Feb 21, 2026
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 34f8179 to 5ffd2f8CompareMarch 22, 2026 02:00
@renovaterenovateBot changed the title chore(deps): update dependency react-hook-form to v7.71.2chore(deps): update dependency react-hook-form to v7.72.0Mar 22, 2026
@renovate
renovateBotforce-pushed the renovate/react-hook-form-7.x-lockfile branch from 5ffd2f8 to e28219eCompareApril 3, 2026 09:08
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants