Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency react-hook-form to v7.51.5 #22

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 5, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-hook-form (source) 7.38.0 -> 7.51.5 age adoption passing confidence

Release Notes

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

v7.51.5

Compare Source

v7.51.4: Version 7.51.4

Compare Source

๐Ÿ‘น close #โ€‹11778 improve unregister omit key with getValues method (#โ€‹11779)
๐Ÿž fix #โ€‹11794 issue: Fields dirty state is not updated when passing values to useForm

v7.51.3

Compare Source

v7.51.2: Version 7.51.2

Compare Source

๐Ÿž fix #โ€‹11719 validation stuck on true state (#โ€‹11723)

v7.51.1

Compare Source

v7.51.0

Compare Source

Added
  • added 'validateFields' to formState
const { formState: { validateFields } } = useForm();

v7.50.1: Version v7.50.1

Compare Source

๐Ÿฅฒ Regression: Revert "โŒจ๏ธ fix #โ€‹10734 watch and useWatch without parameters return type (#โ€‹11359)"

v7.50.0: Versions 7.50.0

Compare Source

๐Ÿ”ง fix data param in handleSubmit when TTransformedValues is a union type (#โ€‹11420)
๐Ÿ‘ท build(Engines): remove pnpm dependency (#โ€‹11425)
๐Ÿž fixes #โ€‹11386 get new dirtyFields when reset keeping defaults and dirty values (#โ€‹11401)
๐Ÿท๏ธ improve CustomElement type (#โ€‹11309)
๐Ÿ’ซ feat(useForm): leave formState flags in a consistent state when throwing in handleSubmit onValid (#โ€‹11214)
โŒจ๏ธ fix: change DeepPartial to account for object union types & unknown (#โ€‹11385)
โœจ feat(values): priorities values over defaultvalues (#โ€‹11399)
๐Ÿž close #โ€‹11246 skip root validation on action when mode and revalidate mode is onSubmit (#โ€‹11395)
๐Ÿ’ฉ fix #โ€‹11322 trigger extra re-render with useWatch plus shouldUnregister (#โ€‹11394)
โŒจ๏ธ fix #โ€‹10734 watch and useWatch without parameters return type (#โ€‹11359)
๐Ÿง‘โ€โœˆ๏ธ fix #โ€‹11281 issue with upgrade node version (#โ€‹11392)
๐Ÿž fix #โ€‹11368 keep form state mounted when keeping values (#โ€‹11384)
๐Ÿž fix #โ€‹11374: Nested deep partial with unknown (#โ€‹11373)

thanks to @โ€‹Moshyfawn, @โ€‹jonahallibone, @โ€‹eladattias1996, @โ€‹RulerOfCakes, @โ€‹anonkey, @โ€‹Ar4ys, @โ€‹IanVS and @โ€‹r-kataoka11

v7.49.3: Version 7.49.3

Compare Source

๐Ÿ› fix(formState, disabled): infer controlled disabled form state (#โ€‹11361)
๐Ÿ› fix(reset): remove global reset option flag (#โ€‹11355)
๐Ÿ› fix(useController): check if disabled state was set by user (#โ€‹11353)
๐Ÿ–จ๏ธ fix: Change DeepPartial type definition to be compatible with unknown (#โ€‹11333)
๐Ÿž fix #โ€‹11328 resetField with object as defaultValue (#โ€‹11329)

thanks to @โ€‹Moshyfawn, @โ€‹geeee and @โ€‹RulerOfCakes

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

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

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

v7.44.3: Version 7.44.3

Compare Source

๐Ÿฆ‰ fix: add named component export (#โ€‹10486)
๐Ÿ’ญ fix React import inconsistency (#โ€‹10479)
๐Ÿ™๏ธ fix: removed code from the README updater which was trying to read a non-existent docs/Helpers.yaml
๐Ÿ“ fix doc: update urls from /api to /docs (#โ€‹10468)

thanks to @โ€‹Moshyfawn @โ€‹@โ€‹protofarer @โ€‹farfromrest

v7.44.2: Version 7.44.2

Compare Source

๐ŸชŸ fix #โ€‹10456 object.hasown replaced with hasOwnProperty (#โ€‹10458)

v7.44.1: Version 7.44.1

Compare Source

๐Ÿž fix <Form /> component content-type json type missing (#โ€‹10454)

v7.44.0

Compare Source

v7.43.9: Version 7.43.9

Compare Source

๐Ÿ„ close #โ€‹10195 close async defaultValues not load (#โ€‹10203)
Revert "๐Ÿž fix #โ€‹10139 useFieldArray array error not updating in some cases (#โ€‹10150)"

v7.43.8: Version 7.43.8

Compare Source

๐Ÿชก related #โ€‹10143 did not update dirty until interacted (#โ€‹10157)
๐Ÿž fix #โ€‹10139 useFieldArray array error not updating in some cases (#โ€‹10150)

thanks to @โ€‹kylemclean

v7.43.7: Version 7.43.7

Compare Source

๐Ÿž fix #โ€‹10131 regression on NaN data type (#โ€‹10132)
๐Ÿž fix #โ€‹10129 useFieldArray unmount fieldArray wihtout register (#โ€‹10130)
๐Ÿฆถ upgrade to TS 5.0.0 (#โ€‹9834)

v7.43.6: Version 7.43.6

Compare Source

๐Ÿž fix(appendErrors): incorrect type, it can take an array of errors (#โ€‹10125)
โœ๏ธ close #โ€‹10096 react strict mode with mounted field value (#โ€‹10102)
๐Ÿฆฎ fix: isLoading form state (#โ€‹10095)
๐Ÿ“ fix: typos in tsdoc (#โ€‹10088)
๐Ÿฉด close #โ€‹10078 prevent stabled aysnc validation (#โ€‹10082)
๐Ÿž fix #โ€‹10064 native validation when subscribe to isValid (#โ€‹10072)
๐Ÿ“ correct typo in field array type declaration (#โ€‹10066)

thanks to @โ€‹jorisre @โ€‹chrisbarless @โ€‹mjw-isp and @โ€‹adamtowle

v7.43.5: Version 7.43.5

Compare Source

๐Ÿฐ prevent runtime error with subscribe function (#โ€‹10052)
๐Ÿช” close #โ€‹10045 improve useController defaultValue restore under strict mode with double useEffect (#โ€‹10049)
๐Ÿ“ท improve form values state update (#โ€‹10029)

v7.43.4: Version 7.43.4

Compare Source

๐Ÿž fix #โ€‹10021 issue with .next runtime error and fix cypress action (#โ€‹10026)

v7.43.3: Version 7.43.3

Compare Source

๐Ÿ“ fix resetField defaultValue type and reduce any type (#โ€‹10024)
๐Ÿž fix #โ€‹9997 issue on the mounted state is updated with values prop (#โ€‹10001)
Revert "๐Ÿ delete dirty fields node instead of marking as false (#โ€‹9156)" (#โ€‹9996)
๐Ÿ’… improve state subscription consistency (#โ€‹9984)

v7.43.2: Version 7.43.2

Compare Source

๐Ÿž fix #โ€‹9972 input focus with submitted form (#โ€‹9978)
๐Ÿ’‰ improve perf & save some bytes (#โ€‹9968)
๐Ÿž fix #โ€‹9955 useForm values prop keepDirtyValues not update isDirty (#โ€‹9959)
๐Ÿ—‘๏ธ remove JSX message check (#โ€‹9921)

v7.43.1: Version 7.43.1

Compare Source

๐Ÿž fix #โ€‹9871 issue with error type (#โ€‹9873)
๐Ÿž fix #โ€‹9842 clearErrors method does not support global error (#โ€‹9843)

v7.43.0

Compare Source

v7.42.1: Version 7.42.1

Compare Source

๐Ÿž fix #โ€‹9773 useFormState missing state update (#โ€‹9777)
๐Ÿž fix #โ€‹9765 fix issue with strictMode with isValid state (#โ€‹9771)

v7.42.0

Compare Source

v7.41.5: Version 7.41.5

Compare Source

๐Ÿž fix #โ€‹9713 regression on validate function with react native (#โ€‹9714)

thanks @โ€‹Moshyfawn

v7.41.4: Version 7.41.4

Compare Source

๐Ÿž fix #โ€‹9709 calling setValue breaks future onChange calls from a Controller (#โ€‹9710)

thanks @โ€‹Moshyfawn

v7.41.3: Version 7.41.3

Compare Source

๐Ÿ’โ€โ™‚๏ธ close #โ€‹9684 revert UnPackAsyncDefaultValues to avoid TS breaking change

v7.41.2

Compare Source

v7.41.1: ๐ŸŽ… Version 7.41.1

Compare Source

๐Ÿž fix #โ€‹9659 NaN prevent validation update (#โ€‹9660)
๐Ÿ•ฏ๏ธ close #โ€‹9524 useWatch return undefined value (#โ€‹9653)
๐Ÿ“– adjust contributing document (#โ€‹9641)
๐Ÿ’†๐Ÿป fix #โ€‹9621 with the inline default value (#โ€‹9622)
๐Ÿฉป docs: update contribution guidelines (#โ€‹9605)

thanks to @โ€‹Mini-ghost and @โ€‹stefanpl

v7.41.0

Compare Source

v7.40.0

Compare Source

v7.39.7

Compare Source

v7.39.6

Compare Source

v7.39.5

Compare Source

v7.39.4

Compare Source

v7.39.3

Compare Source

v7.39.2

Compare Source

v7.39.1

Compare Source

v7.39.0

Compare Source


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 Mend Renovate. View repository job log here.

@renovate renovate bot added the renovate label Nov 5, 2022
@vercel
Copy link

vercel bot commented Nov 5, 2022

The latest updates on your projects. Learn more about Vercel for Git โ†—๏ธŽ

Name Status Preview Comments Updated (UTC)
knct-iwsq-item-management โŒ Failed (Inspect) May 24, 2024 0:33am

@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from d66e9bc to 2551aeb Compare November 5, 2022 11:58
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.0 Update dependency react-hook-form to v7.39.1 Nov 5, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 2551aeb to c0711a8 Compare November 13, 2022 01:06
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.1 Update dependency react-hook-form to v7.39.2 Nov 13, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from c0711a8 to c6345c5 Compare November 14, 2022 01:26
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.2 Update dependency react-hook-form to v7.39.3 Nov 14, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from c6345c5 to 817414e Compare November 17, 2022 23:17
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.3 Update dependency react-hook-form to v7.39.4 Nov 17, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 817414e to bc85c37 Compare November 24, 2022 07:06
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.4 Update dependency react-hook-form to v7.39.5 Nov 24, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from bc85c37 to 4a02d08 Compare November 30, 2022 03:56
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.5 Update dependency react-hook-form to v7.39.6 Nov 30, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 4a02d08 to 9779703 Compare December 1, 2022 07:54
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.6 Update dependency react-hook-form to v7.39.7 Dec 1, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 9779703 to 6763006 Compare December 3, 2022 01:17
@renovate renovate bot changed the title Update dependency react-hook-form to v7.39.7 Update dependency react-hook-form to v7.40.0 Dec 3, 2022
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 6763006 to 59020c0 Compare December 19, 2022 22:55
@renovate renovate bot changed the title Update dependency react-hook-form to v7.40.0 Update dependency react-hook-form to v7.41.0 Dec 19, 2022
@renovate renovate bot changed the title Update dependency react-hook-form to v7.49.1 Update dependency react-hook-form to v7.49.2 Dec 16, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from edd9f93 to 5c7f753 Compare January 11, 2024 22:29
@renovate renovate bot changed the title Update dependency react-hook-form to v7.49.2 Update dependency react-hook-form to v7.49.3 Jan 11, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 5c7f753 to 3b95766 Compare February 4, 2024 08:32
@renovate renovate bot changed the title Update dependency react-hook-form to v7.49.3 Update dependency react-hook-form to v7.50.0 Feb 4, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 3b95766 to 5803d5f Compare February 9, 2024 13:30
@renovate renovate bot changed the title Update dependency react-hook-form to v7.50.0 Update dependency react-hook-form to v7.50.1 Feb 9, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 5803d5f to 12003ee Compare March 4, 2024 22:50
@renovate renovate bot changed the title Update dependency react-hook-form to v7.50.1 Update dependency react-hook-form to v7.51.0 Mar 4, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 12003ee to fcfa895 Compare March 20, 2024 05:02
@renovate renovate bot changed the title Update dependency react-hook-form to v7.51.0 Update dependency react-hook-form to v7.51.1 Mar 20, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from fcfa895 to 43fd9cd Compare March 29, 2024 22:07
@renovate renovate bot changed the title Update dependency react-hook-form to v7.51.1 Update dependency react-hook-form to v7.51.2 Mar 29, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 43fd9cd to f5639cd Compare April 14, 2024 21:38
@renovate renovate bot changed the title Update dependency react-hook-form to v7.51.2 Update dependency react-hook-form to v7.51.3 Apr 14, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from f5639cd to c865275 Compare May 7, 2024 08:08
@renovate renovate bot changed the title Update dependency react-hook-form to v7.51.3 Update dependency react-hook-form to v7.51.4 May 7, 2024
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from c865275 to e967251 Compare May 24, 2024 12:33
@renovate renovate bot changed the title Update dependency react-hook-form to v7.51.4 Update dependency react-hook-form to v7.51.5 May 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants