From bc1e9731950b8ccfd8bd9ec54d5de48b94ea3626 Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Fri, 13 Oct 2023 17:19:19 +0400 Subject: [PATCH 1/8] Add tsconfig --- Tasks/Common/Sanitizer/tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Tasks/Common/Sanitizer/tsconfig.json diff --git a/Tasks/Common/Sanitizer/tsconfig.json b/Tasks/Common/Sanitizer/tsconfig.json new file mode 100644 index 000000000000..0438b79f69ac --- /dev/null +++ b/Tasks/Common/Sanitizer/tsconfig.json @@ -0,0 +1,6 @@ +{ + "compilerOptions": { + "target": "ES6", + "module": "commonjs" + } +} \ No newline at end of file From 1eb7d59dcda23f48c0f5aade166e6eeb81c20dc9 Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Fri, 13 Oct 2023 17:36:24 +0400 Subject: [PATCH 2/8] Add run tests script --- Tasks/Common/Sanitizer/runTests.ps1 | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Tasks/Common/Sanitizer/runTests.ps1 diff --git a/Tasks/Common/Sanitizer/runTests.ps1 b/Tasks/Common/Sanitizer/runTests.ps1 new file mode 100644 index 000000000000..7dd0cc08cd2d --- /dev/null +++ b/Tasks/Common/Sanitizer/runTests.ps1 @@ -0,0 +1,23 @@ +## Temp script to run L0 tests for Sanitizer. +## TODO: Remove after https://github.com/microsoft/azure-pipelines-tasks/pull/19108 will be merged. + +$startLoc = Get-Location + +$projectRoot = "$PSScriptRoot/../../.." +Set-Location $projectRoot + +$buildPath = "$projectRoot/_build/Tasks/Common/Sanitizer" + +try { + Remove-Item $buildPath -Recurse -Force -ErrorAction SilentlyContinue + + ## Workaround to build common package + node make build --task WindowsMachineFileCopyV1 + + Write-Host "Running L0 tests..." + Set-Location $buildPath/Tests + mocha ./L0.js +} +finally { + Set-Location $startLoc +} \ No newline at end of file From 5c3910858cd9eae5aceb4bebf4ddd5bd614055fd Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Fri, 13 Oct 2023 17:44:50 +0400 Subject: [PATCH 3/8] Add $true, $false, # to allowlist --- Tasks/Common/Sanitizer/ArgumentsSanitizer.ps1 | 8 +++++--- .../Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 | 5 +++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Tasks/Common/Sanitizer/ArgumentsSanitizer.ps1 b/Tasks/Common/Sanitizer/ArgumentsSanitizer.ps1 index 160e1a2c1aa8..d3bca5fee724 100644 --- a/Tasks/Common/Sanitizer/ArgumentsSanitizer.ps1 +++ b/Tasks/Common/Sanitizer/ArgumentsSanitizer.ps1 @@ -58,9 +58,11 @@ function Get-SanitizedArguments([string]$inputArgs) { $argsSplitSymbols = '``'; [string[][]]$matchesChunks = @() - # regex rule for removing symbols and telemetry. - # '? Date: Fri, 13 Oct 2023 17:47:36 +0400 Subject: [PATCH 4/8] Remove test duplicate test cases --- .../Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Tasks/Common/Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 b/Tasks/Common/Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 index d27dff087c60..92f8c8aa2f9c 100644 --- a/Tasks/Common/Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 +++ b/Tasks/Common/Sanitizer/Tests/L0Protect-ScriptArguments.Passes.ps1 @@ -12,18 +12,13 @@ $inputArgsSuites = @( "--parameter", # Many modern applications accept parameters with double hyphen "parameter=value", # Format for passing values to parameters "parameter value.txt", # Argument with dot in the middle - "-parameter", # Single hyphen followed by a single letter or digit (POSIX style) "-parameter value", # When the parameter needs a value - "--parameter", # Double hyphen followed by a word (GNU style) "--parameter=value", # Value directly attached to the parameter with an equals sign - "parameter=value", # Used to pass environment variables to a command - "parameter value.txt", # Argument with dot in the middle "-Parameter Value", # Most common form "-Parameter:Value", # Colon connects the parameter and its value "/p:Parameter=Value", # Specific syntax for tools like MSBuild or NuGet "--Parameter Value", # Used by cmdlets or scripts for cross-platform compatibility "--Parameter=Value", # Used by cross-platform tools - "parameter value.txt" # Argument with dot in the middle 'a A z Z 1 9 \ ` _ '' " - = / : . * , + ~ ? % #', # Just each allowed symbol '', 'test 1', From 832dc4cca4a37c59c93fb7a8d9329cfaebcee80c Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Fri, 13 Oct 2023 17:54:36 +0400 Subject: [PATCH 5/8] Bump AzureFileCopyV* versions --- Tasks/AzureFileCopyV1/task.json | 2 +- Tasks/AzureFileCopyV1/task.loc.json | 2 +- Tasks/AzureFileCopyV2/task.json | 2 +- Tasks/AzureFileCopyV2/task.loc.json | 2 +- Tasks/AzureFileCopyV3/task.json | 2 +- Tasks/AzureFileCopyV3/task.loc.json | 2 +- Tasks/AzureFileCopyV4/task.json | 2 +- Tasks/AzureFileCopyV4/task.loc.json | 2 +- Tasks/AzureFileCopyV5/task.json | 2 +- Tasks/AzureFileCopyV5/task.loc.json | 2 +- _generated/AzureFileCopyV2.versionmap.txt | 4 ++-- _generated/AzureFileCopyV2/task.json | 6 +++--- _generated/AzureFileCopyV2/task.loc.json | 6 +++--- _generated/AzureFileCopyV2_Node16/task.json | 6 +++--- _generated/AzureFileCopyV2_Node16/task.loc.json | 6 +++--- _generated/AzureFileCopyV3.versionmap.txt | 4 ++-- _generated/AzureFileCopyV3/task.json | 6 +++--- _generated/AzureFileCopyV3/task.loc.json | 6 +++--- _generated/AzureFileCopyV3_Node16/task.json | 6 +++--- _generated/AzureFileCopyV3_Node16/task.loc.json | 6 +++--- 20 files changed, 38 insertions(+), 38 deletions(-) diff --git a/Tasks/AzureFileCopyV1/task.json b/Tasks/AzureFileCopyV1/task.json index 595c8c59b5c3..bbf5cf5c39d0 100644 --- a/Tasks/AzureFileCopyV1/task.json +++ b/Tasks/AzureFileCopyV1/task.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 1, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/Tasks/AzureFileCopyV1/task.loc.json b/Tasks/AzureFileCopyV1/task.loc.json index 73b961a715bd..4deab2391145 100644 --- a/Tasks/AzureFileCopyV1/task.loc.json +++ b/Tasks/AzureFileCopyV1/task.loc.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 1, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/Tasks/AzureFileCopyV2/task.json b/Tasks/AzureFileCopyV2/task.json index a5b4bebafbca..6579e9344423 100644 --- a/Tasks/AzureFileCopyV2/task.json +++ b/Tasks/AzureFileCopyV2/task.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV2/task.loc.json b/Tasks/AzureFileCopyV2/task.loc.json index 91151f606b03..f39d684efb59 100644 --- a/Tasks/AzureFileCopyV2/task.loc.json +++ b/Tasks/AzureFileCopyV2/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV3/task.json b/Tasks/AzureFileCopyV3/task.json index a8ec7031a4b2..00779a5746c3 100644 --- a/Tasks/AzureFileCopyV3/task.json +++ b/Tasks/AzureFileCopyV3/task.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV3/task.loc.json b/Tasks/AzureFileCopyV3/task.loc.json index 2ecbb68aa959..a19ee16daaf6 100644 --- a/Tasks/AzureFileCopyV3/task.loc.json +++ b/Tasks/AzureFileCopyV3/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV4/task.json b/Tasks/AzureFileCopyV4/task.json index cbd3cade94ef..acc21b769a00 100644 --- a/Tasks/AzureFileCopyV4/task.json +++ b/Tasks/AzureFileCopyV4/task.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 4, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/Tasks/AzureFileCopyV4/task.loc.json b/Tasks/AzureFileCopyV4/task.loc.json index 71d7251afdee..06dd66ee08f4 100644 --- a/Tasks/AzureFileCopyV4/task.loc.json +++ b/Tasks/AzureFileCopyV4/task.loc.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 4, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/Tasks/AzureFileCopyV5/task.json b/Tasks/AzureFileCopyV5/task.json index cbbbc2a16c69..5ebed265020f 100644 --- a/Tasks/AzureFileCopyV5/task.json +++ b/Tasks/AzureFileCopyV5/task.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 5, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/Tasks/AzureFileCopyV5/task.loc.json b/Tasks/AzureFileCopyV5/task.loc.json index 908c39781595..084408137a7e 100644 --- a/Tasks/AzureFileCopyV5/task.loc.json +++ b/Tasks/AzureFileCopyV5/task.loc.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 5, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "demands": [ diff --git a/_generated/AzureFileCopyV2.versionmap.txt b/_generated/AzureFileCopyV2.versionmap.txt index 2c7e4b9b7b2e..2966be8620ce 100644 --- a/_generated/AzureFileCopyV2.versionmap.txt +++ b/_generated/AzureFileCopyV2.versionmap.txt @@ -1,2 +1,2 @@ -Default|2.229.1 -Node16-225|2.229.0 +Default|2.229.2 +Node16-225|2.229.3 diff --git a/_generated/AzureFileCopyV2/task.json b/_generated/AzureFileCopyV2/task.json index 157db5fbff48..6586df4e4dfb 100644 --- a/_generated/AzureFileCopyV2/task.json +++ b/_generated/AzureFileCopyV2/task.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" @@ -370,7 +370,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "2.229.1", - "Node16-225": "2.229.0" + "Default": "2.229.2", + "Node16-225": "2.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2/task.loc.json b/_generated/AzureFileCopyV2/task.loc.json index 6856b77c8117..4f50227f1a57 100644 --- a/_generated/AzureFileCopyV2/task.loc.json +++ b/_generated/AzureFileCopyV2/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" @@ -370,7 +370,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "2.229.1", - "Node16-225": "2.229.0" + "Default": "2.229.2", + "Node16-225": "2.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2_Node16/task.json b/_generated/AzureFileCopyV2_Node16/task.json index d8ef9df787e8..cbe53f200def 100644 --- a/_generated/AzureFileCopyV2_Node16/task.json +++ b/_generated/AzureFileCopyV2_Node16/task.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 0 + "Patch": 3 }, "demands": [ "azureps" @@ -374,7 +374,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "2.229.1", - "Node16-225": "2.229.0" + "Default": "2.229.2", + "Node16-225": "2.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2_Node16/task.loc.json b/_generated/AzureFileCopyV2_Node16/task.loc.json index d6626535e97e..e33b1f9c40a8 100644 --- a/_generated/AzureFileCopyV2_Node16/task.loc.json +++ b/_generated/AzureFileCopyV2_Node16/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 2, "Minor": 229, - "Patch": 0 + "Patch": 3 }, "demands": [ "azureps" @@ -374,7 +374,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "2.229.1", - "Node16-225": "2.229.0" + "Default": "2.229.2", + "Node16-225": "2.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3.versionmap.txt b/_generated/AzureFileCopyV3.versionmap.txt index b436e8595ba0..ab53944eb5e5 100644 --- a/_generated/AzureFileCopyV3.versionmap.txt +++ b/_generated/AzureFileCopyV3.versionmap.txt @@ -1,2 +1,2 @@ -Default|3.229.1 -Node16-225|3.229.0 +Default|3.229.2 +Node16-225|3.229.3 diff --git a/_generated/AzureFileCopyV3/task.json b/_generated/AzureFileCopyV3/task.json index 46f3052b38be..f113b0c253c8 100644 --- a/_generated/AzureFileCopyV3/task.json +++ b/_generated/AzureFileCopyV3/task.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" @@ -309,7 +309,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "3.229.1", - "Node16-225": "3.229.0" + "Default": "3.229.2", + "Node16-225": "3.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3/task.loc.json b/_generated/AzureFileCopyV3/task.loc.json index 8396fd8b4cd0..9dec03c2642d 100644 --- a/_generated/AzureFileCopyV3/task.loc.json +++ b/_generated/AzureFileCopyV3/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 1 + "Patch": 2 }, "demands": [ "azureps" @@ -309,7 +309,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "3.229.1", - "Node16-225": "3.229.0" + "Default": "3.229.2", + "Node16-225": "3.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3_Node16/task.json b/_generated/AzureFileCopyV3_Node16/task.json index ace538401b07..fd2a778f166c 100644 --- a/_generated/AzureFileCopyV3_Node16/task.json +++ b/_generated/AzureFileCopyV3_Node16/task.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 0 + "Patch": 3 }, "demands": [ "azureps" @@ -313,7 +313,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "3.229.1", - "Node16-225": "3.229.0" + "Default": "3.229.2", + "Node16-225": "3.229.3" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3_Node16/task.loc.json b/_generated/AzureFileCopyV3_Node16/task.loc.json index 7dfaef358763..c4315fb268e6 100644 --- a/_generated/AzureFileCopyV3_Node16/task.loc.json +++ b/_generated/AzureFileCopyV3_Node16/task.loc.json @@ -14,7 +14,7 @@ "version": { "Major": 3, "Minor": 229, - "Patch": 0 + "Patch": 3 }, "demands": [ "azureps" @@ -313,7 +313,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "3.229.1", - "Node16-225": "3.229.0" + "Default": "3.229.2", + "Node16-225": "3.229.3" } } \ No newline at end of file From 58509427448865bc2b9965f8d768a4e94770fc35 Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Fri, 13 Oct 2023 17:55:55 +0400 Subject: [PATCH 6/8] Bump WindowsMachineFileCopyV* versions --- Tasks/WindowsMachineFileCopyV1/task.json | 2 +- Tasks/WindowsMachineFileCopyV1/task.loc.json | 2 +- Tasks/WindowsMachineFileCopyV2/task.json | 2 +- Tasks/WindowsMachineFileCopyV2/task.loc.json | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Tasks/WindowsMachineFileCopyV1/task.json b/Tasks/WindowsMachineFileCopyV1/task.json index fa7f85a8eb9a..bd2b43426a79 100644 --- a/Tasks/WindowsMachineFileCopyV1/task.json +++ b/Tasks/WindowsMachineFileCopyV1/task.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 1, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "minimumAgentVersion": "1.104.0", diff --git a/Tasks/WindowsMachineFileCopyV1/task.loc.json b/Tasks/WindowsMachineFileCopyV1/task.loc.json index 0097802eae87..8a4fb2f880f1 100644 --- a/Tasks/WindowsMachineFileCopyV1/task.loc.json +++ b/Tasks/WindowsMachineFileCopyV1/task.loc.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 1, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "minimumAgentVersion": "1.104.0", diff --git a/Tasks/WindowsMachineFileCopyV2/task.json b/Tasks/WindowsMachineFileCopyV2/task.json index 521a03f8d2b3..10c023534320 100644 --- a/Tasks/WindowsMachineFileCopyV2/task.json +++ b/Tasks/WindowsMachineFileCopyV2/task.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "releaseNotes": "What's new in Version 2.0:
  Proxy support is being added.
   Removed support of legacy DTL machines.", diff --git a/Tasks/WindowsMachineFileCopyV2/task.loc.json b/Tasks/WindowsMachineFileCopyV2/task.loc.json index f08cea906997..f9c53cc66fd8 100644 --- a/Tasks/WindowsMachineFileCopyV2/task.loc.json +++ b/Tasks/WindowsMachineFileCopyV2/task.loc.json @@ -13,7 +13,7 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, + "Minor": 230, "Patch": 0 }, "releaseNotes": "ms-resource:loc.releaseNotes", From 943c94e86b5776d78971952698cd8db40facbd0e Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Mon, 16 Oct 2023 13:56:11 +0400 Subject: [PATCH 7/8] Bump AzureFileCopyV2 --- Tasks/AzureFileCopyV2/task.json | 4 ++-- Tasks/AzureFileCopyV2/task.loc.json | 4 ++-- _generated/AzureFileCopyV2.versionmap.txt | 4 ++-- _generated/AzureFileCopyV2/task.json | 8 ++++---- _generated/AzureFileCopyV2/task.loc.json | 8 ++++---- _generated/AzureFileCopyV2_Node16/task.json | 8 ++++---- _generated/AzureFileCopyV2_Node16/task.loc.json | 8 ++++---- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Tasks/AzureFileCopyV2/task.json b/Tasks/AzureFileCopyV2/task.json index 6579e9344423..944281ad1136 100644 --- a/Tasks/AzureFileCopyV2/task.json +++ b/Tasks/AzureFileCopyV2/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV2/task.loc.json b/Tasks/AzureFileCopyV2/task.loc.json index f39d684efb59..b0e1200414c2 100644 --- a/Tasks/AzureFileCopyV2/task.loc.json +++ b/Tasks/AzureFileCopyV2/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" diff --git a/_generated/AzureFileCopyV2.versionmap.txt b/_generated/AzureFileCopyV2.versionmap.txt index 2966be8620ce..6f06fb4a08a7 100644 --- a/_generated/AzureFileCopyV2.versionmap.txt +++ b/_generated/AzureFileCopyV2.versionmap.txt @@ -1,2 +1,2 @@ -Default|2.229.2 -Node16-225|2.229.3 +Default|2.230.0 +Node16-225|2.230.1 diff --git a/_generated/AzureFileCopyV2/task.json b/_generated/AzureFileCopyV2/task.json index 6586df4e4dfb..91cf5afce544 100644 --- a/_generated/AzureFileCopyV2/task.json +++ b/_generated/AzureFileCopyV2/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" @@ -370,7 +370,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "2.229.2", - "Node16-225": "2.229.3" + "Default": "2.230.0", + "Node16-225": "2.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2/task.loc.json b/_generated/AzureFileCopyV2/task.loc.json index 4f50227f1a57..08e4a7928287 100644 --- a/_generated/AzureFileCopyV2/task.loc.json +++ b/_generated/AzureFileCopyV2/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" @@ -370,7 +370,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "2.229.2", - "Node16-225": "2.229.3" + "Default": "2.230.0", + "Node16-225": "2.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2_Node16/task.json b/_generated/AzureFileCopyV2_Node16/task.json index cbe53f200def..dc8cba7baf87 100644 --- a/_generated/AzureFileCopyV2_Node16/task.json +++ b/_generated/AzureFileCopyV2_Node16/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 3 + "Minor": 230, + "Patch": 1 }, "demands": [ "azureps" @@ -374,7 +374,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "2.229.2", - "Node16-225": "2.229.3" + "Default": "2.230.0", + "Node16-225": "2.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV2_Node16/task.loc.json b/_generated/AzureFileCopyV2_Node16/task.loc.json index e33b1f9c40a8..278a49521092 100644 --- a/_generated/AzureFileCopyV2_Node16/task.loc.json +++ b/_generated/AzureFileCopyV2_Node16/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 2, - "Minor": 229, - "Patch": 3 + "Minor": 230, + "Patch": 1 }, "demands": [ "azureps" @@ -374,7 +374,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "2.229.2", - "Node16-225": "2.229.3" + "Default": "2.230.0", + "Node16-225": "2.230.1" } } \ No newline at end of file From b36706c4e746a619f5fa115f5fb31459f75e25f8 Mon Sep 17 00:00:00 2001 From: Konstantin Tyukalov Date: Mon, 16 Oct 2023 13:58:06 +0400 Subject: [PATCH 8/8] Bump AzureFileCopyV3 --- Tasks/AzureFileCopyV3/task.json | 4 ++-- Tasks/AzureFileCopyV3/task.loc.json | 4 ++-- _generated/AzureFileCopyV3.versionmap.txt | 4 ++-- _generated/AzureFileCopyV3/task.json | 8 ++++---- _generated/AzureFileCopyV3/task.loc.json | 8 ++++---- _generated/AzureFileCopyV3_Node16/task.json | 8 ++++---- _generated/AzureFileCopyV3_Node16/task.loc.json | 8 ++++---- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Tasks/AzureFileCopyV3/task.json b/Tasks/AzureFileCopyV3/task.json index 00779a5746c3..3b91baef3720 100644 --- a/Tasks/AzureFileCopyV3/task.json +++ b/Tasks/AzureFileCopyV3/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" diff --git a/Tasks/AzureFileCopyV3/task.loc.json b/Tasks/AzureFileCopyV3/task.loc.json index a19ee16daaf6..18f236003dd6 100644 --- a/Tasks/AzureFileCopyV3/task.loc.json +++ b/Tasks/AzureFileCopyV3/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" diff --git a/_generated/AzureFileCopyV3.versionmap.txt b/_generated/AzureFileCopyV3.versionmap.txt index ab53944eb5e5..1be6752d6219 100644 --- a/_generated/AzureFileCopyV3.versionmap.txt +++ b/_generated/AzureFileCopyV3.versionmap.txt @@ -1,2 +1,2 @@ -Default|3.229.2 -Node16-225|3.229.3 +Default|3.230.0 +Node16-225|3.230.1 diff --git a/_generated/AzureFileCopyV3/task.json b/_generated/AzureFileCopyV3/task.json index f113b0c253c8..aa14803eb7c5 100644 --- a/_generated/AzureFileCopyV3/task.json +++ b/_generated/AzureFileCopyV3/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" @@ -309,7 +309,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "3.229.2", - "Node16-225": "3.229.3" + "Default": "3.230.0", + "Node16-225": "3.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3/task.loc.json b/_generated/AzureFileCopyV3/task.loc.json index 9dec03c2642d..a1bdb19beac1 100644 --- a/_generated/AzureFileCopyV3/task.loc.json +++ b/_generated/AzureFileCopyV3/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 2 + "Minor": 230, + "Patch": 0 }, "demands": [ "azureps" @@ -309,7 +309,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "3.229.2", - "Node16-225": "3.229.3" + "Default": "3.230.0", + "Node16-225": "3.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3_Node16/task.json b/_generated/AzureFileCopyV3_Node16/task.json index fd2a778f166c..9fe6fd4135e1 100644 --- a/_generated/AzureFileCopyV3_Node16/task.json +++ b/_generated/AzureFileCopyV3_Node16/task.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 3 + "Minor": 230, + "Patch": 1 }, "demands": [ "azureps" @@ -313,7 +313,7 @@ "ExpiredServicePrincipal": "Could not fetch access token for Azure. Verify if the Service Principal used is valid and not expired." }, "_buildConfigMapping": { - "Default": "3.229.2", - "Node16-225": "3.229.3" + "Default": "3.230.0", + "Node16-225": "3.230.1" } } \ No newline at end of file diff --git a/_generated/AzureFileCopyV3_Node16/task.loc.json b/_generated/AzureFileCopyV3_Node16/task.loc.json index c4315fb268e6..9bda3cc4ccad 100644 --- a/_generated/AzureFileCopyV3_Node16/task.loc.json +++ b/_generated/AzureFileCopyV3_Node16/task.loc.json @@ -13,8 +13,8 @@ "author": "Microsoft Corporation", "version": { "Major": 3, - "Minor": 229, - "Patch": 3 + "Minor": 230, + "Patch": 1 }, "demands": [ "azureps" @@ -313,7 +313,7 @@ "ExpiredServicePrincipal": "ms-resource:loc.messages.ExpiredServicePrincipal" }, "_buildConfigMapping": { - "Default": "3.229.2", - "Node16-225": "3.229.3" + "Default": "3.230.0", + "Node16-225": "3.230.1" } } \ No newline at end of file