Skip to content

Update dependency react-hook-form to v7.88.0 - #63

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

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

Conversation

@renovate

@renovate renovate Bot commented Oct 2, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

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

Release Notes

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

v7.88.0: Version 7.88.0

Compare Source

✨ Features

  • Add Error Message component (#​13472)
  • Add the Error Message component for displaying validation errors from React Hook Form.

🐞 Fixes

  • Fix stale validating state after resetField() (#​13735)
  • Fix errors and touched state remaining for rows removed by replace() (#​13734)
  • Fix stale resolver results updating form state after reset() during handleSubmit() (#​13733)
  • Fix nested registered errors being removed when trigger() targets their parent (#​13732)
  • Fix resolver-reported root errors being dropped during handleSubmit() (#​13731)
  • Fix parent errors being incorrectly set when trigger() targets a field with only nested resolver errors (#​13730)
  • Fix useWatch compute cache not being initialized with the initial output (#​13728)
  • Fix FileList being lost during flatten/expand and omit undefined values in jsonToFormData (#​13725)
  • Fix schemaErrorLookup reporting nested containers as exact-name errors (#​13727)
  • Fix isValidating not being recomputed after unregister() clears validating fields (#​13723)
  • Fix stale resolver state updates after reset() (#​13722)
  • Fix iterateFieldsByAction only breaking out of one loop level (#​13718)
  • Fix stale validation types surviving setError() overwrites (#​13716)
  • Fix reset() not clearing validating fields (#​13714)
  • Fix remove() leaking deleted values onto surviving field-array items (#​13713)
  • Fix the React Server build being unpublished (#​13709)
  • Fix validateField calling setCustomValidity once per key in validate-object mode (#​13707)
  • Fix useFieldArray focus behavior for checkboxes and radio buttons in appended rows (#​13705)
  • Fix getFieldState reading isValidating from the supplied form state (#​13704)
  • Fix unregister() stripping kept values from the submit payload (#​13703)
  • Fix useFormState not re-subscribing when control changes (#​13702)
  • Fix reset() keeping dirtyFields out of sync with isDirty when keepValues is enabled (#​13701)
  • Fix useForm not reconciling correctly when an Activity subtree is initially hidden (#​13698)
  • Fix cleared errors returning after the delayError timer fires (#​13697)
  • Fix cloneObject throwing when checking Blob with instanceof (#​13694)
  • Fix useFieldArray retaining stale fields after an Activity subtree reconnects (#​13688)

🧹 Refactors

  • Extend _isTracked to the remaining multi-key proxy/subscribe form-state checks (#​13699)
  • Extract _isTracked helper for proxy/subscribe form-state checks (#​13690)
  • Remove the unused abortEarly parameter from iterateFieldsByAction (#​13689)
  • Remove redundant optional chaining from clearErrors (#​13696)

📝 Documentation

  • Fix useWatch compute example variable names in JSDoc (#​13700)

📦 Dependencies

❤️ Thank You

v7.87.0

Compare Source

Added
  • shouldTouch option for trigger()
  • OpaqueTypes registry for opaque leaf types
Fixed
  • Inconsistent behavior among useController().field.onChange()-like APIs
  • Controller under a null parent submitting undefined instead of a value
  • ERR_MODULE_NOT_FOUND resolving react-hook-form due to a react-server declaration (Next.js builds)
  • useWatch never reconciling when an Activity subtree is hidden on its first render
  • resetField not recomputing isValid for subscribe-only consumers
  • generateWatchOutput ignoring defaultValue for an array of names
  • useFormState never reconciling when an Activity subtree is hidden on its first render

v7.86.0

Compare Source

Added
  • Type-safe getErrors method
Performance
  • Improve createFormControl
  • Improve clone object check
  • Avoid cloning values in unregister without subscribers
Fixed
  • Field array update leaving stale errors and touched state at the updated index
  • flatten discarding File and Blob values instead of treating them as leaf nodes
  • validateField not passing the field error to setCustomValidity when criteriaMode is all
  • hasValidation treating falsy but valid values (min: 0, max: 0, minLength: 0, maxLength: 0, required: '') as no validation
  • setValue targeting a nested leaf not notifying a Controller registered on a field array item root
  • setValues not updating fields registered under an object or array value
  • useWatch returning a stale value on name change when the new value is null
  • unregister inverting keepDirty when broadcasting isDirty

v7.85.0

Compare Source

Added
  • Support <Activity />
Fixed
  • getFieldState error resolution from a field path
  • useWatch discarding useForm({ defaultValues }) in favor of its own defaultValue before the form mounts
  • setValue emitting a duplicate values state notification for fields without a native input ref
  • Stale render re-creating a field array path vacated by an array action
  • useFieldArray root-level error (errors.name.root) being lost on append/prepend/insert/remove
  • min/max validation being skipped for valueAsDate fields

v7.84.0

Compare Source

v7.83.0: Version 7.83.0

Compare Source

⚡ Improvements
  • enhance getEventValue to handle file inputs (#​13289)
  • type perf: improve TypeScript performance with a hard cap at 10 levels of recursive type depth (#​13529)
  • type perf: improve type performance (#​13528)
🐞 Fixes
  • fix: clear internal errors state on argument-less clearErrors() (#​13613)
  • fix: preserve dirtyFields reference stability (#​13612)
  • fix: old checkbox/radio elements polluting internal field state (#​13080)
  • fix(useController): re-subscribe onChange/onBlur when control changes (#​13603)
  • fix(types): allow validation messages to be defined even if their related value is undefined (#​13287)

v7.82.0

Compare Source

Added
  • Opt-in delayError option for setValue to delay validation error updates
Fixed
  • Expose resetDefaultValues through form context
  • setValue with shouldDirty not updating dirty state correctly when the form is disabled
  • Preserve dirtyFields boolean values for registered array fields
  • Restore FieldArray component export
Performance
  • Improve getDirtyFields performance, especially for larger forms and deeply nested values

v7.81.0

Compare Source

v7.80.0: Version 7.80.0

Compare Source

🧄 feat: disable useFieldArray fields (#​13535)

const { fields } = useFieldArray({ disabled: true });
fields[0].disabled; // contains disabled props

🛺 perf: make rhf more performant (#​13524)
🐞 fix(deepEqual): empty array and empty plain object should not be equal (#​13533)

thanks to @​JSap0914

v7.79.0

Compare Source

Added
  • disabled option to useFieldArray
Fixed
  • Controller onChange promise return type
  • deepEqual false positives with shared object references
  • shouldUseNativeValidation behavior for radio groups
  • createFormControl stability with fast refresh in dev mode
  • StrictMode value preservation during remount
  • formState.errors reactivity with React compiler

v7.78.0

Compare Source

Fixed
  • Recover Controller fields after reset without rerender (RN issue #​13455)
  • useFormState().isDirty race with async resolver in onChange mode
  • Use reactive values prop over defaultValues when shouldUnregister is true
  • deepEqual for empty non-plain objects
Types
  • Update dirtyFields typing for field arrays with undefined entries

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

Compare Source

Fixed
  • Revert notify all matching field-array roots on nested setValue updates
  • Revert treat NaN as empty when valueAsNumber is true in validateField
  • setValues pass options parameter through to enable validation
  • setValues emit whole-form change without stale name/type
Performance
  • setValues skip redundant per-field deep clones
  • setValues thread skipClone through setFieldValue

v7.76.0

Compare Source

Added
  • Improve isDirty sync with dirtyFields state
Fixed
  • Preserve formState.defaultValues when useFieldArray and watch are used together
  • Preserve nested resolver field-array errors in trigger()
  • Notify all matching field-array roots on nested setValue updates
  • useFieldArray remove leaves array with empty object when using values prop
  • Preserve reset values for conditionally mounted Controller fields with shouldUnregister
  • Propagate setValues updates to mounted Controller fields
  • Native validation tooltip suppression caused by duplicate submit-error focus
  • append({ obj: null }) silently replaced by defaultValues after remove()
  • Errors state when using form-level validation
  • isValidating reactivity when validatingFields is not subscribed

v7.75.0

Compare Source

Added
  • Improve getDirtyFields to prune empty fields
  • TypeScript 6.0 support
Fixed
  • Include setValues in FormProvider context value
  • Preserve watch updates on field array unmount
  • Prevent useWatch re-render when unrelated field validation occurs
  • Recompute isDirty after re-registering a previously unregistered field

v7.74.0

Compare Source

Added
  • setValues API
Fixed
  • Preserve previous field value when useController name changes
  • Handle null parent when unregistering nested field
  • Treat NaN as empty when valueAsNumber is true in validateField

v7.73.1

Compare Source

Fixed
  • Reverted setValues that was accidentally included in patch; fix build to exclude test files

v7.72.1

Compare Source

Fixed
  • Prevent setValue with shouldDirty from polluting unrelated dirty fields
  • Memoize control in HookFormControlContext to prevent render conflicts
  • isNameInFieldArray should check all ancestor paths for nested field arrays
  • formState.isValid incorrect on Controller re-mount

v7.72.0

Compare Source

Added
  • Built-in form-level validate option
  • Subscribe formState to track submit state
Fixed
  • Checkbox form validation ignored with native validation
  • Prevent useFieldArray from marking unrelated fields as dirty

v7.71.2

Compare Source

Fixed
  • clearErrors emit name signal for targeted field updates
  • Use DeepPartialSkipArrayKey for WatchObserver value parameter

v7.71.1

Compare Source

Fixed
  • Issue with booleans_as_integers value handling

v7.71.0

Compare Source

v7.70.0

Compare Source

Fixed
  • Prevent field array ghost elements with keepDirtyValues
  • Improve watch return types
  • Improve invalid date handling in deepEqual and validation
  • Handle branded types correctly in DeepPartial
  • Fix native validation focus issue
  • Prevent duplicate subscription trigger in setValue

v7.69.0

Compare Source

Added
  • Align <Watch /> API with useWatch
Fixed
  • Security: CVE-2025-67779, CVE-2025-55184, CVE-2025-55183, CVE-2025-55182
  • Preserve isValid state when keepIsValid option is used
  • Ensure createFormControl.subscribe subscription listens only to subscribed changes
  • Batch isValidating state updates with validation result
  • Resolve race condition between setError and setFocus

v7.68.0

Compare Source

Added
  • <FormStateSubscribe /> component
Fixed
  • Clear validation errors synchronously in reset() to fix Next.js 16 Server Actions issue

v7.67.0

Compare Source

Added
  • exact option for useController props
Fixed
  • Allow undefined value with async defaultValues in Controller
  • Correct PathValueImpl type inference

v7.66.1

Compare Source

Performance
  • Reduce redundant property access in getDirtyFields
Fixed
  • Skip setValid() during batch array updates
  • Recompute isValid after reset when values update asynchronously
  • Handle NaN comparison correctly using Object.is in deepEqual

v7.66.0

Compare Source

Added
  • useWatch and useController now react to name prop changes
Fixed
  • watch() returning undefined immediately after reset()
  • Correct render function parameter typing for <Watch /> component

v7.65.0

Compare Source

Added
  • <Watch /> component
Fixed
  • Respect parent-provided useFieldArray rules
  • getDirtyFields submit fields with null values when using useForm

v7.64.0

Compare Source

Added
  • Support optional array fields in PathValueImpl type
Fixed
  • Preserve Controller's defaultValue with shouldUnregister prop

v7.63.0

Compare Source

Added
  • Improve get dirty fields logic
  • Extra form values accessible via formState
Fixed
  • Only execute trigger function when deps has a valid array
  • Unregister previous field when switching conditional Controllers
  • Use field name to update isValidating fields

v7.62.0

Compare Source

Fixed
  • Sync two defaultValues after reset with new defaultValues
  • Field name type conflict in nested FieldErrors
  • Prevent onBlur for readOnly fields
  • Do not override prototype of data in cloneObject

v7.61.1

Compare Source

Fixed
  • Reverted watch return type change based on defaultValue (caused regressions)

v7.61.0

Compare Source

Added
  • compute prop for useWatch subscription
Fixed
  • Subscribe with latest defaultValues
  • Trigger watch callbacks only in response to value changes
  • Track name with setValue subscription callbacks
  • Handle explicit "multipart/form-data" encType in <Form /> component
  • Remove React wildcard import to resolve ESM build issues

v7.60.0

Compare Source

Added
  • reset with keepFieldsRef option to keep fields reference
Fixed
  • Remove Set from clone object

v7.59.0

Compare Source

Added
  • Support deep equality checking with circular references
Fixed
  • Issue with formData reference clone
  • Issue with undefined value for submit data
  • useWatch object variable param handling

v7.58.1: Version 7.58.1

Compare Source

🔧 check window.crypto undefined (#​12893)

v7.58.0

Compare Source

Added
  • FieldArrayPathByValue type
  • Use stringToPath to prevent errors at field names containing quotes
Fixed
  • Incorrect formControl return from useForm
  • Initial useFieldArray fields population

v7.57.0

Compare Source

Added
  • Focus form field for errors supplied via errors prop
  • Export UseFormResetFieldOptions type for resetField API
  • Root errors count in schema error lookup
Fixed
  • Type info for callback args in subscribe
  • Proper types for form.subscribe
  • useController focus function runtime issue
  • setValue skips values not in own properties (prevents infinite call stack with self-referencing proto)
  • Checkbox duplication handling in useFieldArray
  • mode and reValidateMode reactivity
  • Default value being overwritten by values prop regression

v7.56.4: Version 7.56.4

Compare Source

🐞 fix: Changes setValue to skip values that are not in ownProperties to prevent infinite call stack (#​12731)
🐞 fix: checkbox duplication handling in useFieldArray (#​12793)
🐞 fix: make mode and reValidateMode reactive (#​12803)

v7.56.3: Version 7.56.3

Compare Source

Revert "📭 close #​12773 pass input ref instead partial (#​12775)"

v7.56.2: Version 7.56.2

Compare Source

🐞 fix #​12785 regression on default value gets overwritten by values props (#​12790)
🐞 fix: use layoutEffect in useWatch for subscription similar to useForm (#​12786)
🐞 fix #​12772 reset form useWatch to utilize ref for defaultValue and … (#​12780)
📭 close #​12773 pass input ref instead partial (#​12775)

v7.56.1: Version 7.56.1

Compare Source

🐞 fix #​12761 #​12762 issue with usage reset isReady formState (#​12765)
🐞 fix #​12763 import warning with named exports (#​12764)

v7.56.0

Compare Source

Added
  • Reactive mode and reValidateMode support
  • isReady state for subscription
Fixed
  • Regression on move/swap in useFieldArray input update
  • Use useIsomorphicLayoutEffect to address SSR warning

v7.55.0

Compare Source

Added
  • createFormControl and subscribe function
  • Infer resolver output types
  • Allow components with useController hook to be memoized
  • Track disabled fields and only omit data on submit
  • Stable reference for useWatch defaultValue
  • handleSubmit with native events support
Fixed
  • Type inference for useFormContext
  • values and defaultValues work correctly with createFormControl and useMemo
  • Prevent infinite render with condition check
  • Valid state update with onBlur mode
  • disabled field value not returned as undefined in resolver
  • revalidateMode issue with useFieldArray validation
  • useController unregister issue with strict mode
  • setError in useEffect not working inside FormProvider context
  • useController return props reference stability

v7.54.2: Version 7.54.2

Compare Source

⚛️ fix #​12478 issue should unregister input with controller (#​12480)
⏰ close #​12443 track disabled fields and only omit data on submit (#​12491)
⚛️ upgrade e2e automation app to react 19 (#​12482)
🧪 test(useWatch): destructure setValue from useForm

Thanks very much, @​marcalexiei for your contribution to the documentation!

v7.54.1: Version 7.54.1

Compare Source

Revert "🦥 fix: useForm should return a new object on formState changes (#​12424)" (#​12475)

v7.54.0

Compare Source

Changed
  • useForm return methods will be memorized based formState update

v7.53.2: Version 7.53.2

Compare Source

🐞 fix #​12398 staled disabled issue with resubmit form (#​12403)
🐞 fix: add type guard to fieldRef.select (#​12390)
Revert "🏺 watch reference update on formState update (#​12326)" (#​12391)

thanks to @​developer-bandi

v7.53.1: Version 7.53.1

Compare Source

🐞 fix: #​12294 ensure Invalid Date is evaluated correctly (#​12295)
🐞 fix #​12316 setValue should work for arrays of primitives to handle checkboxes (#​12316) (#​12317)
🐞 fix #​12097 Use dirty fields along with mount names for form reset with keepDirtyValues (#​12211)
🫀 fix #​12237 disabled state trigger formState dirty/dirtyFields to update (#​12239)
🐞 fix #​12291 field array remove cause undefined with FormData (#​12305)
📝 improve flatten function with object type check (#​12306)
🖐️ improve: resolve type of set function (#​12145)
🔧 chore: upgrade eslint to v9 (#​12150)
📖 fix: code example input field placeholder name (#​12296)
📖 docs: fix typo in code example (#​12271)

thanks to @​rasikhq @​abnud11 @​crypt0box @​developer-bandi @​matmannion @​hasancruk & @​vismay7

v7.53.0

Compare Source

Added
  • add support for onBlur with formState isValid
Changed
  • validateFields will only trigger re-render for async validation

v7.52.2: Version 7.52.2

Compare Source

👍 close #​12108 useController should subscribe to exact field name of form's state (#​12109)
👍 chore: upgrade app deps
🩻 fix: add useCallback for ref callback (#​12078)
🚀 fix: skip call executeBuiltInValidation if no sub-fields left (#​12054)

thanks to @​newsiberian, @​Wendystraite and @​abnud11

v7.52.1: Version 7.52.1

Compare Source

🐞 fix #​12024 dirty not update issue with values prop (#​12041)
🐞 fix: field array validate rules shift errors (#​12033)

thanks to @​JardelCheung

v7.52.0: Version 7.52.0

Compare Source

⚛️ close #​11932 enable react 19 peer dependency (#​11935)
👮‍♀️ close #​11954 getFieldState remove unnessaried inValidating and touched subscription (#​11995)
🐞 fix #​11985 logic createFormControl check field before usage (#​11986)
⌨️ fix: enforce type safety for deps property in RegisterOptions (#​11969)
🐞 fix #​11922 keep dirty on reset with dirty fields (#​11958)
🚔 close #​11937 add validation in the cleanup process in useController (#​11938)
Revert "⌨️ close: correct type of error field in getFieldState return object (#​11831)"
📖 fix: change info.values type in WatchObserver (#​11917)

thanks to @​nakaakist, @​IdoBouskila, @​pincy and @​peinguin

v7.51.5: Version 7.51.5

Compare Source

📖 fix broken link to examples in README.md (#​11805)
⌨️ close: correct type of error field in getFieldState return object (#​11831)
🐞 fix #​11842 radio buttons not disabled when multiple share a name (#​11873)
🐞 fix #​11821 set value with disabled false before mount (#​11880)
🐞 fix setError to preserve existing errors elsewhere in the object (#​11888)
⌨️ fix: add info.value type to WatchObserver (#​11872)
🫡 fix issue with internal set api (#​11915)

thanks to @​mjr2595 @​erashu212 @​SimonJTurner and @​peinguin

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: Version 7.51.3

Compare Source

🐞 fix #​11773 regression on dirty check with reset (#​11775)

v7.51.2: Version 7.51.2

Compare Source

🐞 fix #​11719 validation stuck on true state (#​11723)

v7.51.1: Version 7.51.1

Compare Source

🐛 bug(validatingFields, trigger): handle all fields validation trigger (#​11624)
💚 ci: cleanup actions versions (#​11629)
🐞 fix #​11590 issue with trigger on validatingFields (#​11613)

thanks to @​Moshyfawn

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

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

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.

@vercel

vercel Bot commented Oct 2, 2023

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
portfolio ✅ Ready (Inspect) Visit Preview 💬 Add feedback Oct 2, 2023 8:11am

@renovate renovate Bot changed the title Update dependency react-hook-form to v7.47.0 Update dependency react-hook-form to v7.48.0 Nov 4, 2023
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 8ca51dd to 5644ac3 Compare November 4, 2023 22:07
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.48.0 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 5644ac3 to 90bc096 Compare November 5, 2023 01:50
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.48.1 Update dependency react-hook-form to v7.48.2 Nov 5, 2023
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 90bc096 to 4006b8e Compare November 5, 2023 06:55
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.48.2 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 4006b8e to 0ff5300 Compare December 9, 2023 22:46
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.49.0 Update dependency react-hook-form to v7.49.1 Dec 12, 2023
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 0ff5300 to 089388b Compare December 12, 2023 22:11
@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 13, 2023
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 089388b to e1e57e5 Compare December 13, 2023 13:07
@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 8, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from e1e57e5 to b35167a Compare January 8, 2024 21:33
@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 1, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from b35167a to 0d555ab Compare February 1, 2024 09:34
@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 6, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 0d555ab to 686907c Compare February 6, 2024 13:57
@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 1, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 686907c to 712950b Compare March 1, 2024 22:21
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 712950b to 3341389 Compare March 17, 2024 03:19
@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 17, 2024
@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 26, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 3341389 to 30b1faf Compare March 26, 2024 22:54
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 30b1faf to 9bbdca4 Compare April 11, 2024 22:22
@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 11, 2024
@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 4, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 9bbdca4 to dbfeeae Compare May 4, 2024 07:21
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.53.1 Update dependency react-hook-form to v7.53.2 Nov 9, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 1edfb42 to f4fcbed Compare November 9, 2024 01:10
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from f4fcbed to bbf763e Compare December 7, 2024 00:38
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.53.2 Update dependency react-hook-form to v7.54.0 Dec 7, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from bbf763e to 01b3ad6 Compare December 13, 2024 01:08
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.54.0 Update dependency react-hook-form to v7.54.1 Dec 13, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 01b3ad6 to aed41e1 Compare December 20, 2024 23:48
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.54.1 Update dependency react-hook-form to v7.54.2 Dec 20, 2024
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from aed41e1 to 87bd314 Compare March 28, 2025 23:27
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.54.2 Update dependency react-hook-form to v7.55.0 Mar 28, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 87bd314 to 33daa9d Compare April 20, 2025 11:07
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.55.0 Update dependency react-hook-form to v7.56.0 Apr 20, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 33daa9d to a0f5478 Compare April 22, 2025 22:49
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.56.0 Update dependency react-hook-form to v7.56.1 Apr 22, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from a0f5478 to da0b40f Compare May 3, 2025 23:02
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.56.1 Update dependency react-hook-form to v7.56.2 May 3, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from da0b40f to ec6fa03 Compare May 8, 2025 03:41
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.56.2 Update dependency react-hook-form to v7.56.3 May 8, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from ec6fa03 to 7f43371 Compare May 17, 2025 02:38
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.56.3 Update dependency react-hook-form to v7.56.4 May 17, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 7f43371 to 18c6961 Compare June 6, 2025 04:25
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.56.4 Update dependency react-hook-form to v7.57.0 Jun 6, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 18c6961 to ed9d51d Compare June 15, 2025 11:48
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.57.0 Update dependency react-hook-form to v7.58.0 Jun 15, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from ed9d51d to b512743 Compare June 17, 2025 16:07
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.58.0 Update dependency react-hook-form to v7.58.1 Jun 17, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from b512743 to 9e9cd50 Compare June 28, 2025 02:33
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.58.1 Update dependency react-hook-form to v7.59.0 Jun 28, 2025
@renovate
renovate Bot force-pushed the renovate/react-hook-form-7.x branch from 9e9cd50 to 7046f9e Compare July 4, 2025 22:53
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