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 v1.3.7 #199

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 11, 2020

WhiteSource Renovate

This PR contains the following updates:

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

Release Notes

react-hook-form/resolvers

v1.3.7

Compare Source

Bug Fixes

v1.3.6

Compare Source

Bug Fixes

v1.3.5

Compare Source

Bug Fixes

v1.3.4

Compare Source

Bug Fixes

v1.3.3

Compare Source

Bug Fixes
  • expose array element validation errors in zod resolver (#​119) (ecee1e9)

v1.3.2

Compare Source

Bug Fixes

v1.3.1

Compare Source

esm support to fix bundler incompatibility (#​95)

v1.3.0

Compare Source

Support Yup ^0.32.0 (#​92)

v1.2.0

Compare Source

vestResolver (#​82)

import * as React from 'react';
import { useForm } from 'react-hook-form';
import { vestResolver } from '@​hookform/resolvers/vest';
import vest, { test, enforce } from 'vest';

const validationSuite = vest.create((data = {}) => {
  test('username', 'Username is required', () => {
    enforce(data.username).isNotEmpty();
  });

  test('username', 'Must be longer than 3 chars', () => {
    enforce(data.username).longerThan(3);
  });

  test('password', 'Password is required', () => {
    enforce(data.password).isNotEmpty();
  });

  test('password', 'Password must be at least 5 chars', () => {
    enforce(data.password).longerThanOrEquals(5);
  });

  test('password', 'Password must contain a digit', () => {
    enforce(data.password).matches(/[0-9]/);
  });

  test('password', 'Password must contain a symbol', () => {
    enforce(data.password).matches(/[^A-Za-z0-9]/);
  });
});

const App = () => {
  const { register, handleSubmit, errors } = useForm({
    resolver: vestResolver(validationSuite),
  });

  return (
    <form onSubmit={handleSubmit((data) => console.log(data))}>
      <input type="text" name="username" ref={register} />
      <input type="text" name="password" ref={register} />
      <input type="submit" />
    </form>
  );
};

v1.1.2

Compare Source

fix: superstruct filename typo (#​89)

v1.1.1

Compare Source

fix: IE11 build (#​85)

v1.1.0

Compare Source

Update Superstruct version (#​83)

v1.0.1

Compare Source

  • build: add TS declaration file to ie11 build (#​72)
  • Use right version of react-hook-form for ie11 bundle (#​68)

Configuration

📅 Schedule: 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 has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from 1fc2097 to 63d49e6 Compare December 8, 2020 08:57
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.0.1 fix(deps): update dependency @hookform/resolvers to v1.1.1 Dec 8, 2020
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from 63d49e6 to ada268c Compare January 6, 2021 16:56
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.1.1 fix(deps): update dependency @hookform/resolvers to v1.3.2 Jan 6, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from ada268c to c7f8fa8 Compare February 2, 2021 12:57
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.3.2 fix(deps): update dependency @hookform/resolvers to v1.3.4 Feb 2, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from c7f8fa8 to 2f078dd Compare February 26, 2021 12:41
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.3.4 fix(deps): update dependency @hookform/resolvers to v1.3.5 Feb 26, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from 2f078dd to 2f7bc28 Compare March 26, 2021 13:11
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.3.5 fix(deps): update dependency @hookform/resolvers to v1.3.6 Mar 26, 2021
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from 2f7bc28 to f9f9bf8 Compare March 27, 2021 19:10
@renovate renovate bot force-pushed the renovate/hookform-resolvers-1.x branch from f9f9bf8 to a45db66 Compare March 30, 2021 10:53
@renovate renovate bot changed the title fix(deps): update dependency @hookform/resolvers to v1.3.6 fix(deps): update dependency @hookform/resolvers to v1.3.7 Mar 30, 2021
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.

1 participant