Skip to content

Commit

Permalink
fix(dependencies): update validator dependency to latest version (#13802
Browse files Browse the repository at this point in the history
)
  • Loading branch information
sdepold authored Dec 21, 2021
1 parent 71c9130 commit 9f47e94
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@
"sequelize-pool": "^2.3.0",
"toposort-class": "^1.0.1",
"uuid": "^8.3.2",
"validator": "^10.11.0",
"validator": "^13.7.0",
"wkx": "^0.4.8"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"@types/bluebird": "^3.5.26",
"@types/node": "^12.7.8",
"@types/validator": "^10.11.0",
"@types/validator": "^13.7.0",
"big-integer": "^1.6.45",
"chai": "^4.x",
"chai-as-promised": "^7.x",
Expand Down
2 changes: 1 addition & 1 deletion test/integration/sequelize.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ describe(Support.getTestDialectTeaser('Sequelize'), () => {
'role "bar" does not exist',
'FATAL: role "bar" does not exist',
'password authentication failed for user "bar"'
].includes(err.message.trim()));
].some(fragment => err.message.includes(fragment)));
} else if (dialect === 'mssql') {
expect(err.message).to.equal('Login failed for user \'bar\'.');
} else {
Expand Down

0 comments on commit 9f47e94

Please sign in to comment.