* Release 1.195.0

* Update release instructions

* Bump version for development
This commit is contained in:
Winston Liu 2021-11-22 19:58:45 -05:00 коммит произвёл GitHub
Родитель 0864e9f2a1
Коммит f6a0991768
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 137 добавлений и 119 удалений

Просмотреть файл

@ -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

Просмотреть файл

@ -4,11 +4,12 @@
0. Ensure package.json and package-lock.json have the version number you want to release.
- You can do this with `npm version --no-git-tag-version <patch|minor|major>` to get both files at once.
0. Ensure the CHANGELOG is up to date.
0. Update the [service schema](#bumping-service-schema).
0. Create a PR on GitHub, mostly for tracking reasons.
0. Manually queue a [Release build](https://dev.azure.com/ms/azure-pipelines-vscode/_build?definitionId=12) against your PR branch.
- This will create a GitHub release at the commit you've specified!
0. Ship the resulting package to the Marketplace.
You can grab it from either the pipeline run or off GitHub itself.
0. Ship the resulting package to the [Marketplace](https://marketplace.visualstudio.com/manage/publishers/ms-azure-devops).
- You can grab it from either the pipeline run or off GitHub itself.
0. Bump the package.json/package-lock.json patch version numbers so that CI produces prerelease packages off the "next" release.
0. Push that change and merge the PR. You can now delete the branch.

4
package-lock.json сгенерированный
Просмотреть файл

@ -1,12 +1,12 @@
{
"name": "azure-pipelines",
"version": "1.194.2",
"version": "1.195.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "azure-pipelines",
"version": "1.194.2",
"version": "1.195.1",
"license": "MIT",
"dependencies": {
"@azure/arm-appservice": "^6.1.0",

Просмотреть файл

@ -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.1",
"publisher": "ms-azure-devops",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"repository": {

Просмотреть файл

@ -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": [
@ -5342,14 +5342,6 @@
"ServiceFabricPowerShell@1"
]
},
{
"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@2"
]
},
{
"description": "Run tests with Visual Studio test runner",
"doNotSuggest": false,
@ -5358,6 +5350,14 @@
"VSTest@1"
]
},
{
"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@2"
]
},
{
"description": "[PREVIEW] Pause a pipeline run to wait for manual interaction. Works only with YAML pipelines.",
"doNotSuggest": false,
@ -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,
@ -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": {
@ -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": {