Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update dependency @hookform/resolvers to v3 #19

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 2.9.11 -> 3.9.0 age adoption passing confidence

Release Notes

react-hook-form/resolvers (@​hookform/resolvers)

v3.9.0

Compare Source

Features
  • fluentvalidation-ts: add fluentvalidation-ts resolver (#​702) (5fc1e63)

v3.8.0

Compare Source

v3.7.0

Compare Source

Bug Fixes
  • zodResolver: cannot read properties of undefined (reading 'length') (a3e50c6)
Features

v3.6.0

Compare Source

Features

v3.5.0

Compare Source

Features

v3.4.2

Compare Source

Bug Fixes

v3.4.1

Compare Source

Bug Fixes

v3.4.0

Compare Source

v3.3.4

Compare Source

Bug Fixes
  • error handling for array errors with root error (1bfc6ab)

v3.3.3

Compare Source

Bug Fixes

v3.3.2

Compare Source

Bug Fixes

v3.3.1

Compare Source

Bug Fixes

v3.3.0

Compare Source

Bug Fixes
Features
  • add support for root errors for field array (#​621) (5f1a622)
  • pass field names and a context as arguments to a Vest suite (#​584) (3519701)
  • valibot: add more tests, support of criteriaMode and reduce size (#​620) (a9d319d)

v3.2.0

Compare Source

Features

v3.1.1

Compare Source

BREAKING CHANGES

Bug Fixes

You don't need to explicitly provide the type when using the useForm function because it automatically infers the types from the Yup schema.

Before

const schema = Yup.shape({ name: string });

const { register } = useForm<{name: string}>({ resolver: yupResolver(schema) });

After

const schema = Yup.shape({ name: string });

const { register } = useForm({ resolver: yupResolver(schema) });

v3.1.0

Compare Source

Features

v3.0.1

Compare Source

Bug Fixes

v3.0.0

Compare Source

BREAKING CHANGES
  • Yup resolver require Yup v1
  • rename rawValues option to raw
  • classValidationResolver: schema options now includes validator and transformer options
  • Please note that ajv and ajv-errors need to be installed separately, as they are not bundled with resolvers

Before:

schemaOptions?: ValidatorOptions,

After:

schemaOptions?: {
    validator?: ValidatorOptions;
    transformer?: ClassTransformOptions;
  }
Bug Fixes
Features
import { useForm } from 'react-hook-form';
import { typeboxResolver } from '@&#8203;hookform/resolvers/typebox';
import { Type } from '@&#8203;sinclair/typebox';

const schema = Type.Object({
  username: Type.String({ minLength: 1 }),
  password: Type.String({ minLength: 1 }),
});

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: typeboxResolver(schema),
  });

  return (
    <form onSubmit={handleSubmit((d) => console.log(d))}>
      <input {...register('username')} />
      <input type="password" {...register('password')} />
      <input type="submit" />
    </form>
  );
};
Performance Improvements

Configuration

📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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.

@auto-assign auto-assign bot requested review from aorumbayev and cusma May 1, 2023 01:26
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from fb65cdf to 184a2ad Compare June 12, 2023 19:18
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from 184a2ad to c06e67e Compare August 6, 2023 13:16
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch 2 times, most recently from 264598b to 0d10e5a Compare August 29, 2023 01:14
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from 0d10e5a to ef65d98 Compare October 11, 2023 21:49
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from ef65d98 to 0a87fed Compare December 26, 2023 12:01
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from 0a87fed to 2e77b3e Compare January 4, 2024 11:28
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch 2 times, most recently from 0179a14 to bb883e4 Compare May 21, 2024 02:03
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch 2 times, most recently from 15a6738 to 1aceb4f Compare June 6, 2024 01:15
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch 2 times, most recently from 5580cd7 to d48486b Compare July 5, 2024 11:32
@renovate renovate bot force-pushed the renovate/hookform-resolvers-3.x branch from d48486b to 708172d Compare July 6, 2024 02:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant