Update version, changelog for 0.8.3 (#3859)

This commit is contained in:
Brandon Waterloo [MSFT] 2024-05-06 15:13:52 -04:00 коммит произвёл GitHub
Родитель a7a563ab9e
Коммит 9e51224bc5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
4 изменённых файлов: 7 добавлений и 10 удалений

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

@ -1,14 +1,9 @@
# Release History
## 0.9.0-alpha.1 (Unreleased)
### Features Added
### Breaking Changes
### Bugs Fixed
## 0.8.3 (2024-05-07)
### Other Changes
- [[#3845]](https://github.com/Azure/azure-dev/pull/3845) A small change to the Initialize App command to improve user experience.
## 0.8.2 (2024-04-24)

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

@ -1,12 +1,12 @@
{
"name": "azure-dev",
"version": "0.9.0-alpha.1",
"version": "0.8.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "azure-dev",
"version": "0.9.0-alpha.1",
"version": "0.8.3",
"license": "MIT",
"dependencies": {
"@microsoft/vscode-azext-utils": "~2",

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

@ -2,7 +2,7 @@
"name": "azure-dev",
"displayName": "Azure Developer CLI",
"description": "Makes it easy to run, provision, and deploy Azure applications using the Azure Developer CLI",
"version": "0.9.0-alpha.1",
"version": "0.8.3",
"license": "MIT",
"icon": "resources/icon.png",
"preview": true,

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

@ -54,8 +54,10 @@ export async function init(context: IActionContext, selectedFile?: vscode.Uri, a
.withArg('init');
if (useExistingSource) {
context.telemetry.properties.useExistingSource = 'true';
command.withArg('--from-code');
} else {
// Telemetry property is set inside selectApplicationTemplate
command.withNamedArg('-t', {value: templateUrl!, quoting: vscode.ShellQuoting.Strong});
}