redxzeta / Awesome-Adoption

pet adoption near your area
https://pawternityhub.netlify.app/
MIT License
61 stars 132 forks source link

build(deps): bump react-hook-form from 7.38.0 to 7.44.2 #554

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps react-hook-form from 7.38.0 to 7.44.2.

Release notes

Sourced from react-hook-form's releases.

Version 7.44.2

🪟 fix #10456 object.hasown replaced with hasOwnProperty (#10458)

Version 7.44.1

🐞 fix <Form /> component content-type json type missing (#10454)

Version 7.44.0

📄 New <Form /> Component (react-hook-form/react-hook-form#9735)

https://react-hook-form.com/docs/useform/form

  • add try and catch for JSON.stringify
// 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 (react-hook-form/react-hook-form#10322)

useFormContext<FormValue, TransformedValues>()

🚔 added TTransformedValues to FormProvider (react-hook-form/react-hook-form#10368)

FormProviderProps<TFieldValues, TContext, TTransformedValues>

... (truncated)

Changelog

Sourced from react-hook-form's changelog.

Changelog

[7.43.0] - 2023-01-30

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> </> );

[7.42.0] - 2023-01-13

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

... (truncated)

Commits


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #555.