diff --git a/Tasks/ShellScriptV2/package-lock.json b/Tasks/ShellScriptV2/package-lock.json index 638d08809c4d..942068b463e9 100644 --- a/Tasks/ShellScriptV2/package-lock.json +++ b/Tasks/ShellScriptV2/package-lock.json @@ -10,12 +10,12 @@ "license": "MIT", "dependencies": { "@types/mocha": "^5.2.7", - "@types/node": "^20.3.1", + "@types/node": "^24.10.0", "@types/uuid": "^8.3.0", - "azure-pipelines-task-lib": "^4.16.0" + "azure-pipelines-task-lib": "^5.2.2" }, "devDependencies": { - "typescript": "5.1.6" + "typescript": "^5.7.2" } }, "node_modules/@types/mocha": { @@ -24,9 +24,13 @@ "integrity": "sha512-NYrtPht0wGzhwe9+/idPaBB+TqkY9AhTvOLMkThm0IoEfLaiVQZwBwyJ5puCkO3AUCWrmcoePjp2mbFocKy4SQ==" }, "node_modules/@types/node": { - "version": "20.5.8", - "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/@types/node/-/node-20.5.8.tgz", - "integrity": "sha512-eajsR9aeljqNhK028VG0Wuw+OaY5LLxYmxeoXynIoE6jannr9/Ucd1LL0hSSoafk5LTYG+FfqsyGt81Q6Zkybw==" + "version": "24.10.1", + "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/@types/node/-/node-24.10.1.tgz", + "integrity": "sha1-kekhgsk9uL1iJPygMeI3DO+ajwE=", + "license": "MIT", + "dependencies": { + "undici-types": "~7.16.0" + } }, "node_modules/@types/uuid": { "version": "8.3.4", @@ -53,9 +57,10 @@ } }, "node_modules/azure-pipelines-task-lib": { - "version": "4.16.0", - "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/azure-pipelines-task-lib/-/azure-pipelines-task-lib-4.16.0.tgz", - "integrity": "sha512-hjyDi5GI1cFmS2o6GzTFPqloeTZBeaTLOjPn/H3CVr0vV/MV+eYoWszVe9kn7XnRSiv22j3p4Rhw/Sy4v1okxA==", + "version": "5.2.2", + "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/azure-pipelines-task-lib/-/azure-pipelines-task-lib-5.2.2.tgz", + "integrity": "sha1-YSyHtfztrtNI6Gbgoq6Y997dpyk=", + "license": "MIT", "dependencies": { "adm-zip": "^0.5.10", "minimatch": "3.0.5", @@ -380,10 +385,11 @@ } }, "node_modules/typescript": { - "version": "5.1.6", - "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/typescript/-/typescript-5.1.6.tgz", - "integrity": "sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==", + "version": "5.9.3", + "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha1-W09Z4VMQqxeiFvXWz1PuR27eZw8=", "dev": true, + "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -392,6 +398,12 @@ "node": ">=14.17" } }, + "node_modules/undici-types": { + "version": "7.16.0", + "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/undici-types/-/undici-types-7.16.0.tgz", + "integrity": "sha1-/8zf82rqSITL/OmnUKBYAiT1ikY=", + "license": "MIT" + }, "node_modules/utf8-byte-length": { "version": "1.0.5", "resolved": "https://pkgs.dev.azure.com/mseng/PipelineTools/_packaging/PipelineTools_PublicPackages/npm/registry/utf8-byte-length/-/utf8-byte-length-1.0.5.tgz", diff --git a/Tasks/ShellScriptV2/package.json b/Tasks/ShellScriptV2/package.json index bf4e28c29d03..3c559d93f49b 100644 --- a/Tasks/ShellScriptV2/package.json +++ b/Tasks/ShellScriptV2/package.json @@ -20,11 +20,11 @@ "homepage": "https://github.com/Microsoft/azure-pipelines-tasks#readme", "dependencies": { "@types/mocha": "^5.2.7", - "@types/node": "^20.3.1", + "@types/node": "^24.10.0", "@types/uuid": "^8.3.0", - "azure-pipelines-task-lib": "^4.16.0" + "azure-pipelines-task-lib": "^5.2.2" }, "devDependencies": { - "typescript": "5.1.6" + "typescript": "^5.7.2" } } diff --git a/Tasks/ShellScriptV2/task.json b/Tasks/ShellScriptV2/task.json index 3f445f5aa390..41c907f2fdbe 100644 --- a/Tasks/ShellScriptV2/task.json +++ b/Tasks/ShellScriptV2/task.json @@ -17,8 +17,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 248, - "Patch": 1 + "Minor": 267, + "Patch": 0 }, "demands": [ "sh" @@ -89,6 +89,10 @@ "Node20_1": { "target": "shellscript.js", "argumentFormat": "" + }, + "Node24": { + "target": "shellscript.js", + "argumentFormat": "" } }, "messages": { diff --git a/Tasks/ShellScriptV2/task.loc.json b/Tasks/ShellScriptV2/task.loc.json index 73af41b1115d..1ddd5139659e 100644 --- a/Tasks/ShellScriptV2/task.loc.json +++ b/Tasks/ShellScriptV2/task.loc.json @@ -17,8 +17,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 248, - "Patch": 1 + "Minor": 267, + "Patch": 0 }, "demands": [ "sh" @@ -89,6 +89,10 @@ "Node20_1": { "target": "shellscript.js", "argumentFormat": "" + }, + "Node24": { + "target": "shellscript.js", + "argumentFormat": "" } }, "messages": {