Skip to content

Commit 17b43d9

Browse files
committed
Update uuid to 8.3
1 parent 6bc01e7 commit 17b43d9

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
"@types/node-fetch": "^1.6.7",
115115
"@types/qrcode": "^0.8.0",
116116
"@types/speakeasy": "^2.0.1",
117-
"@types/uuid": "^3.4.2",
117+
"@types/uuid": "^8.3.1",
118118
"joi": "^11.1.1",
119119
"jsonwebtoken": "^8.5.1",
120120
"knex": "^0.21.17",
@@ -125,6 +125,6 @@
125125
"qrcode": "^0.9.0",
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'

yarn.lock

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -647,11 +647,10 @@
647647
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
648648
integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
649649

650-
"@types/uuid@^3.4.2":
651-
version "3.4.2"
652-
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-3.4.2.tgz#b8cde3c32c273d3fc658b96f810e8ff091e1b723"
653-
dependencies:
654-
"@types/node" "*"
650+
"@types/uuid@^8.3.1":
651+
version "8.3.1"
652+
resolved "https://registry.yarnpkg.com/@types/uuid/-/uuid-8.3.1.tgz#1a32969cf8f0364b3d8c8af9cc3555b7805df14f"
653+
integrity sha512-Y2mHTRAbqfFkpjldbkHGY8JIzRN6XqYRliG8/24FcHm2D2PwW24fl5xMRTVGdrb7iMrwCaIEbLWerGIkXuFWVg==
655654

656655
"@types/yargs-parser@*":
657656
version "15.0.0"
@@ -7604,6 +7603,11 @@ uuid@^3.3.2:
76047603
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
76057604
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
76067605

7606+
uuid@^8.3.2:
7607+
version "8.3.2"
7608+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
7609+
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
7610+
76077611
v8-to-istanbul@^4.1.3:
76087612
version "4.1.4"
76097613
resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-4.1.4.tgz#b97936f21c0e2d9996d4985e5c5156e9d4e49cd6"

0 commit comments

Comments
 (0)