Skip to content

Commit 012301d

Browse files
committed
13.5.0
1 parent 0f8e597 commit 012301d

File tree

5 files changed

+1626
-52
lines changed

5 files changed

+1626
-52
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,50 @@
1+
#### 13.5.0
2+
3+
- **New features**:
4+
- `isVAT` [#1463](https://github.com/validatorjs/validator.js/pull/1463) @ CodingNagger
5+
- `isTaxID` [#1446](https://github.com/validatorjs/validator.js/pull/1446) @tplessas
6+
- `isBase58` [#1445](https://github.com/validatorjs/validator.js/pull/1445) @ezkemboi
7+
- `isStrongPassword` [#1348](https://github.com/validatorjs/validator.js/pull/1348) @door-bell
8+
9+
- **Fixes and Enhancements**:
10+
- [#1486](https://github.com/validatorjs/validator.js/pull/1486) `isISO8601`: add `strictSeparator` @brostone51
11+
- [#1474](https://github.com/validatorjs/validator.js/pull/1474) `isFQDN`: make more strict @CristhianMotoche
12+
- [#1469](https://github.com/validatorjs/validator.js/pull/1469) `isFQDN`: `allow_underscore` option @gibson042
13+
- [#1449](https://github.com/validatorjs/validator.js/pull/1449) `isEmail`: character blacklisting @rubiin
14+
- [#1436](https://github.com/validatorjs/validator.js/pull/1436) `isURL`: added `require_port` option @yshanli
15+
- [#1435](https://github.com/validatorjs/validator.js/pull/1435) `isEmail`: respect `ignore_max_length` option @evantahler
16+
- [#1402](https://github.com/validatorjs/validator.js/pull/1402) `isDate`: add strictMode and prevent mixed delimiters @tux-tn
17+
- [#1286](https://github.com/validatorjs/validator.js/pull/1286) `isAlpha`: support `ignore` option @mum-never-proud
18+
19+
- **New and Improved locales**:
20+
- `isAlpha`, `isAlphanumeric`:
21+
- [#1528](https://github.com/validatorjs/validator.js/pull/1528) multiple fixes @tux-tn @purell
22+
- [#1513](https://github.com/validatorjs/validator.js/pull/1513) `id-ID` and docs update @bekicot
23+
- [#1484](https://github.com/validatorjs/validator.js/pull/1484) [#1481](https://github.com/validatorjs/validator.js/pull/1481) `th-TH` @ipiranhaa
24+
- [#1455](https://github.com/validatorjs/validator.js/pull/1455) `fa-IR` @fakhrip
25+
- [#1447](https://github.com/validatorjs/validator.js/pull/1447) `az-AZ` @saidfagan
26+
- `isMobilePhone`:
27+
- [#1521](https://github.com/validatorjs/validator.js/pull/1521) `ar-MA` @artpumpkin
28+
- [#1492](https://github.com/validatorjs/validator.js/pull/1492) `de-LU`,`it-SM`, `sq-AL` and `ga-IE` @firlus
29+
- [#1487](https://github.com/validatorjs/validator.js/pull/1487) `en-HN` @jehielmartinez
30+
- [#1473](https://github.com/validatorjs/validator.js/pull/1473) `ar-LB`, `es-PE`, `ka-GE` @rubiin
31+
- [#1470](https://github.com/validatorjs/validator.js/pull/1444) `es-DO` @devrasec
32+
- [#1460](https://github.com/validatorjs/validator.js/pull/1444) `es-BO` @rubiin
33+
- [#1444](https://github.com/validatorjs/validator.js/pull/1444) `es-AR` @csrgt
34+
- [#1407](https://github.com/validatorjs/validator.js/pull/1407) `pt-BR` @viniciushvsilva
35+
- `isPostalCode`:
36+
- [#1534](https://github.com/validatorjs/validator.js/pull/1534) `CN` @httpsbao
37+
- [#1515](https://github.com/validatorjs/validator.js/pull/1515) `IR` @masoudDaliriyan
38+
- [#1502](https://github.com/validatorjs/validator.js/pull/1502) `SG`, `MY` @stranger26
39+
- [#1480](https://github.com/validatorjs/validator.js/pull/1480) `TH` @ipiranhaa
40+
- [#1459](https://github.com/validatorjs/validator.js/pull/1456) `BY` @rubiin
41+
- [#1456](https://github.com/validatorjs/validator.js/pull/1456) `DO` and `HT` @yomed
42+
- `isPassportNumber`:
43+
- [#1468](https://github.com/validatorjs/validator.js/pull/1468) `BY` @zenby
44+
- [#1467](https://github.com/validatorjs/validator.js/pull/1467) `RU` @dkochetkov
45+
46+
<sub>&mdash; this release is dedicated to @dbnandaa 🧒</sub>
47+
148
#### 13.1.17
249

350
- **New features**:

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.1.17",
4+
"version": "13.5.0",
55
"sideEffects": false,
66
"homepage": "https://github.com/chriso/validator.js",
77
"files": [

src/index.js

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

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

122-
const version = '13.1.17';
122+
const version = '13.5.0';
123123

124124
const validator = {
125125
version,

0 commit comments

Comments
 (0)