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 v2.9.11 #13

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Dec 6, 2021

This PR contains the following updates:

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

Release Notes

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

v2.9.11

Compare Source

Bug Fixes

v2.9.10

Compare Source

Bug Fixes

v2.9.9

Compare Source

Bug Fixes

v2.9.8

Compare Source

Bug Fixes

v2.9.7

Compare Source

Bug Fixes

v2.9.6

Compare Source

Bug Fixes
  • yup: yup wrong import statement assuming default export (#​427) (928afae)

v2.9.5

Compare Source

Bug Fixes
  • renamed private packages to avoid ambiguity with existing official packages. (#​424) (18ae921)

v2.9.4

Compare Source

Bug Fixes

v2.9.3

Compare Source

Breaking Change
  • compile error with UnpackNestedValue

BREAKING CHANGE: This change will update package dependency with react-hook-form to 7.33.0 above (52a6e07)

v2.9.2

Compare Source

Bug Fixes

v2.9.1

Compare Source

Bug Fixes
  • ajv resolver to work with unlimited layers of nesting (#​412) (692fe65)

v2.9.0

Compare Source

Features
import { useForm } from 'react-hook-form';
import { ajvResolver } from '@​hookform/resolvers/ajv';

// must use `minLength: 1` to implement required field
const schema = {
  type: 'object',
  properties: {
    username: {
      type: 'string',
      minLength: 1,
      errorMessage: { minLength: 'username field is required' },
    },
    password: {
      type: 'string',
      minLength: 1,
      errorMessage: { minLength: 'password field is required' },
    },
  },
  required: ['username', 'password'],
  additionalProperties: false,
};

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

  return (
    <form onSubmit={handleSubmit((data) => console.log(data))}>
      <input {...register('username')} />
      {errors.username && <span>{errors.username.message}</span>}
      <input {...register('password')} />
      {errors.password && <span>{errors.password.message}</span>}
      <button type="submit">submit</button>
    </form>
  );
};

v2.8.10

Compare Source

Bug Fixes

v2.8.9

Compare Source

Bug Fixes

v2.8.8

Compare Source

Bug Fixes

v2.8.7

Compare Source

Bug Fixes

v2.8.6

Compare Source

Bug Fixes

v2.8.5

Compare Source

Bug Fixes

v2.8.4

Compare Source

Bug Fixes

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 was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented Dec 6, 2021

This pull request is being automatically deployed with Vercel (learn more).
To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://vercel.com/ptrkvsky/nomad/AErDzg1uynhzxrYmnX83UVc5Zw1R
✅ Preview: https://nomad-git-renovate-hookform-resolvers-2x-ptrkvsky.vercel.app

@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from df83de9 to 406962b Compare December 12, 2021 21:54
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.4 fix(deps): update dependency @hookform/resolvers to v2.8.5 Dec 12, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 406962b to 87ee2cc Compare January 18, 2022 10:57
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 87ee2cc to a685d6a Compare January 18, 2022 12:37
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.5 fix(deps): update dependency @hookform/resolvers to v2.8.7 Jan 18, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from a685d6a to 96b49d6 Compare January 18, 2022 23:31
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.7 fix(deps): update dependency @hookform/resolvers to v2.8.8 Jan 19, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 96b49d6 to 6f1843a Compare May 15, 2022 10:49
@vercel
Copy link

vercel bot commented May 15, 2022

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

Name Status Preview Comments Updated
nomad ❌ Failed (Inspect) Mar 18, 2023 at 6:03PM (UTC)

@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.8 fix(deps): update dependency @hookform/resolvers to v2.8.9 May 15, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 6f1843a to eac020a Compare May 17, 2022 10:58
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.9 fix(deps): update dependency @hookform/resolvers to v2.8.10 May 17, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from eac020a to 0f685e3 Compare June 3, 2022 11:15
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.10 fix(deps): update dependency @hookform/resolvers to v2.9.0 Jun 3, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 0f685e3 to 215c0f4 Compare June 10, 2022 13:16
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.0 fix(deps): update dependency @hookform/resolvers to v2.9.1 Jun 10, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 215c0f4 to e5ff26b Compare June 24, 2022 02:58
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.1 fix(deps): update dependency @hookform/resolvers to v2.9.2 Jun 24, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from e5ff26b to 2ca957e Compare June 25, 2022 02:20
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.2 fix(deps): update dependency @hookform/resolvers to v2.9.3 Jun 25, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 2ca957e to 2657aa1 Compare July 7, 2022 10:16
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.3 fix(deps): update dependency @hookform/resolvers to v2.9.4 Jul 7, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 2657aa1 to 535ade7 Compare July 8, 2022 09:47
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.4 fix(deps): update dependency @hookform/resolvers to v2.9.5 Jul 8, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 535ade7 to 808b480 Compare July 15, 2022 17:36
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.5 fix(deps): update dependency @hookform/resolvers to v2.9.6 Jul 15, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 808b480 to 6ed7090 Compare July 27, 2022 00:07
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.6 fix(deps): update dependency @hookform/resolvers to v2.9.7 Jul 27, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 6ed7090 to 3935540 Compare September 25, 2022 16:36
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 3935540 to 4e5cfbc Compare November 20, 2022 17:41
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.7 fix(deps): update dependency @hookform/resolvers to v2.9.10 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 4e5cfbc to db0086b Compare March 18, 2023 17:57
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.9.10 fix(deps): update dependency @hookform/resolvers to v2.9.11 Mar 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants