Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading