Skip to content

Releases: icebob/fastest-validator

v1.0.0-beta2

15 Nov 22:07
Compare
Choose a tag to compare
v1.0.0-beta2 Pre-release
Pre-release

Changes

  • fix array rule return value issue.

v1.0.0-beta1

15 Nov 22:02
Compare
Choose a tag to compare
v1.0.0-beta1 Pre-release
Pre-release

The full library has been rewritten. It uses code generators in order to be much faster.

Breaking changes

This new version contains several breaking changes.

Rule logic changed

The rule codes have been rewritten to code generator functions. Therefore if you use custom validators, you should rewrite them after upgrading.

Convert values

The number, boolean and date rules have a convert: true property. In the previous version it doesn't modify the value in the checked object, just converted the value to the rules. In the version 1.0 this property converts the values in the checked object, as well.

New

Sanitizations

The sanitization function is implemented. There are several rules which contains sanitizers. Please note, the sanitizers change the original checked object values.

Rule Property Description
boolean convert Convert the value to a boolean.
number convert Convert the value to a number.
date convert Convert the value to a date.
string trim Trim the value.
string trimLeft Left trim the value.
string trimRight Right trim the value.
string lowercase Lowercase the value.
string uppercase Uppercase the value.
string localeLowercase Lowercase the value with String.toLocaleLowerCase.
string localeUppercase Uppercase the value with String.toLocaleUpperCase.
string padStart Left padding the value.
string padEnd Right padding the value.
string convert Convert the value to a string.
email normalize Trim & lowercase the value.
forbidden remove Remove the forbidden field.
object strict: "remove" Remove additional properties in the object.
* default Use this default value if the value is null or undefined.

Root element validation

Basically the validator expects that you want to validate a Javascript object. If you want others, you can define the root level schema, as well. In this case set the $$root: true property.

Example to validate a string variable instead of object

const schema = {
    $$root: true,
    type: "string", 
    min: 3, 
    max: 6
};

v.validate("John", schema); // Valid
v.validate("Al", schema); // Fail, too short.

Enhanced shorthand types

You can use string-based shorthand validation definitions in the schema with properties.

{
    password: "string|min:6",
    age: "number|optional|integer|positive|min:0|max:99",

    retry: ["number|integer|min:0", "boolean"] // multiple types
}

Other changes

New equal rule

It checks the value equal (==) to a static value or another property. The strict property uses === to check values.

Example with static value:

const schema = {
    agreeTerms: { type: "equal", value: true, strict: true } // strict means `===`
}

v.validate({ agreeTerms: true }, schema); // Valid
v.validate({ agreeTerms: false }, schema); // Fail

Example with other field:

const schema = {
    password: { type: "string", min: 6 },
    confirmPassword: { type: "equal", field: "password" }
}

v.validate({ password: "123456", confirmPassword: "123456" }, schema); // Valid
v.validate({ password: "123456", confirmPassword: "pass1234" }, schema); // Fail

properties in object rule

You can use the properties property besides the props property in the object rule.

v0.6.19

25 Oct 19:04
Compare
Choose a tag to compare

Changes

  • update typescript definitions.
  • add "actual" variable into string messages.

v0.6.18

25 Oct 19:02
Compare
Choose a tag to compare

Changes

  • add mac and luhn rules by @intech;
  • update dev dependencies.
  • fix custom rule custom messages issue. #83

v0.6.17

20 Mar 19:26
Compare
Choose a tag to compare

Changes

  • fix typescript definitions.
  • fix strict property compilation.

v0.6.16

20 Mar 19:23
Compare
Choose a tag to compare

Changes

  • fix typescript definitions.

v0.6.15

13 Feb 08:08
Compare
Choose a tag to compare

Changes

  • fix uuid rule. #60
  • fix typescript definitions. #59

v0.6.14

07 Feb 21:34
Compare
Choose a tag to compare

Changes

v0.6.13

07 Feb 21:24
Compare
Choose a tag to compare

Changes

  • add error message for url rule.
  • add numeric attribute to string rule.
  • add alpha, alphanum & alphadash attributes to string rule.
  • add index.d.ts file.
  • fix multiple validator with different messages issue.

v0.6.12

04 Nov 16:52
Compare
Choose a tag to compare

Changes

  • support recursive schemas by @andersnm
  • fix irregular object property names