diff --git a/CHANGELOG.md b/CHANGELOG.md index 9357882aacb..997e13f55ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,12 @@ # Logic Apps Designer +## [3.0.0](https://github.com/Azure/LogicAppsUX/compare/v2.128.0...v3.0.0) (2024-03-24) + + +### Bug Fixes + +* **designer-ui:** Add support for `` in raw HTML editor ([#4422](https://github.com/Azure/LogicAppsUX/issues/4422)) ([9ce1a98](https://github.com/Azure/LogicAppsUX/commit/9ce1a98fbf3fb2abdbaf2f26341b835ad6c7d2d3)) +* **vscode:** Add app kind setting to local settings creation and update on design time ([#4417](https://github.com/Azure/LogicAppsUX/issues/4417)) ([58425bd](https://github.com/Azure/LogicAppsUX/commit/58425bd30b86494ea347777f5b5378b9326d14a6)) + ## [2.128.0](https://github.com/Azure/LogicAppsUX/compare/v2.127.0...v2.128.0) (2024-03-22) diff --git a/apps/vs-code-designer/src/package.json b/apps/vs-code-designer/src/package.json index b9a0ff48e7c..96f33f587c7 100644 --- a/apps/vs-code-designer/src/package.json +++ b/apps/vs-code-designer/src/package.json @@ -1,7 +1,7 @@ { "name": "vscode-azurelogicapps", "displayName": "Azure Logic Apps (Standard)", - "version": "2.128.0", + "version": "3.0.0", "aiKey": "setInGitHubBuild", "repository": "https://github.com/Azure/LogicAppsUX", "main": "main.js", @@ -39,8 +39,12 @@ } ], "activation": { - "onFetch": ["microsoft.web/sites"], - "onResolve": ["microsoft.web/sites"] + "onFetch": [ + "microsoft.web/sites" + ], + "onResolve": [ + "microsoft.web/sites" + ] } }, "commands": [ @@ -719,17 +723,28 @@ "azureLogicAppsStandard.projectRuntime": { "scope": "resource", "type": "string", - "enum": ["~4", "~3"], + "enum": [ + "~4", + "~3" + ], "description": "The default version of the Azure Functions runtime to use when performing operations like \"Create New Logic App\".", - "enumDescriptions": ["Azure Functions v4", "Azure Functions v3 (.NET Core)"] + "enumDescriptions": [ + "Azure Functions v4", + "Azure Functions v3 (.NET Core)" + ] }, "azureLogicAppsStandard.projectLanguage": { "scope": "resource", "type": "string", - "enum": ["JavaScript", "C#"], + "enum": [ + "JavaScript", + "C#" + ], "readOnly": true, "description": "The default language to use when performing operations like \"Create New Workflow\".", - "enumDescriptions": [""] + "enumDescriptions": [ + "" + ] }, "azureLogicAppsStandard.deploySubpath": { "scope": "resource", @@ -841,7 +856,11 @@ }, "azureLogicAppsStandard.projectOpenBehavior": { "type": "string", - "enum": ["AddToWorkspace", "OpenInNewWindow", "OpenInCurrentWindow"], + "enum": [ + "AddToWorkspace", + "OpenInNewWindow", + "OpenInCurrentWindow" + ], "description": "The behavior to use after creating a new project. The options are \"AddToWorkspace\", \"OpenInNewWindow\", or \"OpenInCurrentWindow\"." }, "azureLogicAppsStandard.show64BitWarning": { @@ -970,8 +989,15 @@ }, "homepage": "https://azure.microsoft.com/services/logic-apps/", "license": "SEE LICENSE IN LICENSE.md", - "categories": ["Azure"], - "keywords": ["Azure", "Logic App", "serverless", "multi-root ready"], + "categories": [ + "Azure" + ], + "keywords": [ + "Azure", + "Logic App", + "serverless", + "multi-root ready" + ], "preview": false, "publisher": "ms-azuretools", "icon": "assets/logicapp.png", diff --git a/libs/chatbot/package.json b/libs/chatbot/package.json index ab65e9b9f47..bd7e9ad2fe5 100644 --- a/libs/chatbot/package.json +++ b/libs/chatbot/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/logic-apps-chatbot", - "version": "2.128.0", + "version": "3.0.0", "scripts": { "yalcpush": "yalc push ../../dist/libs/chatbot" }, diff --git a/libs/data-mapper/package.json b/libs/data-mapper/package.json index 4ff8363c928..9e855b77ea0 100644 --- a/libs/data-mapper/package.json +++ b/libs/data-mapper/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/logic-apps-data-mapper", - "version": "2.128.0", + "version": "3.0.0", "scripts": { "yalcpush": "yalc push ../../dist/libs/data-mapper" } diff --git a/libs/designer-ui/package.json b/libs/designer-ui/package.json index e64c3ffcb7a..4ef2c0128c6 100644 --- a/libs/designer-ui/package.json +++ b/libs/designer-ui/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/designer-ui", - "version": "2.128.0", + "version": "3.0.0", "scripts": { "yalcpush": "yalc push ../../dist/libs/designer-ui" }, diff --git a/libs/designer/package.json b/libs/designer/package.json index 6fb2399f975..ab1757dd18a 100644 --- a/libs/designer/package.json +++ b/libs/designer/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/logic-apps-designer", - "version": "2.128.0", + "version": "3.0.0", "scripts": { "yalcpush": "yalc push ../../dist/libs/designer" }, diff --git a/libs/logic-apps-shared/package.json b/libs/logic-apps-shared/package.json index 63b83223cbf..53b71366796 100644 --- a/libs/logic-apps-shared/package.json +++ b/libs/logic-apps-shared/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/logic-apps-shared", - "version": "2.128.0", + "version": "3.0.0", "scripts": { "yalcpush": "yalc push ../../dist/libs/logic-apps-shared" } diff --git a/libs/vscode-extension/package.json b/libs/vscode-extension/package.json index cd101e406b1..0f85fd88b63 100644 --- a/libs/vscode-extension/package.json +++ b/libs/vscode-extension/package.json @@ -1,4 +1,4 @@ { "name": "@microsoft/vscode-extension-logic-apps", - "version": "2.128.0" + "version": "3.0.0" } diff --git a/package.json b/package.json index f1bcd0f6d64..b47b7c6963e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/logicappsux", - "version": "2.128.0", + "version": "3.0.0", "license": "MIT", "scripts": { "start": "nx serve",