From ca9701a0ffac44a3d2ba2bfc908c1e063cec3124 Mon Sep 17 00:00:00 2001 From: Kees Schollaart Date: Sun, 3 Mar 2019 12:07:02 +0100 Subject: [PATCH] Some more explanation for the deployment filter (#22) --- arm-outputs/arm-outputsV2/task.json | 4 ++-- vss-extension.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arm-outputs/arm-outputsV2/task.json b/arm-outputs/arm-outputsV2/task.json index 84fc531..6fd591e 100644 --- a/arm-outputs/arm-outputsV2/task.json +++ b/arm-outputs/arm-outputsV2/task.json @@ -14,7 +14,7 @@ "version": { "Major": 5, "Minor": 0, - "Patch": 20 + "Patch": 21 }, "releaseNotes": "Complete rewrite from PowerShell to Node to enable Linux based agents", "demands": [], @@ -80,7 +80,7 @@ "type": "string", "label": "Filter deployment name", "required": false, - "helpMarkDown": "Optional string to filter deployments by. This can be useful if you have concurrent deployments to the same resource group. Deployment names in Azure Pipelines are the name of the JSON file plus the date and time, so a file `CreateKeyVault.json` could have a deployment name of `CreateKeyVault-20180025-151538-0688`. In this case, if you want to filter to deployments of this file enter `CreateKeyVault` as the filter." + "helpMarkDown": "Optional string to filter deployments by. This can be useful if you have concurrent deployments to the same resource group. Deployment names in Azure Pipelines are the name of the JSON file plus the date and time, so a file `CreateKeyVault.json` could have a deployment name of `CreateKeyVault-20180025-151538-0688`. In this case, if you want to filter to deployments of this file enter `CreateKeyVault` as the filter.

This uses [micromatch](https://github.com/micromatch/micromatch) under the hood (ignoring case) so us wildcards like *" } ], "dataSourceBindings": [ diff --git a/vss-extension.json b/vss-extension.json index eb5fa2b..92243c7 100644 --- a/vss-extension.json +++ b/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "arm-outputs", "name": "ARM Outputs", - "version": "5.1.6", + "version": "5.1.7", "publisher": "keesschollaart", "public": true, "helpMarkDown": "[More Information](https://github.com/keesschollaart81/vsts-arm-outputs)",