Skip to content

Bump @hookform/resolvers from 0.1.1 to 1.3.2#9

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/hookform/resolvers-1.3.2
Closed

Bump @hookform/resolvers from 0.1.1 to 1.3.2#9
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/hookform/resolvers-1.3.2

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 30, 2021

Bumps @hookform/resolvers from 0.1.1 to 1.3.2.

Release notes

Sourced from @hookform/resolvers's releases.

v1.3.2

1.3.2 (2021-01-04)

Bug Fixes

Version 1.3.1

esm support to fix bundler incompatibility (#95)

Version 1.3.0

Support Yup ^0.32.0 (#92)

Version 1.2.0

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 = () => {
</tr></table>

... (truncated)

Changelog

Sourced from @hookform/resolvers's changelog.

@hookform/resolvers

1.3.1

Patch Changes

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 dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 30, 2021
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 1, 2021

Superseded by #13.

@dependabot dependabot bot closed this Feb 1, 2021
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/hookform/resolvers-1.3.2 branch February 1, 2021 07:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants

Comments