-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AzureKeyVault@1, @2: Fix incorrect inputs properties #15162
AzureKeyVault@1, @2: Fix incorrect inputs properties #15162
Conversation
@rohit-batra, @tauhid621 - any chance one of you could review & merge this change? There's been another ask to fix this from users of the VS Code extension. |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
@rohit-batra, @rvairavelu - could you please take a look at this changes? |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
Tasks/AzureKeyVaultV1/task.loc.json
Outdated
@@ -14,7 +14,7 @@ | |||
"author": "Microsoft Corporation", | |||
"version": { | |||
"Major": 1, | |||
"Minor": 198, | |||
"Minor": 199, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 200 now
Tasks/AzureKeyVaultV2/task.json
Outdated
@@ -14,7 +14,7 @@ | |||
"author": "Microsoft Corporation", | |||
"version": { | |||
"Major": 2, | |||
"Minor": 189, | |||
"Minor": 199, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should be 200 now
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
Yay, thank you! |
Task name: AzureKeyVault@1, AzureKeyVault@2
Description: The
inputs
JSON intask.json
was usingoptions
instead ofproperties
for the SecretsFilter & RunAsPreJob inputs, leading to incorrect validation downstream in the azure-pipelines-vscode extension.Documentation changes required: (Y/N) N
Added unit tests: (Y/N) N
Attached related issue: (Y/N) Fixes microsoft/azure-pipelines-vscode#410.
Checklist:
This is input validation, so I'm unsure how to test it as I don't know how the schema gets generated.