Skip to content

Commit f074abd

Browse files
committed
13.11.0
1 parent 6be9634 commit f074abd

File tree

3 files changed

+32
-2
lines changed

3 files changed

+32
-2
lines changed

CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
# 13.11.0
2+
3+
### New Features / Validators
4+
5+
- [#2144](https://github.com/validatorjs/validator.js/pull/2144) `isFreightContainerID`: for shipping containers IDs @songyuew
6+
- [#2188](https://github.com/validatorjs/validator.js/pull/2188) `isMailtoURI` @uksarkar
7+
8+
### Fixes, New Locales and Enhancements
9+
10+
- [#2025](https://github.com/validatorjs/validator.js/pull/2025) `isIBAN` add `MA` locale @lroudge
11+
- [#2117](https://github.com/validatorjs/validator.js/pull/2117) `isCreditCard` refactor @pano9000
12+
- [#2189](https://github.com/validatorjs/validator.js/pull/2189) `isLocale` add support for more language tags @kwahome
13+
- [#2203](https://github.com/validatorjs/validator.js/pull/2203) `isVAT` for `CU` @jimmyorpheus
14+
- [#2217](https://github.com/validatorjs/validator.js/pull/2217) `isJWT` @Prathamesh061
15+
- [#2222](https://github.com/validatorjs/validator.js/pull/2222) `IsFQDN` test enhancements @aalekhpatel07
16+
- [#2226](https://github.com/validatorjs/validator.js/pull/2226) `isAlpha`, `isAlphanumeric` for `kk-KZ` @BekStar7
17+
- [#2229](https://github.com/validatorjs/validator.js/pull/2229) `isEmail` support `allow_underscores` @guspower
18+
- [#2231](https://github.com/validatorjs/validator.js/pull/2231) `isDate` enhance Date declaration compatibility across multiple environments @CiprianS
19+
- [#2235](https://github.com/validatorjs/validator.js/pull/2235) `isIBAN` add white and blacklist options to the isIBAN validator @edilson
20+
- [#2237](https://github.com/validatorjs/validator.js/pull/2237) `isEmail` do not allow non-breaking space in user part @jeremy21212121
21+
- `isMobilePhone`:
22+
- [#2175](https://github.com/validatorjs/validator.js/pull/2175) `so-SO` @ohersi
23+
- [#2176](https://github.com/validatorjs/validator.js/pull/2176) `fr-CF` @cheboi
24+
- [#2197](https://github.com/validatorjs/validator.js/pull/2197) `es-CU` @klaframboise
25+
- [#2202](https://github.com/validatorjs/validator.js/pull/2202) `pl-PL` @czerwony03
26+
- [#2209](https://github.com/validatorjs/validator.js/pull/2209) `fr-WF` @aidos42
27+
- [#2246](https://github.com/validatorjs/validator.js/pull/2246) `ar-SD` @Hussienma
28+
29+
30+
131
# 13.9.0
232

333
### New Features / Validators

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "validator",
33
"description": "String validation and sanitization",
4-
"version": "13.9.0",
4+
"version": "13.11.0",
55
"sideEffects": false,
66
"homepage": "https://github.com/validatorjs/validator.js",
77
"files": [

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ import isStrongPassword from './lib/isStrongPassword';
126126

127127
import isVAT from './lib/isVAT';
128128

129-
const version = '13.9.0';
129+
const version = '13.11.0';
130130

131131
const validator = {
132132
version,

0 commit comments

Comments
 (0)