Skip to content

Releases: react-hook-form/resolvers

v5.0.1

02 Apr 05:50
6e88393
Compare
Choose a tag to compare

5.0.1 (2025-04-02)

Bug Fixes

  • relax version constraint for react-hook-form 7.55.0 → ^7.55.0 (#758) (6e88393)

v5.0.0

01 Apr 09:15
Compare
Choose a tag to compare

5.0.0 (2025-04-01)

Features

  • infer input/output types from schema (#753) (6124c59)

BREAKING CHANGES

  • Requires react-hook-form@7.55.0 or higher

Before
Prior to V5, some projects used manual types like

useForm<FormValues>();

After
With V5, the correct approach is:

useForm<Input, Context, Output>();
useForm<FormInputValues, Context, FormOutputValues>();

This update enables distinct outputs when utilizing features like transform from validation libraries.

ℹ️ The best approach is to let the types be inferred from your schema, rather than manually defining them.

v4.1.3

03 Mar 06:43
50dd4ad
Compare
Choose a tag to compare

4.1.3 (2025-03-03)

Bug Fixes

  • escape square brackets in field name regex pattern (#752) (50dd4ad)

v4.1.2

24 Feb 09:58
ded1746
Compare
Choose a tag to compare

4.1.2 (2025-02-24)

Bug Fixes

  • standard-schema: move @standard-schema/utils to dependencies (#748) (ded1746)

v4.1.1

22 Feb 09:01
8ffada0
Compare
Choose a tag to compare

4.1.1 (2025-02-22)

Bug Fixes

  • standard-schema: Propertly handle object path segments (#746) (8ffada0)

v4.1.0

15 Feb 10:17
8ea953c
Compare
Choose a tag to compare

4.1.0 (2025-02-15)

Features

  • automatically infer values from schema (#739) (caaff8d)

v4.0.0

10 Feb 12:33
f9f9187
Compare
Choose a tag to compare

4.0.0 (2025-02-10)

Bug Fixes

  • add support for names option (#713) (985c48d)
  • arktypeResolver: resolve type error when schema is defined from an ArkType scope (#732) (3233667)
  • handle raw: true option to pass form submission values correctly (#733) (7807f95)
  • validateFieldsNatively: handle undefined object when reading 'refs' (#734) (3da2054)

Features

  • ajv: Keep original validation type while using errorMessage (#728) (5030a59)
  • effectResolver: returns either all errors or only the first one based on criteriaMode (#737) (12d7d8e)
  • standard-schema: add standard-schema resolver (#738) (b75a95a)

BREAKING CHANGES

  • ajv: The AJV Resolver now unwraps the errorMessage object to return the original error types. This update may introduce breaking changes to your projects.

v3.10.0

06 Jan 22:28
10aca41
Compare
Choose a tag to compare

3.10.0 (2025-01-06)

Features

v3.9.1

28 Oct 23:24
3ab415e
Compare
Choose a tag to compare

3.9.1 (2024-10-28)

Bug Fixes

  • Valibot peer dependency to support dist-tags (#723) (3ab415e)

v3.9.0

05 Jul 23:11
5fc1e63
Compare
Choose a tag to compare

3.9.0 (2024-07-05)

Features

  • fluentvalidation-ts: add fluentvalidation-ts resolver (#702) (5fc1e63)
import { useForm } from 'react-hook-form';
import { fluentValidationResolver } from '@hookform/resolvers/fluentvalidation-ts';
import { Validator } from 'fluentvalidation-ts';

class FormDataValidator extends Validator<FormData> {
  constructor() {
    super();

    this.ruleFor('username')
      .notEmpty()
      .withMessage('username is a required field');
    this.ruleFor('password')
      .notEmpty()
      .withMessage('password is a required field');
  }
}

const App = () => {
  const { register, handleSubmit } = useForm({
    resolver: fluentValidationResolver(new FormDataValidator()),
  });

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