Skip to content

Update dependency react-hook-form to v7.75.0#279

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

Update dependency react-hook-form to v7.75.0#279
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/react-hook-form-7.x-lockfile

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Mar 15, 2024

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

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

Release Notes

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

v7.75.0: Version 7.75.0

Compare Source

🦧 feat: improve get dirty fields prune empty fields (#​13363)

+ dirtyFields: { test: [{ data: false }] }
- dirtyFields: {} // removed the empty node with false value

🎹 typescript 6.0 (#​13330)
🌡️ chore: minor improvement on setValue & reset (#​13366)
🐞 fix #​13403: include setValues in FormProvider context value (#​13404)
🐞 fix: recompute isDirty after re-registering a previously unregistered field (#​13399)
🐞 fix: preserve watch updates on field array unmount fixes #​13375 (#​13385)
🐞 fix: prevent useWatch re-render when unrelated field validation is … (#​13398)

thanks to @​dfedoryshchev, @​cyky & @​gkarabelos

v7.74.0: Version 7.74.0

Compare Source

🪇 feat: setValues (#​13201)

setValues((data) => {
  return {
    ...data,
    name: 'test'
  }
})

setValues(formValues);

🐞 fix: preserve previous field value when useController name changes (#​13395)
🐞 fix: handle null parent when unregistering nested field (#​13396)
🐞 fix: treat NaN as empty when valueAsNumber is true in validateField (#​13388)
🪢 fix build to exclude test files (#​13387)

thanks to @​Yihao-G & @​mixelburg

v7.73.1

Compare Source

v7.72.1

Compare Source

v7.72.0

Compare Source

v7.71.2

Compare Source

v7.71.1

Compare Source

v7.71.0

Compare Source

v7.70.0

Compare Source

v7.69.0

Compare Source

v7.68.0

Compare Source

v7.67.0

Compare Source

v7.66.1

Compare Source

v7.66.0

Compare Source

v7.65.0

Compare Source

v7.64.0

Compare Source

v7.63.0

Compare Source

v7.62.0

Compare Source

v7.61.1

Compare Source

v7.61.0

Compare Source

v7.60.0

Compare Source

v7.59.0

Compare Source

v7.58.1

Compare Source

v7.58.0

Compare Source

v7.57.0

Compare Source

v7.56.4

Compare Source

v7.56.3

Compare Source

v7.56.2

Compare Source

v7.56.1

Compare Source

v7.56.0

Compare Source

v7.55.0

Compare Source

v7.54.2

Compare Source

v7.54.1

Compare Source

v7.54.0

Compare Source

v7.53.2

Compare Source

v7.53.1

Compare Source

v7.53.0

Compare Source

v7.52.2

Compare Source

v7.52.1

Compare Source

v7.52.0

Compare Source

v7.51.5

Compare Source

v7.51.4

Compare Source

v7.51.3

Compare Source

v7.51.2

Compare Source

v7.51.1

Compare Source

v7.51.0

Compare Source

v7.50.1

Compare Source

v7.50.0

Compare Source

v7.49.3

Compare Source

v7.49.2: Version 7.49.2

Compare Source

🐞 fix #​11292 issue with controller validation prop (#​11294)

v7.49.1: Version 7.49.1

Compare Source

🐞 fix #​11276 issue with disabled omit on Controller (#​11277)
🐞 fix #​11287 disabled prop cause const dirtyFields update (#​11291)

v7.49.0

Compare Source

Added
  • add reactive errors prop at useForm
useForm({
  errors, // Server errors
});

v7.48.2: Version 7.48.2

Compare Source

🐞 #​11106 fix disabled prop not update dirty formState (#​11143)
🐞 fix controller update with disabled prop from useForm (#​11142)

v7.48.1: Version 7.48.1

Compare Source

🐞 fix controller update with disabled prop from useForm

v7.48.0

Compare Source

Added
  • added new disabled prop for useForm to disable the entire form
const App = () => {
  const [disabled, setDisabled] = useState(false);
  const { handleSubmit } = useForm({ disabled });

  return (
    <form
      onSubmit={handleSubmit(async () => {
        setDisabled(true);
        await sleep(100);
        setDisabled(false);
      })}
    / >
  );
}

v7.47.0

Compare Source

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

v7.46.2: Version 7.46.2

Compare Source

🐞 fix implicit type coercion (#​10949)
🙄 close #​10932 omit disabled prop when not defined (#​10937)
🔧 fix controller test is dirty (#​10899)

thanks to @​samimakicc & @​pierluigigiancola

v7.46.1: Version 7.46.1

Compare Source

🐞 fix #​10878 return disabled field state (#​10879)

thanks to @​Moshyfawn

v7.46.0

Compare Source

Added
  • Controller disabled prop
const [disabled, setDisabled] = useState(false);
useController({
  disabled,
});
  • Trigger passed names to construct resolver options
  • Add exact option for array name in useWatch
Changed
  • Update isDirty when setting disabled in register

v7.45.4: Version 7.45.4

Compare Source

🐞 fix #​10767 dep issue with replayio (#​10768)
🐞 fix #​10762 async submit with Form component (#​10766)
🫖 add test case for issue #​10744 to avoid future regressions (#​10759)

thanks to @​eg-bernardo

v7.45.3: Version 7.45.3

Compare Source

📼 add Replay Test Suites (#​10681)
Revert "🧑‍🎓 close #​10585 update controller value on each render (#​10586)"
🐞 close #​10682 make sure action flag gets reset after useEffect (#​10732)

thanks to @​jasonLaster

v7.45.2: Version 7.45.2

Compare Source

🧾 fix(types): async defaultValues await promise value (#​10637)
🥲 revert strict type check on Controller onChange (#​10609)
📖 docs(changelog 7.45.0): typo and format (#​10624)
📖 fix:test-spelling-error (#​10629)

thanks to @​anton-g, @​milhamm, @​moshfeu & @​OlliePrentice

v7.45.1: Version 7.45.1

Compare Source

🐞 fix #​10602 issue with reactive values props update (#​10606)
🧑‍🎓 close #​10585 update controller value on each render (#​10586)
🧪 test(generated-id): setting window performance undefined without ts-ignore (#​10584)

thanks to @​mateoguzmana

v7.45.0

Compare Source

Changed
  • Controller with type check on onChange
- onChange: (...event: any[]) => void;
+ onChange: (event: ChangeEvent | FieldPathValue<TFieldValues, TName>) => void;
  • Include missing generic for useFormContext
- export const useFormContext: <TFieldValues extends FieldValues, TransformedValues extends FieldValues | undefined = undefined>() => UseFormReturn<TFieldValues>;
+ export const useFormContext: <TFieldValues extends FieldValues, TContext = any, TransformedValues extends FieldValues | undefined = undefined>() => UseFormReturn<TFieldValues, TContext, TransformedValues>;

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

Added
  • New <Form /> component
// Send post request with formData
<Form
  action="/api"
  control={control}
  onSuccess={() => {
    alert("Great");
  }}
/>

// Send post request with json form data
<Form action="/api" encType="application/json" headers={{ accessToken: 'test' }}>
  {errors.root?.server.type === 500 && 'Error message'}
  {errors.root?.server.type === 400 && 'Error message'}
</Form>

// Send post request with formData with fetch
<Form
  onSubmit={async ({ formData, data, formDataJson, event }) => {
    await fetch("api", {
      method: "post",
      body: formData,
    });
  }}
/>
  • support TransformedValues with useFormContext

useFormContext<FormValue, TransformedValues>()

  • added TTransformedValues to FormProvider

FormProviderProps<TFieldValues, TContext, TTransformedValues>

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

Added
  • support global error type
const onSubmit = async () => {
  setError('root.serverError', {
    type: response.statusCode,
  });
};
const onClick = () => {
  setError('root.random', {
    type: 'random',
  });
};

return (
  <>
    {errors.root.serverError.type === 400 && <p>server response message</p>}
    <p>{errors.root?.random?.message}</p>
  </>
);

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

Added
  • build in validation validate support second argument for form values
// Making exported validate function isolated for validation
export function validateNumber(_: number, formValus: FormValues) {
  return formValus.number1 + formValus.number2 === 3;
}

<input
  type="number"
  {...register('number1', {
    validate: validateNumber,
    valueAsNumber: true,
  })}
/>;
Changed
  • handleSubmit no longer catch onSubmit callback error
  • Remove deprecated for fieldState.invalid

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

Compare Source

🤦🏻‍♂️fix #​9661 regression on required valueAsNumber (#​9662)

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

Added
  • useForm added values props
const values = await fetch('API');

useForm({
  values, // will reset the form when values updates
  // resetOptions: {
  //   keepDirtyValues: true
  // }
});
  • new isLoading formState for async defaultValues
const {
  formState: { isLoading },
} = useForm();
Changed
  • useForm support async defaultValues props
const {
  formState: { isLoading },
} = useForm({
  defaultValues: fetch('API'),
  // resetOptions: {
  //   keepDirtyValues: true
  // }
});

v7.40.0

Compare Source

Changed
  • async validation (or combined with sync) will always the take the latest validation result and abort the previous

v7.39.7: Version 7.39.7

Compare Source

Revert "🪶 improve useFormContext perf by avoid reference re-create … …with omit (#​9407)"

v7.39.6: Version 7.39.6

Compare Source

🚀 fix fieldArray changes only notify relevant subscribers (#​9448)
🪶 improve useFormContext perf by avoid reference re-create with omit ( #​9407)
💆🏻 fix potential watch() global state overwrite (#​9450)
🦏 close #​9410 improve UX when subscribe to both isValid and errors state (#​9413)
🥨 added eslint rule for no-extra-boolean-cast (#​9449)

thanks to @​elton-okawa

v7.39.5

Compare Source

Changed
  • Conditional render useFormState will trigger an extra re-render to reflect the current formState

v7.39.4: Version 7.39.4

Compare Source

🐞 fix #​9366 useWatch with shadow clone Set data (#​9369)
🐞 fix #​9365 native validation error persists (#​9370)

v7.39.3: Version 7.39.3

Compare Source

🤦 fix #​9355 by revert "🥸 related #​9310 regression to include actual ref instead custom object ( #​9312)"

v7.39.2: Version 7.39.2

Compare Source

⌨️ close #​9339 objects of validation rules type (#​9341)
🥸 related #​9310 regression to include actual ref instead custom object ( #​9312)

v7.39.1: Version 7.39.1

Compare Source

Revert "🤯 use input reference instead custom object (#​9132)" (#​9311)

v7.39.0

Compare Source

Changed
  • isValid formState is no longer only applicable with onChange, onTouched, and onBlur mode.

v7.38.0

Compare Source

Added
  • support build-in validation with input type week and time
<input {...register("week", { min: "2022-W40" })} type="week" />
<input {...register("time", { min: "11:00" })} type="time" />

v7.37.0

Compare Source

Added
  • new formState defaultValues
const { formState, watch } = useForm({
  defaultValues: { name: 'test' },
});
const { defaultValues } = useFormState();

const name = watch('name');

return (
  <div>
    <p>Your name was {defaultValues.name}</p>
    <p>Updated name is {name}</p>
  </div>
);
Changed
  • defaultValues: complex object data contains prototype methods will not be cloned internally

v7.36.1: Version 7.36.1

Compare Source

🪲 fix #​9082 inconsistency between single/group of checkboxes disabled check state (#​9083)
🌡️ improve setFocus to prevent throw error (#​9081)

v7.36.0

Compare Source

Added
  • reset to support callback syntax
reset((formValues) => {
  return {
    ...formValues,
    partialData: 'onlyChangeThis',
  };
});

v7.35.0

Compare Source

Added
  • new type FieldPathByValue field path by value generic implementation
function CustomFormComponent<
  TFieldValues extends FieldValues,
  Path extends FieldPathByValue<TFieldValues, Date>,
>({ control, name }: { control: Control<FieldValues>; name: Path }) {
  const { field } = useController({
    control,
    name,
  });
}

function App() {
  const { control } = useForm<{
    foo: Date;
    baz: string;
  }>();

  return (
    <form>
      <CustomFormComponent control={control} name="foo" /> {/* no error */}
      <CustomFormComponent control={control} name="baz" />{' '}
      {/*  throw an error since baz is string */}
    </form>
  );
}
Changed
  • form context support children prop type
<FormProvider {...methods}>
  <div /> // ✅
  <div /> // ✅
</FormProvider>

v7.34.2: Version 7.34.2

Compare Source

Revert "🧳 let isSubmitting state update after valid form (#​8829)"

v7.34.1: Version 7.34.1

Compare Source

🐞 fix(path): keys of Date | FileList | File shouldn't be add to the PathImpl #​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

Added
  • Build in validation support for useFieldArray with rules prop
useFieldArray({
  name: 'test',
  rules: {
    required: true,
    minLength: 2,
    maxLength: 10,
    validate: (fieldArrayValues) => {
      if (fieldArrayValues[2].title === 'test') {
        return 'validate Error';
      }
    },
  },
});

errors?.test?.root?.message; // access root level errors

v7.33.1: Version 7.33.1

Compare Source

🐏 fix #​8584: field errors type with optional fields (#​8591)
🧳 close #​8600 update code example for NestedValue input
🖼 Integrate jest-preview into react-hook-form (#​8577)
🤓 improve the readability of Merge type (#​8570)
🚝 test: migration from ts-jest to @​swc/jest (#​8572)
🏹 refactor: use const instead of props (#​8571)
🔍 feat: Add ability to search test file on watch mode (#​8573)
🧘🏻 ensure the field is focused when selected (#​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 (#​8511)
🐞 fix #​8506 delayError not overwrite existing function call (#​8509)
📖 update the use of validadtionSchema in v7 examples (#​8501)

thanks, @​bryantobing12

v7.32.1: Version 7.32.1

Compare Source

🐞 fix #​8493 error not trigger with delayError (#​8494)
🔍 fix null or undefined cases caught by TS ^4.8 (#​8487)
🥸 funnel along with appropriate constraints for (upcoming) TypeScript 4.8 (#​8484)

thanks to @​DanielRosenwasser

v7.32.0

Compare Source

Changed
  • UseFormRegisterReturn name type change from string to TFieldName

v7.31.3: Version 7.31.3

Compare Source

🧑‍💻 Support TypeScript 4.7+ ESM (#​8390)
🧾 Fix typo (#​8389)
ℹ️ fix export types order
🪝 upgrade to TS 4.7 (#​8402)
🕸 close #​8404 use isWeb instead of globalThis (#​8406)
🥬 save cloneObject bytes (#​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 (#​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 (#​8305)"
🚮 remove dead code (#​8337)

thanks to @​NMinhNguyen

v7.31.0

Compare Source

Added
  • new: reset optional prop: keepDirtyValues
reset(
  {
    firstName: 'bill', // if firstName is dirty then the value will be retained
    lastName: 'luo',
  },
  { keepDirtyValues: true }, // keep any changed field
);
Changed
  • useFieldArray auto-correct field array errors on user action
const { append } = useFieldArray();

append({ data: '' }); // will auto correct existing field array errors if any

v7.30.0

Compare Source

Changed
  • improve checkboxes value determine by defaultValues
useForm({
  defaultValues: {
    checkboxes: [], // register checkbox will be determine as array of checkboxes
  },
});
register('checkboxes'); // will return array as value

v7.29.0

Compare Source

Changed
  • tsconfig config change from es2017 to es2018

v7.28.1: Version 7.28.1

Compare Source

🐞 fix #​8050 disabled attribute ignored with register checkbox (#​8053)
📦 update package.json to set sideEffect false (#​8041)
🆙 TS 4.6.0 (#​7623)
📖 fix replace API TSDoc for fieldArray

thanks to @​alexogar and @​Moshyfawn

v7.28.0

Compare Source

Changed
  • register API options deps now support string
register('test', { deps: 'test' });

v7.27.1: Version 7.27.1

Compare Source

🐛 fix #​7853 (useFieldArray): pass context type down to Control (#​7856)
🐞 fix #​7849 issue with unset on multiple dimension array (#​7859)

thanks to @​Moshyfawn

v7.27.0

Compare Source

Added
  • new option for setFocus to select the entire field value
>  **Note**
> 
> PR body was truncated to here.


</details>

---

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

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/Blazity/next-saas-starter).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDUuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE1OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

@vercel
Copy link
Copy Markdown

vercel Bot commented Mar 15, 2024

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
next-saas-starter Error Error May 2, 2026 5:24am

Request Review

@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 69312ab to b228791 Compare March 17, 2024 01:42
@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 force-pushed the renovate/react-hook-form-7.x-lockfile branch from b228791 to 54dd05d Compare March 27, 2024 00:12
@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 27, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 54dd05d to 63d3c69 Compare April 11, 2024 23:32
@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 force-pushed the renovate/react-hook-form-7.x-lockfile branch from 63d3c69 to 21a0426 Compare May 4, 2024 07:11
@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-lockfile branch from 21a0426 to 49508a1 Compare May 21, 2024 15:27
@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 21, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 49508a1 to 8c4d5b3 Compare June 16, 2024 01:12
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.51.5 Update dependency react-hook-form to v7.52.0 Jun 16, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 8c4d5b3 to 19b5829 Compare July 2, 2024 11:03
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.52.0 Update dependency react-hook-form to v7.52.1 Jul 2, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 19b5829 to 9ac7bb8 Compare August 3, 2024 07:13
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.52.1 Update dependency react-hook-form to v7.52.2 Aug 3, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 9ac7bb8 to 3b8368f Compare August 24, 2024 06:27
@renovate renovate Bot changed the title Update dependency react-hook-form to v7.52.2 Update dependency react-hook-form to v7.53.0 Aug 24, 2024
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 3b8368f to a145b50 Compare October 19, 2024 01:50
@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-lockfile branch from 3ed0e0f to 1cf5699 Compare March 28, 2025 22:57
@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-lockfile branch from 1cf5699 to 23d1e41 Compare April 20, 2025 10:02
@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-lockfile branch from 23d1e41 to 90aaa30 Compare April 22, 2025 22:44
@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-lockfile branch from 90aaa30 to bb7792b Compare May 4, 2025 02:27
@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 4, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from bb7792b to 79217d2 Compare May 7, 2025 23:58
@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 7, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from 79217d2 to eeed1ff Compare May 17, 2025 02:05
@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-lockfile branch from eeed1ff to e832e36 Compare June 2, 2025 00:49
@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 2, 2025
@renovate renovate Bot force-pushed the renovate/react-hook-form-7.x-lockfile branch from e832e36 to a30f538 Compare June 15, 2025 11:49
@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-lockfile branch from a30f538 to 1cea69d Compare June 17, 2025 14:54
@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
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