Skip to content
This repository has been archived by the owner on Jan 11, 2024. It is now read-only.

fix(deps): update dependency react-hook-form to v7.49.3 #254

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Oct 13, 2021

Mend Renovate

This PR contains the following updates:

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

Release Notes

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

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 the custom object (#โ€‹7014)

thanks to @โ€‹dborysov @โ€‹sfrieson

v7.19.3: Version 7.19.3

Compare Source

๐Ÿž fix #โ€‹7011 reset API with shouldUnregister: true for controlled components (#โ€‹7012)

v7.19.2: Version 7.19.2

Compare Source

๐Ÿž fix #โ€‹7009 fix fast refresh with controller (#โ€‹7010)
๐Ÿ‘๐Ÿป close #โ€‹7001 shouldUnregister: true with useController unmount defaultValue (#โ€‹7008)
๐Ÿง  close #โ€‹6994 issue with mutate original state with shouldUnreigster: true (#โ€‹6998)

v7.19.1: Version 7.19.1

Compare Source

๐Ÿž fix #โ€‹6984 disabled input with register value (#โ€‹6985)
๐Ÿคฒ close #โ€‹6987 avoid shallow clone for object field (#โ€‹6988)

v7.19.0

Compare Source

v7.18.1

Compare Source

  • revert FieldPathWithValue

v7.18.0

Compare Source

v7.17.5: Version 7.17.5

Compare Source

โœจ enable sharing form sections between forms in typescript (#โ€‹6807)
๐Ÿž fix #โ€‹6834 clearErrors not reset isValid formState to true
โš ๏ธ close #โ€‹6830 warning under strict mode with Controller formState update (#โ€‹6832)
๐Ÿงช include test coverage #โ€‹6826 (#โ€‹6827)
โœจ add TypeScript support for optional array fields (#โ€‹6826)
๐Ÿ‘” allow Jest VSCode extension to run successfully on startup (#โ€‹6810)

thanks to @โ€‹barrymay @โ€‹LinusU and @โ€‹SimonSelg

v7.17.4: Version 7.17.4

Compare Source

๐Ÿ˜ฎโ€๐Ÿ’จ fix setFocus api issue #โ€‹6804
โŒจ๏ธ close #โ€‹6761 improve useWatch return array type (#โ€‹6788)
Revert "๐Ÿงถ add support for extended generics in path type (#โ€‹6762)" (#โ€‹6802)
๐Ÿž fix #โ€‹6792 reset keep defaultValues with useWatch return (#โ€‹6794)
โšก๏ธ upgrade eslint to 8.0 and other package (#โ€‹6789)

v7.17.3: Version 7.17.3

Compare Source

๐Ÿฆ— close #โ€‹6777 fall back to `default


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 from b567d02 to cde2eee Compare October 14, 2021 03:09
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.17.3 fix(deps): update dependency react-hook-form to v7.17.4 Oct 14, 2021
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.17.4 fix(deps): update dependency react-hook-form to v7.17.5 Oct 20, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from cde2eee to de4571e Compare October 20, 2021 07:12
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from de4571e to fb3b76d Compare October 27, 2021 08:25
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.17.5 fix(deps): update dependency react-hook-form to v7.18.0 Oct 27, 2021
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.18.0 fix(deps): update dependency react-hook-form to v7.18.1 Nov 1, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 2 times, most recently from f1acf4f to 7394ca9 Compare November 5, 2021 09:15
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.18.1 fix(deps): update dependency react-hook-form to v7.19.0 Nov 5, 2021
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.0 fix(deps): update dependency react-hook-form to v7.19.1 Nov 7, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch 2 times, most recently from 63cf2bc to 1bdb51c Compare November 10, 2021 04:42
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.1 fix(deps): update dependency react-hook-form to v7.19.2 Nov 10, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 1bdb51c to 81aa45e Compare November 10, 2021 09:27
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.2 fix(deps): update dependency react-hook-form to v7.19.3 Nov 10, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 81aa45e to 209f2a6 Compare November 11, 2021 09:22
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.3 fix(deps): update dependency react-hook-form to v7.19.4 Nov 11, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 209f2a6 to 7bf6683 Compare November 12, 2021 02:28
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.4 fix(deps): update dependency react-hook-form to v7.19.5 Nov 12, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 7bf6683 to 2764b3c Compare November 19, 2021 01:48
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.19.5 fix(deps): update dependency react-hook-form to v7.20.0 Nov 19, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 2764b3c to 2fe8f48 Compare November 19, 2021 10:53
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.20.0 fix(deps): update dependency react-hook-form to v7.20.1 Nov 19, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 2fe8f48 to 221e455 Compare November 20, 2021 02:18
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.20.1 fix(deps): update dependency react-hook-form to v7.20.2 Nov 20, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 221e455 to c8253ed Compare November 26, 2021 08:16
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.20.2 fix(deps): update dependency react-hook-form to v7.20.3 Nov 26, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from c8253ed to eff682e Compare November 26, 2021 14:18
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.20.3 fix(deps): update dependency react-hook-form to v7.20.4 Nov 26, 2021
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 30de54f to a33280e Compare June 19, 2023 14:44
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.45.0 fix(deps): update dependency react-hook-form to v7.45.1 Jun 28, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from a33280e to cc9aa9b Compare June 28, 2023 13:38
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.45.1 fix(deps): update dependency react-hook-form to v7.45.2 Jul 17, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from cc9aa9b to e1a6b99 Compare July 17, 2023 13:57
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.45.2 fix(deps): update dependency react-hook-form to v7.45.3 Aug 5, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from e1a6b99 to eb4f531 Compare August 5, 2023 04:29
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.45.3 fix(deps): update dependency react-hook-form to v7.45.4 Aug 5, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from eb4f531 to c08f8f0 Compare August 5, 2023 15:28
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from c08f8f0 to 15ddd73 Compare September 3, 2023 12:52
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.45.4 fix(deps): update dependency react-hook-form to v7.46.0 Sep 3, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 15ddd73 to 62665aa Compare September 4, 2023 22:19
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.46.0 fix(deps): update dependency react-hook-form to v7.46.1 Sep 4, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 62665aa to ecfbe97 Compare September 21, 2023 14:20
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.46.1 fix(deps): update dependency react-hook-form to v7.46.2 Sep 21, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from ecfbe97 to 3b0f05f Compare October 2, 2023 06:14
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.46.2 fix(deps): update dependency react-hook-form to v7.47.0 Oct 2, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 3b0f05f to 9b858ee Compare November 5, 2023 00:33
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.47.0 fix(deps): update dependency react-hook-form to v7.48.1 Nov 5, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 9b858ee to 5bb1c81 Compare November 6, 2023 02:30
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.48.1 fix(deps): update dependency react-hook-form to v7.48.2 Nov 6, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 5bb1c81 to 884323d Compare December 9, 2023 22:51
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.48.2 fix(deps): update dependency react-hook-form to v7.49.0 Dec 9, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 884323d to 49396d1 Compare December 13, 2023 00:30
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.49.0 fix(deps): update dependency react-hook-form to v7.49.1 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 49396d1 to 20baf1d Compare December 13, 2023 10:54
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.49.1 fix(deps): update dependency react-hook-form to v7.49.2 Dec 13, 2023
@renovate renovate bot force-pushed the renovate/react-hook-form-7.x branch from 20baf1d to 234e374 Compare January 8, 2024 21:43
@renovate renovate bot changed the title fix(deps): update dependency react-hook-form to v7.49.2 fix(deps): update dependency react-hook-form to v7.49.3 Jan 8, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants