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 #415

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 2, 2021

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
react-hook-form (source) 6.15.8 -> 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

v7.38.0

Compare Source

v7.37.0

Compare Source

v7.36.1

Compare Source

v7.36.0

Compare Source

v7.35.0

Compare Source

v7.34.2: Version 7.34.2

Compare Source

Revert "๐Ÿงณ let isSubmitting state update after valid form (https://github.com/react-hook-form/react-hook-form/pull/8829)"

v7.34.1: Version 7.34.1

Compare Source

๐Ÿž fix(path): keys of Date | FileList | File shouldn't be add to the PathImpl https://github.com/react-hook-form/react-hook-form/pull/8804
๐Ÿž fix Date, FileList, File and Blob FieldErrors mapping #โ€‹8772
๐ŸšŒ update isSubmitting state after valid form #โ€‹8829

function App() {
  const { formState: { isSubmitting }, register } = useForm()

  console.log(isSubmitting) // isSubmitting will remain false if form is invalid during submission

  return <form onSubmit={handleSubmit(async () => await sleep(1000))}>
    <input {...register('test', { required: true })} />
  </form>
}

๐Ÿงƒ upgrade to cypress 10 #โ€‹8769
๐Ÿ“– fix nested fields example #โ€‹8840
๐Ÿ“– add nested form example #โ€‹8703
๐Ÿ“– improve doc of single watch #โ€‹8773
๐Ÿ“– fixing typo (Contruรญdo to Construรญdo) on pt-BR translation #โ€‹8762

thanks to @โ€‹HarmonyEarth, @โ€‹yleflour, @โ€‹glekner, @โ€‹vemoo, @โ€‹ronny1020 and @โ€‹joaoeffting

v7.34.0

Compare Source

v7.33.1: Version 7.33.1

Compare Source

