Skip to content

Commit

Permalink
fix(): update to the latest version of uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Mar 10, 2020
1 parent a302804 commit aa96bdb
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/common/sequelize.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Observable } from 'rxjs';
import { delay, retryWhen, scan } from 'rxjs/operators';
import { Sequelize } from 'sequelize-typescript';
import { isNullOrUndefined } from 'util';
import * as uuid from 'uuid/v4';
import { v4 as uuid } from 'uuid';
import { CircularDependencyException } from '../exceptions/circular-dependency.exception';
import { SequelizeModuleOptions } from '../interfaces';
import { DEFAULT_CONNECTION_NAME } from '../sequelize.constants';
Expand Down
36 changes: 30 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@types/jest": "25.1.2",
"@types/node": "7.10.8",
"@types/supertest": "2.0.8",
"@types/uuid": "3.4.7",
"@types/uuid": "^7.0.0",
"@typescript-eslint/eslint-plugin": "2.19.2",
"@typescript-eslint/parser": "2.19.2",
"eslint": "6.8.0",
Expand All @@ -51,7 +51,7 @@
"typescript": "3.7.5"
},
"dependencies": {
"uuid": "3.4.0"
"uuid": "^7.0.2"
},
"peerDependencies": {
"@nestjs/common": "^6.7.0",
Expand Down

0 comments on commit aa96bdb

Please sign in to comment.