Skip to content

Commit ae030e4

Browse files
authored
Merge pull request #45 from clevertech/update-dependencies
Update dependencies
2 parents 76c983b + f294096 commit ae030e4

File tree

3 files changed

+201
-59
lines changed

3 files changed

+201
-59
lines changed

core/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clevertech.biz/auth-core",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "The set of utilities necessary to build an authentication service. This does not include templates, views, styles, or transport layer.",
55
"keywords": [],
66
"main": "dist/library.js",
@@ -108,23 +108,23 @@
108108
},
109109
"dependencies": {
110110
"@types/joi": "^10.4.3",
111-
"@types/jsonwebtoken": "^7.2.3",
111+
"@types/jsonwebtoken": "^8.5.5",
112112
"@types/lodash": "^4.14.165",
113113
"@types/mongodb": "^2.2.11",
114114
"@types/node-fetch": "^1.6.7",
115-
"@types/qrcode": "^0.8.0",
115+
"@types/qrcode": "^1.4.1",
116116
"@types/speakeasy": "^2.0.1",
117-
"@types/uuid": "^3.4.2",
117+
"@types/uuid": "^8.3.1",
118118
"joi": "^11.1.1",
119-
"jsonwebtoken": "^8.0.1",
119+
"jsonwebtoken": "^8.5.1",
120120
"knex": "^0.21.17",
121121
"lodash": "^4.17.20",
122122
"mongodb": "^2.2.31",
123123
"node-fetch": "^1.7.3",
124124
"pnp-email-service": "^0.1.8",
125-
"qrcode": "^0.9.0",
125+
"qrcode": "^1.4.4",
126126
"scrypt-kdf": "^2.0.1",
127127
"speakeasy": "^2.0.0",
128-
"uuid": "^3.1.0"
128+
"uuid": "^8.3.2"
129129
}
130130
}

core/src/database/knex.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as knex from 'knex'
22
import { clone, omit, once } from 'lodash'
3-
import * as uuid from 'uuid/v4'
3+
import { v4 as uuid } from 'uuid';
44
import * as constants from '../constants'
55
import { IProvider, IRecoveryCode, IUser, IUserUpdate } from '../types'
66
import { IDatabaseAdapter } from './adapter'

0 commit comments

Comments
 (0)