๐Ÿ fix https://github.com/react-hook-form/react-hook-form/issues/8584: field errors type with optional fields (https://github.com/react-hook-form/react-hook-form/pull/8591)
๐Ÿงณ close https://github.com/react-hook-form/react-hook-form/issues/8600 update code example for NestedValue input
๐Ÿ–ผ Integrate jest-preview into react-hook-form (https://github.com/react-hook-form/react-hook-form/pull/8577)
๐Ÿค“ improve the readability of Merge type (https://github.com/react-hook-form/react-hook-form/pull/8570)
๐Ÿš test: migration from ts-jest to @โ€‹swc/jest (https://github.com/react-hook-form/react-hook-form/pull/8572)
๐Ÿน refactor: use const instead of props (https://github.com/react-hook-form/react-hook-form/pull/8571)
๐Ÿ” feat: Add ability to search test file on watch mode (https://github.com/react-hook-form/react-hook-form/pull/8573)
๐Ÿง˜๐Ÿป ensure the field is focused when selected (https://github.com/react-hook-form/react-hook-form/pull/8566)

thanks to @โ€‹nvh95, @โ€‹elstgav and @โ€‹kotarella1110

v7.33.0

Compare Source

v7.32.2: Version 7.32.2

Compare Source

๐Ÿ‹๐Ÿป improve build dist package size (https://github.com/react-hook-form/react-hook-form/pull/8511)
๐Ÿž fix https://github.com/react-hook-form/react-hook-form/issues/8506 delayError not overwrite existing function call (https://github.com/react-hook-form/react-hook-form/pull/8509)
๐Ÿ“– update the use of validadtionSchema in v7 examples (https://github.com/react-hook-form/react-hook-form/pull/8501)

thanks, @โ€‹bryantobing12

v7.32.1: Version 7.32.1

Compare Source

๐Ÿž fix https://github.com/react-hook-form/react-hook-form/issues/8493 error not trigger with delayError (https://github.com/react-hook-form/react-hook-form/pull/8494)
๐Ÿ” fix null or undefined cases caught by TS ^4.8 (https://github.com/react-hook-form/react-hook-form/pull/8487)
๐Ÿฅธ funnel along with appropriate constraints for (upcoming) TypeScript 4.8 (https://github.com/react-hook-form/react-hook-form/pull/8484)

thanks to @โ€‹DanielRosenwasser

v7.32.0

Compare Source

v7.31.3: Version 7.31.3

Compare Source

๐Ÿง‘โ€๐Ÿ’ป Support TypeScript 4.7+ ESM (https://github.com/react-hook-form/react-hook-form/pull/8390)
๐Ÿงพ Fix typo (https://github.com/react-hook-form/react-hook-form/pull/8389)
โ„น๏ธ fix export types order
๐Ÿช upgrade to TS 4.7 (https://github.com/react-hook-form/react-hook-form/pull/8402)
๐Ÿ•ธ close https://github.com/react-hook-form/react-hook-form/issues/8404 use isWeb instead of globalThis (https://github.com/react-hook-form/react-hook-form/pull/8406)
๐Ÿฅฌ save cloneObject bytes (https://github.com/react-hook-form/react-hook-form/pull/8407)

thanks to @โ€‹davbrito, @โ€‹rossng, @โ€‹hwanyoungChoi and @โ€‹Moshyfawn

v7.31.2: Version 7.31.2

Compare Source

๐Ÿž fix(reset): set isSubmitted to formState value if keepIsSubmitted is true (https://github.com/react-hook-form/react-hook-form/pull/8368)

thanks to @โ€‹blabute

v7.31.1: Version 7.31.1

Compare Source

๐ŸŽญ close #โ€‹7472 include a proxy check with field state to improve useController perf (#โ€‹8334)
๐Ÿž fix #โ€‹8339 Revert "๐Ÿ—‘ remove the reference for blob and file list (https://github.com/react-hook-form/react-hook-form/pull/8305)"
๐Ÿšฎ remove dead code (#โ€‹8337)

thanks to @โ€‹NMinhNguyen

v7.31.0

Compare Source

v7.30.0

Compare Source

v7.29.0

Compare Source

v7.28.1: Version 7.28.1

Compare Source

๐Ÿž fix https://github.com/react-hook-form/react-hook-form/issues/8050 disabled attribute ignored with register checkbox (https://github.com/react-hook-form/react-hook-form/pull/8053)
๐Ÿ“ฆ update package.json to set sideEffect false (https://github.com/react-hook-form/react-hook-form/pull/8041)
๐Ÿ†™ TS 4.6.0 (https://github.com/react-hook-form/react-hook-form/pull/7623)
๐Ÿ“– fix replace API TSDoc for fieldArray

thanks to @โ€‹alexogar and @โ€‹Moshyfawn

v7.28.0

Compare Source

v7.27.1: Version 7.27.1

Compare Source

๐Ÿ› fix https://github.com/react-hook-form/react-hook-form/issues/7853 (useFieldArray): pass context type down to Control (https://github.com/react-hook-form/react-hook-form/pull/7856)
๐Ÿž fix https://github.com/react-hook-form/react-hook-form/issues/7849 issue with unset on multiple dimension array (https://github.com/react-hook-form/react-hook-form/pull/7859)

thanks to @โ€‹Moshyfawn

v7.27.0

Compare Source

v7.26.1: Version 7.26.1

Compare Source

๐Ÿž close https://github.com/react-hook-form/react-hook-form/issues/7758 useController should subscribe to exact field name (https://github.com/react-hook-form/react-hook-form/pull/7759)

thanks to @โ€‹Moshyfawn

v7.26.0: Version 7.26.0

Compare Source

๐Ÿ“š TSDoc

My.Movie.2.mp4

๐Ÿž fix https://github.com/react-hook-form/react-hook-form/issues/7741 is validating reset when async validations are still running (https://github.com/react-hook-form/react-hook-form/pull/7747)
โ›‘ close https://github.com/react-hook-form/react-hook-form/issues/7717 shallow clone errors object in handleSubmit (https://github.com/react-hook-form/react-hook-form/pull/7718)
๐Ÿฆ close https://github.com/react-hook-form/react-hook-form/issues/7703 don't expose internal state in handleSubmit (https://github.com/react-hook-form/react-hook-form/pull/7704)
๐Ÿ‹๏ธ save bytes on parseFloat (https://github.com/react-hook-form/react-hook-form/pull/7697)

thanks to @โ€‹Moshyfawn and @โ€‹tiii

v7.25.3: Version 7.25.3

Compare Source

๐Ÿ˜ญ close #โ€‹7686 regression on replace API and cloneObject on payload (#โ€‹7687)

v7.25.2

Compare Source

v7.25.1: Version 7.25.1

Compare Source

๐Ÿž fix #โ€‹7662 issue with reset file input (#โ€‹7656)
๐Ÿš— improve perf with get proxy formState (#โ€‹7655)
๐Ÿ‹๏ธ remove redundant check (#โ€‹7651)
๐Ÿž fix #โ€‹7648 Unable to setFocus to Controller after reset (#โ€‹7649)
๐Ÿž fix: getFieldState - error might be undefined (#โ€‹7636)
โ›‘ improve useFieldArray code consistency (#โ€‹7628)

thanks to @โ€‹Moshyfawn and @โ€‹michalbundyra

v7.25.0

Compare Source

v7.24.2: Version 7.24.2

Compare Source

๐Ÿ˜ฐ close #โ€‹7593 regression on fieldarray controller/useController unmount with unregister (#โ€‹7596)
๐Ÿฅธ fix type issue with getFieldState and useController (#โ€‹7574)

v7.24.1: Version 7.24.1

Compare Source

๐Ÿ–จ fix #โ€‹7571 cloneObject with setValue passed argument (#โ€‹7572)
๐Ÿฆบ unstable _getFieldState API for retrieve field level state (#โ€‹7475)
๐Ÿ’ป fix build on Windows (#โ€‹7532)

thanks to @โ€‹felixschorer

v7.24.0

Compare Source

v7.23.0

Compare Source

v7.22.5: Version 7.22.5

Compare Source

Merry Christmas! ๐ŸŽ ๐Ÿ””๐ŸŽ„

๐ŸŽณ fix: change type order to make typescript hints for watch available (#โ€‹7353)
๐Ÿ‚ close #โ€‹7341 allow useWatch to fallback to defaultValue with undefined (#โ€‹7360)
๐Ÿž fix #โ€‹7347 defaultValues not populate with disabled input (#โ€‹7359)

thanks to @โ€‹pawk3k and @โ€‹felixschorer

v7.22.4: Version 7.22.4

Compare Source

โš”๏ธ close #โ€‹7348 avoid errors state update with replace and update API (#โ€‹7349)
โŒจ๏ธ include UnpackNestedValue for reset values (#โ€‹7286)
โŒจ๏ธ close #โ€‹7338 update FieldNamesMarkedBoolean type to boolean instead of true (#โ€‹7340)

v7.22.3: Version 7.22.3

Compare Source

๐Ÿ˜ฟ fix #โ€‹7313 shouldUnregister prop with useController/controller after unmount (#โ€‹7317)

v7.22.2: Version 7.22.2

Compare Source

๐Ÿž close #โ€‹7293 with async useFieldArray reset (#โ€‹7299)

v7.22.1: Version 7.22.1

Compare Source

๐Ÿž fix #โ€‹7282 async reset within onSubmit formState update (#โ€‹7285)

v7.22.0

Compare Source

v7.21.2: Version 7.21.2

Compare Source

Revert "๐Ÿ—๏ธ build(esm): Use explicit .mjs extension for ESM (#โ€‹7244)"

thanks to @โ€‹evocateur

v7.21.1: Version 7.21.1

Compare Source

๐Ÿช‘ remove UnionLike type (#โ€‹7187)
๐ŸŒŠ useFieldArray deep nested object issue due to object reference (#โ€‹7240)
๐Ÿ—๏ธ build(esm): Use explicit .mjs extension for ESM (#โ€‹7244)
๐ŸŽฎ close #โ€‹7231 set deep nested value with controlled input via setValue (#โ€‹7232)

thanks to @โ€‹evocateur

v7.21.0

Compare Source

v7.20.5: Version 7.20.5

Compare Source

๐Ÿž fix #โ€‹7174 issue with empty errors object prevent submit

v7.20.4: Version 7.20.4

Compare Source

Revert ๐Ÿ”ข fix #โ€‹7149 Supporting Number Object comparison in deepEqual (#โ€‹7150)

thanks to @โ€‹barrymay

v7.20.3

Compare Source

v7.20.2: Version 7.20.2

Compare Source

๐Ÿž fix #โ€‹7090 shallow clone for object has no prototype methods (#โ€‹7096)
๐Ÿ˜ฎโ€๐Ÿ’จ revert module config (#โ€‹7095)
๐Ÿ“ฆ change node engine to >= 12.0

thanks to @โ€‹barrymay

v7.20.1: Version 7.20.1

Compare Source

๐Ÿฅƒ revert #โ€‹7016 and add type test coverage (#โ€‹7082)
๐Ÿซ€ close #โ€‹7079 flush update at the field array level before app/form-level (#โ€‹7080)

v7.20.0

Compare Source

v7.19.5: Version 7.19.5

Compare Source

๐Ÿž fix #โ€‹7031 fast refresh (#โ€‹7035)

v7.19.4: Version 7.19.4

Compare Source

๐Ÿ’… close #โ€‹7023 issue with async useFieldArray actions (#โ€‹7029)
๐Ÿ‘๏ธ chore(useWatch): making the name a read-only array (#โ€‹7016)
โŒจ๏ธ adds types for no supplied props argument (#โ€‹7017)
๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ close #โ€‹7013 avoid shallow clone for t


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 force-pushed the renovate/react-hook-form-7.x branch 7 times, most recently from 5573e25 to 7690fa7 Compare April 12, 2021 11:55
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 7690fa7 to aca1a8a Compare April 14, 2021 11:08
@renovate renovate bot changed the title Update dependency react-hook-form to v7 Update dependency react-hook-form to v7 - autoclosed Apr 15, 2021
@renovate renovate bot closed this Apr 15, 2021
@renovate renovate bot deleted the renovate/react-hook-form-7.x branch April 15, 2021 11:38
@renovate renovate bot changed the title Update dependency react-hook-form to v7 - autoclosed Update dependency react-hook-form to v7 Apr 15, 2021
@renovate renovate bot reopened this Apr 15, 2021
@renovate renovate bot restored the renovate/react-hook-form-7.x branch April 15, 2021 13:13
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 6 times, most recently from d3adf88 to c3677b6 Compare April 22, 2021 12:44
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 6 times, most recently from e85e8c7 to e18740d Compare April 30, 2021 12:50
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 4 times, most recently from 7aa2f37 to b707b69 Compare May 9, 2021 15:00
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 09a39a7 to e84f326 Compare March 30, 2023 23:06
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 4 times, most recently from f306b0e to 1297b75 Compare June 2, 2023 17:39
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 1297b75 to d37b3bb Compare June 19, 2023 15:03
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from d37b3bb to 4e55b66 Compare June 28, 2023 14:33
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 4e55b66 to a20f8e2 Compare July 17, 2023 15:02
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 2 times, most recently from 212e7d0 to b013629 Compare August 5, 2023 16:58
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 2 times, most recently from b1f3017 to 5c59c56 Compare September 4, 2023 22:14
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 5c59c56 to 6793493 Compare September 21, 2023 12:12
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 6793493 to f491901 Compare October 2, 2023 06:09
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 3 times, most recently from 863f3e8 to 065d6f2 Compare November 5, 2023 07:04
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 3 times, most recently from f8003f7 to 8c30e43 Compare December 13, 2023 11:18
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 8c30e43 to 299e641 Compare January 8, 2024 23:09
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 2 times, most recently from cb1a93a to ec5b306 Compare February 6, 2024 13:24
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from ec5b306 to f25f255 Compare March 1, 2024 21:50
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from f25f255 to 6b4a8f6 Compare March 17, 2024 02:21
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 6b4a8f6 to a323004 Compare March 26, 2024 22:47
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from a323004 to 1974682 Compare April 11, 2024 22:55
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 1974682 to 517936c Compare May 4, 2024 07:41
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 517936c to c0ef621 Compare May 21, 2024 19:43
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.

None yet

0 participants