Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Commit

Permalink
Update version to 1.0.20 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
joechung-msft authored Sep 7, 2021
1 parent 2b28f6f commit 850c34c
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 86 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to the "vscode-logicapps" extension will be documented in th

## [Unreleased]

## [1.0.20] - 2021-09-07
### Changed
- Update designer version to 1.60830.1.2
- Update logo icon

## [1.0.19] - 2021-08-25
### Changed
- Update designer version to 1.60816.1.2
Expand Down
154 changes: 77 additions & 77 deletions package-lock.json

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

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-logicapps",
"displayName": "Azure Logic Apps (Consumption)",
"description": "%extension.description%",
"version": "1.0.19",
"version": "1.0.20",
"publisher": "ms-azuretools",
"icon": "resources/azLogicApps.png",
"aiKey": "b6385546-3be0-489c-a298-baccd6c152fb",
Expand Down Expand Up @@ -744,16 +744,16 @@
"@types/node": "^7.10.14",
"@types/request-promise-native": "^1.0.18",
"@types/vscode": "^1.31.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.29.3",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-utils": "^3.0.0",
"mocha": "^9.1.0",
"mocha": "^9.1.1",
"ts-loader": "^9.2.5",
"typescript": "^4.3.5",
"vsce": "^1.96.1",
"typescript": "^4.4.2",
"vsce": "^1.97.0",
"vscode-test": "^1.6.1",
"webpack": "^5.51.1",
"webpack": "^5.52.0",
"webpack-cli": "^4.8.0"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/commands/logic-app/openInDesigner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ async function handleSave(node: IAzureNode<LogicAppTreeItem>, definition: string
const updatedDefinition = await node.treeItem.update(definition, parameters);
await node.refresh();
return updatedDefinition;
} catch (error) {
} catch (error: any) {
await vscode.window.showErrorMessage(error.message, DialogResponses.ok);
throw error;
}
Expand Down
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*--------------------------------------------------------------------------------------------*/

export class Constants {
public static DesignerVersion = "1.60816.1.2.210819-1451";
public static DesignerVersion = "1.60830.1.2.210831-1348";

public static SubscriptionContextValue = "azureextensionui.azureSubscription";

Expand Down

0 comments on commit 850c34c

Please sign in to comment.