Skip to content

Commit

Permalink
Release 1.195.0
Browse files Browse the repository at this point in the history
  • Loading branch information
50Wliu committed Nov 23, 2021
1 parent 0864e9f commit 3c5f4a5
Show file tree
Hide file tree
Showing 4 changed files with 130 additions and 113 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ All notable changes to the Azure Pipelines extension will be documented in this

The format is based on [Keep a Changelog](http://keepachangelog.com/). Versioning follows an internal Azure DevOps format that is not compatible with SemVer.

## 1.195.0
### Fixed
- Emojis no longer cause validation to fail (thanks @PaulTaykalo!)
- The "Azure Pipelines: Configure Pipeline" command should work again
### Updated
- M195 schema

## 1.194.1
### Fixed
- Actually includes the changes intended for 1.194.0
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-pipelines",
"displayName": "Azure Pipelines",
"description": "Syntax highlighting, IntelliSense, and more for Azure Pipelines YAML",
"version": "1.194.2",
"version": "1.195.0",
"publisher": "ms-azure-devops",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"repository": {
Expand Down
230 changes: 120 additions & 110 deletions service-schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://github.com/Microsoft/azure-pipelines-vscode/blob/main/service-schema.json",
"$comment": "v1.194.0",
"$comment": "v1.195.0",
"title": "Pipeline schema",
"description": "A pipeline definition",
"oneOf": [
Expand Down Expand Up @@ -5343,19 +5343,19 @@
]
},
{
"description": "Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).",
"description": "Run tests with Visual Studio test runner",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSTest@2"
"VSTest@1"
]
},
{
"description": "Run tests with Visual Studio test runner",
"description": "Run unit and functional tests (Selenium, Appium, Coded UI test, etc.) using the Visual Studio Test (VsTest) runner. Test frameworks that have a Visual Studio test adapter such as MsTest, xUnit, NUnit, Chutzpah (for JavaScript tests using QUnit, Mocha and Jasmine), etc. can be run. Tests can be distributed on multiple agents using this task (version 2).",
"doNotSuggest": false,
"ignoreCase": "value",
"enum": [
"VSTest@1"
"VSTest@2"
]
},
{
Expand Down Expand Up @@ -21632,6 +21632,16 @@
"type": "boolean",
"description": "Fail on Accessibility Error",
"ignoreCase": "key"
},
"baselineFile": {
"type": "string",
"description": "Baseline File Path",
"ignoreCase": "key"
},
"singleWorker": {
"type": "boolean",
"description": "Uses a single crawler worker.",
"ignoreCase": "key"
}
},
"additionalProperties": false,
Expand Down Expand Up @@ -21703,6 +21713,111 @@
"inputs"
]
},
{
"properties": {
"task": {
"description": "Visual Studio Test\n\nRun tests with Visual Studio test runner",
"ignoreCase": "value",
"pattern": "^VSTest@1$"
},
"inputs": {
"description": "Visual Studio Test inputs",
"properties": {
"testAssembly": {
"type": "string",
"description": "Test Assembly",
"ignoreCase": "key"
},
"testFiltercriteria": {
"type": "string",
"description": "Test Filter criteria",
"ignoreCase": "key"
},
"runSettingsFile": {
"type": "string",
"description": "Run Settings File",
"ignoreCase": "key"
},
"overrideTestrunParameters": {
"type": "string",
"description": "Override TestRun Parameters",
"ignoreCase": "key"
},
"codeCoverageEnabled": {
"type": "boolean",
"description": "Code Coverage Enabled",
"ignoreCase": "key"
},
"runInParallel": {
"type": "boolean",
"description": "Run In Parallel",
"ignoreCase": "key"
},
"vstestLocationMethod": {
"description": "VSTest",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"vsTestVersion": {
"description": "VSTest version",
"ignoreCase": "all",
"enum": [
"latest",
"14.0",
"12.0"
]
},
"vstestLocation": {
"type": "string",
"description": "Path to vstest.console.exe",
"ignoreCase": "key"
},
"pathtoCustomTestAdapters": {
"type": "string",
"description": "Path to Custom Test Adapters",
"ignoreCase": "key"
},
"otherConsoleOptions": {
"type": "string",
"description": "Other console options",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload Test Attachments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
Expand Down Expand Up @@ -21961,111 +22076,6 @@
"task"
]
},
{
"properties": {
"task": {
"description": "Visual Studio Test\n\nRun tests with Visual Studio test runner",
"ignoreCase": "value",
"pattern": "^VSTest@1$"
},
"inputs": {
"description": "Visual Studio Test inputs",
"properties": {
"testAssembly": {
"type": "string",
"description": "Test Assembly",
"ignoreCase": "key"
},
"testFiltercriteria": {
"type": "string",
"description": "Test Filter criteria",
"ignoreCase": "key"
},
"runSettingsFile": {
"type": "string",
"description": "Run Settings File",
"ignoreCase": "key"
},
"overrideTestrunParameters": {
"type": "string",
"description": "Override TestRun Parameters",
"ignoreCase": "key"
},
"codeCoverageEnabled": {
"type": "boolean",
"description": "Code Coverage Enabled",
"ignoreCase": "key"
},
"runInParallel": {
"type": "boolean",
"description": "Run In Parallel",
"ignoreCase": "key"
},
"vstestLocationMethod": {
"description": "VSTest",
"ignoreCase": "all",
"enum": [
"version",
"location"
]
},
"vsTestVersion": {
"description": "VSTest version",
"ignoreCase": "all",
"enum": [
"latest",
"14.0",
"12.0"
]
},
"vstestLocation": {
"type": "string",
"description": "Path to vstest.console.exe",
"ignoreCase": "key"
},
"pathtoCustomTestAdapters": {
"type": "string",
"description": "Path to Custom Test Adapters",
"ignoreCase": "key"
},
"otherConsoleOptions": {
"type": "string",
"description": "Other console options",
"ignoreCase": "key"
},
"testRunTitle": {
"type": "string",
"description": "Test Run Title",
"ignoreCase": "key"
},
"platform": {
"type": "string",
"description": "Platform",
"ignoreCase": "key"
},
"configuration": {
"type": "string",
"description": "Configuration",
"ignoreCase": "key"
},
"publishRunAttachments": {
"type": "boolean",
"description": "Upload Test Attachments",
"ignoreCase": "key"
}
},
"additionalProperties": false,
"required": []
}
},
"doNotSuggest": false,
"firstProperty": [
"task"
],
"required": [
"task"
]
},
{
"properties": {
"task": {
Expand Down

0 comments on commit 3c5f4a5

Please sign in to comment.