diff --git a/CHANGELOG.md b/CHANGELOG.md index 68956c04f..21d81bf48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# 13.15.35 + +### Fixes, New Locales and Enhancements + +- [#2663](https://github.com/validatorjs/validator.js/pull/2663) `isISO31661Alpha2`/`isISO31661Alpha3`: add support for Kosovo (`XK` / `XXK`) @johanpoirier-d4 +- [#2661](https://github.com/validatorjs/validator.js/pull/2661) `isHexColor`: ignore non-object options @yuna0831 +- `isTaxID` + - [#2644](https://github.com/validatorjs/validator.js/pull/2644) improve `pt-BR` locale by adding support for alphanumeric CNPJ format @easedu + - [#2675](https://github.com/validatorjs/validator.js/pull/2675) improve `pt-BR` locale by adding support for formatted CPF values @easedu +- [#2643](https://github.com/validatorjs/validator.js/pull/2643) `isPassportNumber`: improve `MX` locale @jesroffrouk +- [#2676](https://github.com/validatorjs/validator.js/pull/2676) `isMobilePhone`: add `fr-DJ` locale @Kartikeya-guthub +- [#2682](https://github.com/validatorjs/validator.js/pull/2682) `isPostalCode`: add `MC` locale @moogblob +- [#2690](https://github.com/validatorjs/validator.js/pull/2690) `isJSON`: allow any valid JSON value to pass @relu91 +- [#2693](https://github.com/validatorjs/validator.js/pull/2693) `isSlug`: restrict allowed characters to valid slug charset @Shrawak +- **Doc fixes and others:** + - [#2658](https://github.com/validatorjs/validator.js/pull/2658) @Manaskarthik28 + - [#2592](https://github.com/validatorjs/validator.js/pull/2592) @noritaka1166 + - [#2591](https://github.com/validatorjs/validator.js/pull/2591) @noritaka1166 + # 13.15.26 ### Fixes, New Locales and Enhancements diff --git a/package.json b/package.json index 70adbbca3..2b5c5c8bb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "validator", "description": "String validation and sanitization", - "version": "13.15.26", + "version": "13.15.35", "sideEffects": false, "homepage": "https://github.com/validatorjs/validator.js", "files": [ diff --git a/src/index.js b/src/index.js index b813c6078..3700cbd6c 100644 --- a/src/index.js +++ b/src/index.js @@ -130,7 +130,7 @@ import isStrongPassword from './lib/isStrongPassword'; import isVAT from './lib/isVAT'; -const version = '13.15.26'; +const version = '13.15.35'; const validator = { version,