Skip to content

Commit

Permalink
feat(stark-core): update uuid and @types/uuid dependencies to ver…
Browse files Browse the repository at this point in the history
…sion "^8.3.0"

ISSUES CLOSED: #2759 #2760
  • Loading branch information
SuperITMan committed May 27, 2021
1 parent d7cd94b commit 15b5c08
Show file tree
Hide file tree
Showing 6 changed files with 413 additions and 351 deletions.
76 changes: 70 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 @@ -60,7 +60,7 @@
"@types/node": "^10.17.54",
"@types/nouislider": "^9.0.10",
"@types/prismjs": "^1.16.3",
"@types/uuid": "^3.4.9",
"@types/uuid": "^8.3.0",
"@types/webpack": "^4.4.24",
"@uirouter/angular": "6.0.2",
"@uirouter/core": "^6.0.0",
Expand Down Expand Up @@ -115,7 +115,7 @@
"tslint-loader": "^3.6.0",
"tslint-sonarts": "^1.9.0",
"typescript": "~3.5.0",
"uuid": "^3.3.2",
"uuid": "^8.3.0",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-merge": "^4.2.1",
"webpack-monitor": "^1.0.14",
Expand Down
4 changes: 2 additions & 2 deletions packages/stark-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"@ngrx/store-devtools": "^8.6.1",
"@ngx-translate/core": "^12.1.2",
"@types/lodash-es": "^4.17.4",
"@types/uuid": "^3.4.9",
"@types/uuid": "^8.3.0",
"@uirouter/angular": "6.0.2",
"@uirouter/core": "^6.0.0",
"@uirouter/rx": "^0.6.0",
Expand All @@ -36,7 +36,7 @@
"ibantools": "^3.2.3",
"lodash-es": "^4.17.21",
"moment": "^2.22.2",
"uuid": "^3.3.2"
"uuid": "^8.3.0"
},
"peerDependencies": {
"@angular/common": "^8.2.0",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* tslint:disable:completed-docs*/
import uuid from "uuid";
import { v4 as uuidV4 } from "uuid";
import { Serialize } from "cerialize";
import { select, Store } from "@ngrx/store";
import { Inject, Injectable, Injector } from "@angular/core";
Expand Down Expand Up @@ -133,7 +133,7 @@ export class StarkLoggingServiceImpl implements StarkLoggingService {
}

public generateNewCorrelationId(): string {
this._correlationId = uuid.v4();
this._correlationId = uuidV4();
return this._correlationId;
}

Expand Down

0 comments on commit 15b5c08

Please sign in to comment.