Skip to content

Commit 4c5d05d

Browse files
fix(deps): update dependency uuid to v14 (#2044)
* fix(deps): update dependency uuid to v14 * Remove --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
1 parent a421e08 commit 4c5d05d

3 files changed

Lines changed: 2 additions & 25 deletions

File tree

packages/redux-devtools-cli/package.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@
6666
"react-is": "^19.2.5",
6767
"semver": "^7.7.4",
6868
"socketcluster-server": "^20.0.0",
69-
"sqlite3": "^6.0.1",
70-
"uuid": "^13.0.0"
69+
"sqlite3": "^6.0.1"
7170
},
7271
"devDependencies": {
7372
"@jest/globals": "^30.3.0",
@@ -84,7 +83,6 @@
8483
"@types/socketcluster-client": "^20.0.0",
8584
"@types/socketcluster-server": "^20.0.0",
8685
"@types/supertest": "^7.2.0",
87-
"@types/uuid": "^11.0.0",
8886
"globals": "^17.4.0",
8987
"jest": "^30.3.0",
9088
"ncp": "^2.0.0",

packages/redux-devtools-cli/src/store.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { v4 as uuidV4 } from 'uuid';
21
import { pick } from 'lodash-es';
32
import { AGServer } from 'socketcluster-server';
43
import { Knex } from 'knex';
@@ -88,7 +87,7 @@ function add(data: AddData): Promise<ReportBaseFields | { error: string }> {
8887
return error('Type ' + data.type + ' is not supported yet.');
8988
}
9089

91-
const reportId = uuidV4();
90+
const reportId = crypto.randomUUID();
9291
const report: Report = {
9392
id: reportId,
9493
type: data.type,

pnpm-lock.yaml

Lines changed: 0 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)