Skip to content

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

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

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

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jul 30, 2024

This PR contains the following updates:

Package Change Age Confidence
react-hook-form (source) 7.44.37.73.1 age confidence

Release Notes

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

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.
<Form
  onSubmit={() => {
    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 renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 689486b to f30f167 Compare August 3, 2024 06:15
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.52.1 fix(deps): update dependency react-hook-form to v7.52.2 Aug 3, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from f30f167 to 42777ca Compare August 24, 2024 07:25
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.52.2 fix(deps): update dependency react-hook-form to v7.53.0 Aug 24, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 42777ca to 05ba87a Compare October 19, 2024 03:51
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.53.0 fix(deps): update dependency react-hook-form to v7.53.1 Oct 19, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 05ba87a to 79bbf62 Compare November 9, 2024 01:02
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.53.1 fix(deps): update dependency react-hook-form to v7.53.2 Nov 9, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 79bbf62 to d094c62 Compare December 7, 2024 00:56
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.53.2 fix(deps): update dependency react-hook-form to v7.54.0 Dec 7, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from d094c62 to 03fbd01 Compare December 13, 2024 00:27
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.54.0 fix(deps): update dependency react-hook-form to v7.54.1 Dec 13, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 03fbd01 to 303214a Compare December 21, 2024 02:33
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.54.1 fix(deps): update dependency react-hook-form to v7.54.2 Dec 21, 2024
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.54.2 fix(deps): update dependency react-hook-form to v7.55.0 Mar 29, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 303214a to 5ff4fa6 Compare March 29, 2025 02:26
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 5ff4fa6 to 4ccbc37 Compare April 20, 2025 09:42
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.55.0 fix(deps): update dependency react-hook-form to v7.56.0 Apr 20, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 4ccbc37 to b3a0571 Compare April 23, 2025 02:53
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.56.0 fix(deps): update dependency react-hook-form to v7.56.1 Apr 23, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from b3a0571 to 161d7ea Compare May 4, 2025 01:57
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.56.1 fix(deps): update dependency react-hook-form to v7.56.2 May 4, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 161d7ea to e05b4e3 Compare May 8, 2025 00:02
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.56.2 fix(deps): update dependency react-hook-form to v7.56.3 May 8, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from e05b4e3 to dcec854 Compare May 17, 2025 02:48
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.56.3 fix(deps): update dependency react-hook-form to v7.56.4 May 17, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from dcec854 to 6af5a69 Compare June 2, 2025 01:15
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.56.4 fix(deps): update dependency react-hook-form to v7.57.0 Jun 2, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 6af5a69 to 1b8f868 Compare June 15, 2025 11:53
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.57.0 fix(deps): update dependency react-hook-form to v7.58.0 Jun 15, 2025
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.61.1 fix(deps): update dependency react-hook-form to v7.62.0 Aug 2, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from c011ed1 to 7225018 Compare September 20, 2025 01:48
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.62.0 fix(deps): update dependency react-hook-form to v7.63.0 Sep 20, 2025
@renovate renovate Bot changed the title fix(deps): update dependency react-hook-form to v7.63.0 chore(deps): update dependency react-hook-form to v7.63.0 Sep 25, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 7225018 to d30c66c Compare October 4, 2025 01:40
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.63.0 chore(deps): 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 d30c66c to fca9c35 Compare October 11, 2025 01:29
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.64.0 chore(deps): 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 fca9c35 to 3a2c065 Compare November 1, 2025 02:53
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.65.0 chore(deps): update dependency react-hook-form to v7.66.0 Nov 1, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 3a2c065 to 8423cfa Compare November 18, 2025 02:30
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.66.0 chore(deps): update dependency react-hook-form to v7.66.1 Nov 18, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 8423cfa to d419ffc Compare November 29, 2025 02:45
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.66.1 chore(deps): update dependency react-hook-form to v7.67.0 Nov 29, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from d419ffc to d4bcc69 Compare December 4, 2025 03:12
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.67.0 chore(deps): update dependency react-hook-form to v7.68.0 Dec 4, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from d4bcc69 to df02a67 Compare December 20, 2025 04:48
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.68.0 chore(deps): update dependency react-hook-form to v7.69.0 Dec 20, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from df02a67 to 7f920e5 Compare January 4, 2026 05:33
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.69.0 chore(deps): update dependency react-hook-form to v7.70.0 Jan 4, 2026
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 7f920e5 to f4d45a7 Compare January 11, 2026 01:08
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.70.0 chore(deps): update dependency react-hook-form to v7.71.0 Jan 11, 2026
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from f4d45a7 to ff13eb4 Compare January 14, 2026 01:30
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.71.0 chore(deps): update dependency react-hook-form to v7.71.1 Jan 14, 2026
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from ff13eb4 to 34f8179 Compare February 21, 2026 01:58
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.71.1 chore(deps): update dependency react-hook-form to v7.71.2 Feb 21, 2026
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 34f8179 to 5ffd2f8 Compare March 22, 2026 02:00
@renovate renovate Bot changed the title chore(deps): update dependency react-hook-form to v7.71.2 chore(deps): update dependency react-hook-form to v7.72.0 Mar 22, 2026
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 5ffd2f8 to e28219e Compare April 3, 2026 09:08
Sign up for free to 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