From 89345045bf888127676ede309636d9e5016d30dd Mon Sep 17 00:00:00 2001 From: "ugo.bechameil" Date: Fri, 24 Apr 2026 15:46:46 +0200 Subject: [PATCH] fix uuid cve --- package-lock.json | 20 ++++++++++++-------- package.json | 7 ++++--- 2 files changed, 16 insertions(+), 11 deletions(-) diff --git a/package-lock.json b/package-lock.json index bf98475..fc03238 100644 --- a/package-lock.json +++ b/package-lock.json @@ -12,7 +12,7 @@ "@azure/cosmos": "3.17.3", "axios": "1.15.0", "lodash": "4.18.1", - "qs": "6.14.2" + "qs": "6.15.1" }, "devDependencies": { "@hackolade/hck-esbuild-plugins-pack": "0.0.1", @@ -2591,9 +2591,9 @@ } }, "node_modules/qs": { - "version": "6.14.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.14.2.tgz", - "integrity": "sha512-V/yCWTTF7VJ9hIh18Ugr2zhJMP01MY7c5kh4J870L7imm6/DIzBsNLTXzMwUA3yZ5b/KBqLx8Kp3uRvd7xSe3Q==", + "version": "6.15.1", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.1.tgz", + "integrity": "sha512-6YHEFRL9mfgcAvql/XhwTvf5jKcOiiupt2FiJxHkiX1z4j7WL8J/jRHYLluORvc1XxB5rV20KoeK00gVJamspg==", "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.1.0" @@ -2964,12 +2964,16 @@ } }, "node_modules/uuid": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", - "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-14.0.0.tgz", + "integrity": "sha512-Qo+uWgilfSmAhXCMav1uYFynlQO7fMFiMVZsQqZRMIXp0O7rR7qjkj+cPvBHLgBqi960QCoo/PH2/6ZtVqKvrg==", + "funding": [ + "https://github.com/sponsors/broofa", + "https://github.com/sponsors/ctavan" + ], "license": "MIT", "bin": { - "uuid": "dist/bin/uuid" + "uuid": "dist-node/bin/uuid" } }, "node_modules/wrap-ansi": { diff --git a/package.json b/package.json index 1198ddb..1a797a3 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "@azure/cosmos": "3.17.3", "axios": "1.15.0", "lodash": "4.18.1", - "qs": "6.14.2" + "qs": "6.15.1" }, "simple-git-hooks": { "pre-commit": "npm run package && npx lint-staged --config lint-staged.config.js", @@ -51,6 +51,7 @@ "simple-git-hooks": "2.13.1" }, "overrides": { - "minimatch": "10.2.4" + "minimatch": "10.2.4", + "uuid": "14.0.0" } -} \ No newline at end of file +}