Skip to content

Commit 2a3a1c3

Browse files
committed
13.6.0
1 parent 1fa0959 commit 2a3a1c3

3 files changed

Lines changed: 46 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
1-
#### ~13.5.0~ 13.5.1
1+
#### 13.6.0
2+
3+
- **New features**:
4+
- [#1495](https://github.com/validatorjs/validator.js/pull/1495) `isLicensePlate` @firlus
5+
6+
- **Fixes and Enhancements**:
7+
- [#1644](https://github.com/validatorjs/validator.js/pull/1644) `isURL`: Allow URLs to have only a username in the userinfo subcomponent @jbuchmann-coosto
8+
- [#1633](https://github.com/validatorjs/validator.js/pull/1633) `isISIN`: optimization @bmacnaughton
9+
- [#1632](https://github.com/validatorjs/validator.js/pull/1632) `isIP`: improved pattern for IPv4 and IPv6 @ognjenjevremovic
10+
- [#1625](https://github.com/validatorjs/validator.js/pull/1625) fix `[A-z]` regex range on some validators @bmacnaughton
11+
- [#1620](https://github.com/validatorjs/validator.js/pull/1620) fix docs @prahaladbelavadi
12+
- [#1616](https://github.com/validatorjs/validator.js/pull/1616) `isMacAddress`: improve regexes and options @fedeci
13+
- [#1603](https://github.com/validatorjs/validator.js/pull/1603) fix ReDOS vulnerabilities in `isSlug` and `rtrim` @fedeci
14+
- [#1594](https://github.com/validatorjs/validator.js/pull/1594) `isIPRange`: add support for IPv6 @neilime
15+
- [#1577](https://github.com/validatorjs/validator.js/pull/1577) `isEAN`: add support for EAN-14 @varsubham @tux-tn
16+
- [#1566](https://github.com/validatorjs/validator.js/pull/1566) `isStrongPassword`: add `@` as a valid symbol @stingalleman
17+
- [#1548](https://github.com/validatorjs/validator.js/pull/1548) `isBtcAddress`: add base58 @ezkemboi
18+
- [#1546](https://github.com/validatorjs/validator.js/pull/1546) `isFQDN`: numeric domain names @tux-tn
19+
20+
- **New and Improved locales**:
21+
- `isIdentityCard`, `isPassportNumber`:
22+
- [#1595](https://github.com/validatorjs/validator.js/pull/1595) `IR` @mhf-ir @fedeci
23+
- [#1583](https://github.com/validatorjs/validator.js/pull/1583) `ar-LY` @asghaier76 @tux-tn
24+
- [#1574](https://github.com/validatorjs/validator.js/pull/1574) `MY` @stranger26 @tux-tn
25+
- `isMobilePhone`:
26+
- [#1642](https://github.com/validatorjs/validator.js/pull/1642) `zh-CN` @Akira0705
27+
- [#1638](https://github.com/validatorjs/validator.js/pull/1638) `lv-LV` @AntonLukichev
28+
- [#1635](https://github.com/validatorjs/validator.js/pull/1635) `en-GH` @ankorGH
29+
- [#1604](https://github.com/validatorjs/validator.js/pull/1604) `mz-MZ` @salmento @tux-tn
30+
- [#1575](https://github.com/validatorjs/validator.js/pull/1575) `vi-VN` @kyled7
31+
- [#1573](https://github.com/validatorjs/validator.js/pull/1573) `en-SG` @liliwei25
32+
- [#1554](https://github.com/validatorjs/validator.js/pull/1554) `de-CH`, `fr-CH`, `it-CH` @dinfekted
33+
- [#1541](https://github.com/validatorjs/validator.js/pull/1541) [#1623](https://github.com/validatorjs/validator.js/pull/1623) `es-CO` @ezkemboi @tux-tn
34+
- [#1506](https://github.com/validatorjs/validator.js/pull/1506) `ar-OM` @dev-sna
35+
- [#1505](https://github.com/validatorjs/validator.js/pull/1505) `pt-AO` @AdilsonFuxe
36+
- `isPostalCode`:
37+
- [#1628](https://github.com/validatorjs/validator.js/pull/1628) `KR` @greatSumini
38+
- `isTaxID`:
39+
- [#1613](https://github.com/validatorjs/validator.js/pull/1613) `pt-BR` @mschunke
40+
- [#1529](https://github.com/validatorjs/validator.js/pull/1529) `el-GR` @dspinellis
41+
- `isVAT`:
42+
- [#1536](https://github.com/validatorjs/validator.js/pull/1536) `IT` @fedeci
43+
44+
#### ~~13.5.0~~ 13.5.1
245

346
- **New features**:
447
- `isVAT` [#1463](https://github.com/validatorjs/validator.js/pull/1463) @ CodingNagger

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.5.1",
4+
"version": "13.6.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
@@ -120,7 +120,7 @@ import isStrongPassword from './lib/isStrongPassword';
120120

121121
import isVAT from './lib/isVAT';
122122

123-
const version = '13.5.1';
123+
const version = '13.6.0';
124124

125125
const validator = {
126126
version,

0 commit comments

Comments
 (0)