Releases: react-hook-form/resolvers
Releases · react-hook-form/resolvers
v1.0.0-rc.1
Thanks for the amazing work that @jorisre has done ❤️ -> #60.
We finally have a solution for the modules import issue around TypeScripts -> #20.
Breaking changes
- import { yupResolver } from '@hookform/resolvers';
- import { joiResolver } from '@hookform/resolvers';
- import { superstructResolver } from '@hookform/resolvers';
+ import { yupResolver } from '@hookform/resolvers/yup';
+ import { joiResolver } from '@hookform/resolvers/joi';
+ import { superstructResolver } from '@hookform/resolvers/superstruct';
Version 0.1.1
fix errors with validateAllFieldCriteria (#54)
Version 0.1.0
- Support multiple errors messages(#32)
Version 0.0.6
fix ESLint error: Unable to resolve the path to module '@hookform/resolvers' #19
Version 0.0.5
- fix types
- change umd name from
HookFormResolvers
toReactHookFormResolvers
Version 0.0.4
- improve rollup setting
- change output filename
dist/resolver.js
todist/index.js
dist/resolver.es.js
todist/index.esm.js
- support umd build
dist/index.umd.min.js
- umd name is
HookFormResolvers
- https://unpkg.com/@hookform/[email protected]/dist/index.umd.min.js
- https://cdn.jsdelivr.net/npm/@hookform/[email protected]/dist/index.umd.min.js
- change output filename
- improve eslint & prettier setting
- improve package.json
- move react-hook-form from deps to peerDeps
- add husky and lint-staged
- improve actions workflow
- improve types #12
Version 0.0.2-rc.0
First RC version combined with RHF V6 RC.
https://github.com/react-hook-form/react-hook-form/releases/tag/v6.0.0-rc.1