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

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Sep 21, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@hookform/resolvers (source) 2.8.0 -> 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

v2.8.3

Compare Source

Bug Fixes
  • zodResolver: no exported member ParseParamsNoData (#​264) (14683e5)

v2.8.2

Compare Source

Bug Fixes
  • TypeScript issues with the latest react-hook-form version (66182f8)

v2.8.1

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 Sep 21, 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/nextjs-blog/13PoMLMteWcD6WHkr8YTZhyPfDbR
✅ Preview: https://nextjs-blog-git-renovate-hookform-resolvers-2x-ptrkvsky.vercel.app

@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 145f9d2 to 5a4b516 Compare October 6, 2021 07:49
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.1 fix(deps): update dependency @hookform/resolvers to v2.8.2 Oct 6, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 5a4b516 to b2407b9 Compare November 2, 2021 10:53
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.2 fix(deps): update dependency @hookform/resolvers to v2.8.3 Nov 2, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from b2407b9 to 032646d Compare March 7, 2022 11:46
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.3 fix(deps): update dependency @hookform/resolvers to v2.8.8 Mar 26, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 032646d to 85adef1 Compare May 15, 2022 18:38
@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
nextjs-blog ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Mar 22, 2023 at 4:27PM (UTC)

@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 85adef1 to 356a42b Compare June 18, 2022 22:32
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v2.8.8 fix(deps): update dependency @hookform/resolvers to v2.9.1 Jun 23, 2022
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 356a42b to 670eac3 Compare September 25, 2022 22:18
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from 670eac3 to c1f4576 Compare November 20, 2022 16:31
@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.10 Nov 20, 2022
@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 22, 2023
@renovate renovate bot force-pushed the renovate/hookform-resolvers-2.x branch from c1f4576 to f4f7310 Compare March 22, 2023 15:39
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