From 1d2f48bef81a66541e0cce218f99c040616fe72e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Jun 2026 19:21:03 +0000 Subject: [PATCH 1/4] Initial plan From 3d030d4ad33f09264398cef4a08231663f3ac2cc Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 9 Jun 2026 19:28:19 +0000 Subject: [PATCH 2/4] Add .NET 10 as a publishing target across projects and pipelines --- Changelog.md | 10 ++++++++++ .../Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj | 2 +- .../Microsoft.DevSkim.LanguageServer.csproj | 2 +- .../Microsoft.DevSkim.Tests.csproj | 2 +- .../Microsoft.DevSkim/Microsoft.DevSkim.csproj | 2 +- DevSkim-VSCode-Plugin/package.json | 4 ++-- Pipelines/cli/devskim-cli-pr.yml | 4 ++-- Pipelines/cli/devskim-cli-release.yml | 4 ++-- Pipelines/vs/devskim-visualstudio-pr.yml | 7 ++++++- Pipelines/vs/devskim-visualstudio-release.yml | 9 +++++++-- Pipelines/vscode/devskim-vscode-pr.yml | 5 +++++ Pipelines/vscode/devskim-vscode-release.yml | 5 +++++ 12 files changed, 43 insertions(+), 13 deletions(-) diff --git a/Changelog.md b/Changelog.md index 84bb480e..679b8d96 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.83] - 2026-06-09 +### Added +- Added .NET 10 as a publishing target for the DevSkim library, CLI, and Language Server. + +### Changed +- Swapped the VS Code extension language server to publish against .NET 10. + +### Pipeline +- Added .NET 10 (`10.0.x`) SDK to the CLI, VS Code, and Visual Studio build pipelines. + ## [1.0.82] - 2026-05-12 ### Dependencies - Update dependencies for VS Code Extension diff --git a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj index 7a3244ac..e23d13b1 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj @@ -2,7 +2,7 @@ Exe - net8.0;net9.0 + net8.0;net9.0;net10.0 devskim Microsoft.DevSkim.CLI.Program win-x64;linux-x64;osx-x64 diff --git a/DevSkim-DotNet/Microsoft.DevSkim.LanguageServer/Microsoft.DevSkim.LanguageServer.csproj b/DevSkim-DotNet/Microsoft.DevSkim.LanguageServer/Microsoft.DevSkim.LanguageServer.csproj index da5505c3..02116361 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.LanguageServer/Microsoft.DevSkim.LanguageServer.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim.LanguageServer/Microsoft.DevSkim.LanguageServer.csproj @@ -5,7 +5,7 @@ enable enable DevSkim.LanguageServer - net8.0 + net8.0;net10.0 MIT Microsoft © Microsoft Corporation. All rights reserved. diff --git a/DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj b/DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj index 1c9f6ef5..ea7920e6 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj @@ -1,7 +1,7 @@ - net8.0;net9.0 + net8.0;net9.0;net10.0 enable enable Exe diff --git a/DevSkim-DotNet/Microsoft.DevSkim/Microsoft.DevSkim.csproj b/DevSkim-DotNet/Microsoft.DevSkim/Microsoft.DevSkim.csproj index acf23725..ce581caa 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim/Microsoft.DevSkim.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim/Microsoft.DevSkim.csproj @@ -1,7 +1,7 @@ - netstandard2.1;net8.0;net9.0 + netstandard2.1;net8.0;net9.0;net10.0 Microsoft.CST.DevSkim 0.0.0 Security Linter diff --git a/DevSkim-VSCode-Plugin/package.json b/DevSkim-VSCode-Plugin/package.json index 10baa58a..4021ec42 100644 --- a/DevSkim-VSCode-Plugin/package.json +++ b/DevSkim-VSCode-Plugin/package.json @@ -291,8 +291,8 @@ "clean:out": "npx --quiet -y rimraf --glob **/out && npx --quiet -y rimraf --glob **/tsconfig.tsbuildinfo", "clean:modules": "npx --quiet -y rimraf --glob **/node_modules", "clean:vsix": "npx --quiet -y rimraf --glob *.vsix", - "net-setup": "dotnet publish -c Debug -f net8.0 ../DevSkim-DotNet/Microsoft.DevSkim.LanguageServer -o devskimBinaries", - "net-setup:release": "dotnet publish -c Release -f net8.0 ../DevSkim-DotNet/Microsoft.DevSkim.LanguageServer -o devskimBinaries", + "net-setup": "dotnet publish -c Debug -f net10.0 ../DevSkim-DotNet/Microsoft.DevSkim.LanguageServer -o devskimBinaries", + "net-setup:release": "dotnet publish -c Release -f net10.0 ../DevSkim-DotNet/Microsoft.DevSkim.LanguageServer -o devskimBinaries", "setup": "npm install && npm run net-setup", "setup:release": "npm install && npm run net-setup:release", "reset": "npm run clean && npm run setup", diff --git a/Pipelines/cli/devskim-cli-pr.yml b/Pipelines/cli/devskim-cli-pr.yml index 41278442..a141427e 100644 --- a/Pipelines/cli/devskim-cli-pr.yml +++ b/Pipelines/cli/devskim-cli-pr.yml @@ -36,7 +36,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_windows' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] projectPath: 'DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj' poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Windows-2022 @@ -50,7 +50,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_ubuntu' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Ubuntu-2204 poolOs: linux diff --git a/Pipelines/cli/devskim-cli-release.yml b/Pipelines/cli/devskim-cli-release.yml index 667ab790..66072595 100644 --- a/Pipelines/cli/devskim-cli-release.yml +++ b/Pipelines/cli/devskim-cli-release.yml @@ -35,7 +35,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_windows' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] projectPath: 'DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj' poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Windows-2022 @@ -49,7 +49,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_ubuntu' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Ubuntu-2204 poolOs: linux diff --git a/Pipelines/vs/devskim-visualstudio-pr.yml b/Pipelines/vs/devskim-visualstudio-pr.yml index a7b8a336..60d49c8d 100644 --- a/Pipelines/vs/devskim-visualstudio-pr.yml +++ b/Pipelines/vs/devskim-visualstudio-pr.yml @@ -32,7 +32,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_windows' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] projectPath: 'DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj' poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Windows-2022 @@ -66,6 +66,11 @@ extends: inputs: packageType: 'sdk' version: '9.0.x' + - task: UseDotNet@2 + displayName: Install Dotnet 10 SDK + inputs: + packageType: 'sdk' + version: '10.0.x' - template: nbgv-set-version-steps.yml@templates - task: PowerShell@2 displayName: Mkdir for Extension diff --git a/Pipelines/vs/devskim-visualstudio-release.yml b/Pipelines/vs/devskim-visualstudio-release.yml index 06926d42..6ba09c34 100644 --- a/Pipelines/vs/devskim-visualstudio-release.yml +++ b/Pipelines/vs/devskim-visualstudio-release.yml @@ -31,7 +31,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_windows' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] projectPath: 'DevSkim-DotNet/Microsoft.DevSkim.Tests/Microsoft.DevSkim.Tests.csproj' poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Windows-2022 @@ -45,7 +45,7 @@ extends: - template: dotnet-test-job.yml@templates parameters: jobName: 'dotnet_test_ubuntu' - dotnetVersions: ['8.0.x','9.0.x'] + dotnetVersions: ['8.0.x','9.0.x','10.0.x'] poolName: MSSecurity-1ES-Build-Agents-Pool poolImage: MSSecurity-1ES-Ubuntu-2204 poolOs: linux @@ -79,6 +79,11 @@ extends: inputs: packageType: 'sdk' version: '9.0.x' + - task: UseDotNet@2 + displayName: Install Dotnet 10 SDK + inputs: + packageType: 'sdk' + version: '10.0.x' - template: nbgv-set-version-steps.yml@templates - task: PowerShell@2 displayName: Mkdir for Extension diff --git a/Pipelines/vscode/devskim-vscode-pr.yml b/Pipelines/vscode/devskim-vscode-pr.yml index 39e7e958..fd230cd2 100644 --- a/Pipelines/vscode/devskim-vscode-pr.yml +++ b/Pipelines/vscode/devskim-vscode-pr.yml @@ -49,6 +49,11 @@ extends: inputs: packageType: 'sdk' version: '9.0.x' + - task: UseDotNet@2 + displayName: Install Dotnet SDK + inputs: + packageType: 'sdk' + version: '10.0.x' - template: nbgv-set-version-steps.yml@templates - task: PowerShell@2 displayName: Mkdir for Manifests and Packages diff --git a/Pipelines/vscode/devskim-vscode-release.yml b/Pipelines/vscode/devskim-vscode-release.yml index ad7f1541..eda4fc50 100644 --- a/Pipelines/vscode/devskim-vscode-release.yml +++ b/Pipelines/vscode/devskim-vscode-release.yml @@ -48,6 +48,11 @@ extends: inputs: packageType: 'sdk' version: '9.0.x' + - task: UseDotNet@2 + displayName: Install Dotnet SDK + inputs: + packageType: 'sdk' + version: '10.0.x' - template: nbgv-set-version-steps.yml@templates - task: PowerShell@2 displayName: Mkdir for Manifests and Packages From 520021941d5b4d94f92d355b4bf96bf8995680b5 Mon Sep 17 00:00:00 2001 From: Giulia Stocco <98900+gfs@users.noreply.github.com> Date: Tue, 9 Jun 2026 18:26:30 -0700 Subject: [PATCH 3/4] Update default dotnet publish version to 10 in pr.yml --- Pipelines/cli/devskim-cli-pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipelines/cli/devskim-cli-pr.yml b/Pipelines/cli/devskim-cli-pr.yml index a141427e..e75f609d 100644 --- a/Pipelines/cli/devskim-cli-pr.yml +++ b/Pipelines/cli/devskim-cli-pr.yml @@ -21,7 +21,7 @@ resources: variables: BuildConfiguration: 'Release' - DotnetVersion: '9.0.x' + DotnetVersion: '10.0.x' extends: template: v1/1ES.Official.PipelineTemplate.yml@1esPipelines From 438c1754b306f381f91c9bb1e076d6aa9506abfc Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Mon, 15 Jun 2026 12:46:33 -0700 Subject: [PATCH 4/4] Fix NU5017 in Pack Nupkg; add net10.0 target; sync with main (#756) * Bump tmp from 0.2.5 to 0.2.7 in /DevSkim-VSCode-Plugin (#754) Bumps [tmp](https://github.com/raszi/node-tmp) from 0.2.5 to 0.2.7. - [Changelog](https://github.com/raszi/node-tmp/blob/master/CHANGELOG.md) - [Commits](https://github.com/raszi/node-tmp/compare/v0.2.5...v0.2.7) --- updated-dependencies: - dependency-name: tmp dependency-version: 0.2.7 dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump uuid and @azure/identity in /DevSkim-VSCode-Plugin (#752) Removes [uuid](https://github.com/uuidjs/uuid). It's no longer used after updating ancestor dependency [@azure/identity](https://github.com/Azure/azure-sdk-for-js). These dependencies need to be updated together. Removes `uuid` Updates `@azure/identity` from 4.13.0 to 4.13.1 - [Release notes](https://github.com/Azure/azure-sdk-for-js/releases) - [Changelog](https://github.com/Azure/azure-sdk-for-js/blob/main/documentation/Changelog-for-next-generation.md) - [Commits](https://github.com/Azure/azure-sdk-for-js/compare/@azure/identity_4.13.0...@azure/identity_4.13.1) --- updated-dependencies: - dependency-name: uuid dependency-version: dependency-type: indirect - dependency-name: "@azure/identity" dependency-version: 4.13.1 dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump qs from 6.15.0 to 6.15.2 in /DevSkim-VSCode-Plugin (#753) Bumps [qs](https://github.com/ljharb/qs) from 6.15.0 to 6.15.2. - [Changelog](https://github.com/ljharb/qs/blob/main/CHANGELOG.md) - [Commits](https://github.com/ljharb/qs/compare/v6.15.0...v6.15.2) --- updated-dependencies: - dependency-name: qs dependency-version: 6.15.2 dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Initial plan * Fix NU5017: add CreateRidSpecificToolPackages=false and conditional RuntimeIdentifiers; merge main; update Changelog.md --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --- Changelog.md | 15 ++++- .../Microsoft.DevSkim.CLI.csproj | 11 +++- DevSkim-VSCode-Plugin/package-lock.json | 59 ++++++++----------- 3 files changed, 48 insertions(+), 37 deletions(-) diff --git a/Changelog.md b/Changelog.md index 679b8d96..f4efee6e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,16 +4,29 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.0.83] - 2026-06-09 +## [1.0.86] - 2026-06-10 ### Added - Added .NET 10 as a publishing target for the DevSkim library, CLI, and Language Server. ### Changed - Swapped the VS Code extension language server to publish against .NET 10. +- Kept the DevSkim CLI dotnet tool portable (framework-dependent) by setting `CreateRidSpecificToolPackages=false`, avoiding the .NET 10 SDK's new RID-specific tool packaging that broke `dotnet pack` with NU5017 and would have dropped arm64 and pre-.NET 10 SDK install support. ### Pipeline - Added .NET 10 (`10.0.x`) SDK to the CLI, VS Code, and Visual Studio build pipelines. +## [1.0.85] - 2026-06-10 +### Dependencies +- Bump qs from 6.15.0 to 6.15.2 in /DevSkim-VSCode-Plugin (#753) + +## [1.0.84] - 2026-06-10 +### Dependencies +- Bump @azure/identity from 4.13.0 to 4.13.1 and remove the now-unused uuid transitive dependency in /DevSkim-VSCode-Plugin (#752) + +## [1.0.83] - 2026-06-10 +### Dependencies +- Bump tmp from 0.2.5 to 0.2.7 in /DevSkim-VSCode-Plugin (#754) + ## [1.0.82] - 2026-05-12 ### Dependencies - Update dependencies for VS Code Extension diff --git a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj index e23d13b1..3da91a46 100644 --- a/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj +++ b/DevSkim-DotNet/Microsoft.DevSkim.CLI/Microsoft.DevSkim.CLI.csproj @@ -5,7 +5,11 @@ net8.0;net9.0;net10.0 devskim Microsoft.DevSkim.CLI.Program - win-x64;linux-x64;osx-x64 + + win-x64;linux-x64;osx-x64 Microsoft DevSkim Command Line Interface 0.0.0 Microsoft @@ -13,6 +17,11 @@ © Microsoft Corporation. All rights reserved. DevSkim is a framework and language analyzer that provides inline security analysis. This is a Dotnet Tool package. For the library package, see Microsoft.CST.DevSkim. true + + false devskim Microsoft.CST.DevSkim.CLI Security Linter diff --git a/DevSkim-VSCode-Plugin/package-lock.json b/DevSkim-VSCode-Plugin/package-lock.json index ce034ad5..0ca165b0 100644 --- a/DevSkim-VSCode-Plugin/package-lock.json +++ b/DevSkim-VSCode-Plugin/package-lock.json @@ -136,9 +136,9 @@ } }, "node_modules/@azure/identity": { - "version": "4.13.0", - "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.13.0.tgz", - "integrity": "sha512-uWC0fssc+hs1TGGVkkghiaFkkS7NkTxfnCH+Hdg+yTehTpMcehpok4PgUKKdyCH+9ldu6FhiHRv84Ntqj1vVcw==", + "version": "4.13.1", + "resolved": "https://registry.npmjs.org/@azure/identity/-/identity-4.13.1.tgz", + "integrity": "sha512-5C/2WD5Vb1lHnZS16dNQRPMjN6oV/Upba+C9nBIs15PmOi6A3ZGs4Lr2u60zw4S04gi+u3cEXiqTVP7M4Pz3kw==", "dev": true, "license": "MIT", "dependencies": { @@ -149,8 +149,8 @@ "@azure/core-tracing": "^1.0.0", "@azure/core-util": "^1.11.0", "@azure/logger": "^1.0.0", - "@azure/msal-browser": "^4.2.0", - "@azure/msal-node": "^3.5.0", + "@azure/msal-browser": "^5.5.0", + "@azure/msal-node": "^5.1.0", "open": "^10.1.0", "tslib": "^2.2.0" }, @@ -173,22 +173,22 @@ } }, "node_modules/@azure/msal-browser": { - "version": "4.28.1", - "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-4.28.1.tgz", - "integrity": "sha512-al2u2fTchbClq3L4C1NlqLm+vwKfhYCPtZN2LR/9xJVaQ4Mnrwf5vANvuyPSJHcGvw50UBmhuVmYUAhTEetTpA==", + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/@azure/msal-browser/-/msal-browser-5.11.0.tgz", + "integrity": "sha512-zkGNYS3TwY8lUpPIafAmsFCYZbgFixY9y/LZB9GUg0IILoHTqpN26j5OrkL1AQThh/YdZsawe4iWXfp85lFVxg==", "dev": true, "license": "MIT", "dependencies": { - "@azure/msal-common": "15.14.1" + "@azure/msal-common": "16.6.2" }, "engines": { "node": ">=0.8.0" } }, "node_modules/@azure/msal-common": { - "version": "15.14.1", - "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-15.14.1.tgz", - "integrity": "sha512-IkzF7Pywt6QKTS0kwdCv/XV8x8JXknZDvSjj/IccooxnP373T5jaadO3FnOrbWo3S0UqkfIDyZNTaQ/oAgRdXw==", + "version": "16.6.2", + "resolved": "https://registry.npmjs.org/@azure/msal-common/-/msal-common-16.6.2.tgz", + "integrity": "sha512-hQjjsekAjB00cM1EmatWJlzhEoK2Qhz7Rj5gvM6tYf8iL7RM3tkxlpU9fG0+ofkulzg9AEEA6dIEnSmDr5ZqUA==", "dev": true, "license": "MIT", "engines": { @@ -196,18 +196,17 @@ } }, "node_modules/@azure/msal-node": { - "version": "3.8.6", - "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-3.8.6.tgz", - "integrity": "sha512-XTmhdItcBckcVVTy65Xp+42xG4LX5GK+9AqAsXPXk4IqUNv+LyQo5TMwNjuFYBfAB2GTG9iSQGk+QLc03vhf3w==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/@azure/msal-node/-/msal-node-5.2.2.tgz", + "integrity": "sha512-toS+2AePxqyzb0YOKttDOOiSl3jrkK9aiqIvpurpis0O34QcIS5gToqrgT39p04Dpxw3YoUU0lxJKTpSFFfA6Q==", "dev": true, "license": "MIT", "dependencies": { - "@azure/msal-common": "15.14.1", - "jsonwebtoken": "^9.0.0", - "uuid": "^8.3.0" + "@azure/msal-common": "16.6.2", + "jsonwebtoken": "^9.0.0" }, "engines": { - "node": ">=16" + "node": ">=20" } }, "node_modules/@babel/code-frame": { @@ -4543,9 +4542,9 @@ } }, "node_modules/qs": { - "version": "6.15.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.0.tgz", - "integrity": "sha512-mAZTtNCeetKMH+pSjrb76NAM8V9a05I9aBZOHztWy/UqcJdQYNsf59vrRKWnojAT9Y+GbIvoTBC++CPHqpDBhQ==", + "version": "6.15.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.15.2.tgz", + "integrity": "sha512-Rzq0KEyX/w/tEybncDgdkZrJgVUsUMk3xjh3t5bv3S1HTAtg+uOYt72+ZfwiQwKdysThkTBdL/rTi6HDmX9Ddw==", "dev": true, "license": "BSD-3-Clause", "dependencies": { @@ -5375,9 +5374,9 @@ } }, "node_modules/tmp": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", - "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.7.tgz", + "integrity": "sha512-e0votIpp4Uo2AJYSzVHV6xCcawuiez3DzqDAbrTc3YxBkplN6e+dM13ZeIcZnDg/QpSuU2zfZ3rzwY8ukEnaXw==", "dev": true, "license": "MIT", "engines": { @@ -5573,16 +5572,6 @@ "license": "MIT", "optional": true }, - "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==", - "dev": true, - "license": "MIT", - "bin": { - "uuid": "dist/bin/uuid" - } - }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz",