Skip to content

Commit

Permalink
chore(release): 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
release-automation-hartra344@microsoft.com committed Mar 24, 2024
1 parent d37e304 commit 8a5753a
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<img src=>` 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)


Expand Down
46 changes: 36 additions & 10 deletions apps/vs-code-designer/src/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -39,8 +39,12 @@
}
],
"activation": {
"onFetch": ["microsoft.web/sites"],
"onResolve": ["microsoft.web/sites"]
"onFetch": [
"microsoft.web/sites"
],
"onResolve": [
"microsoft.web/sites"
]
}
},
"commands": [
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion libs/chatbot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logic-apps-chatbot",
"version": "2.128.0",
"version": "3.0.0",
"scripts": {
"yalcpush": "yalc push ../../dist/libs/chatbot"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/data-mapper/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion libs/designer-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/designer-ui",
"version": "2.128.0",
"version": "3.0.0",
"scripts": {
"yalcpush": "yalc push ../../dist/libs/designer-ui"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/designer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logic-apps-designer",
"version": "2.128.0",
"version": "3.0.0",
"scripts": {
"yalcpush": "yalc push ../../dist/libs/designer"
},
Expand Down
2 changes: 1 addition & 1 deletion libs/logic-apps-shared/package.json
Original file line number Diff line number Diff line change
@@ -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"
}
Expand Down
2 changes: 1 addition & 1 deletion libs/vscode-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"name": "@microsoft/vscode-extension-logic-apps",
"version": "2.128.0"
"version": "3.0.0"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logicappsux",
"version": "2.128.0",
"version": "3.0.0",
"license": "MIT",
"scripts": {
"start": "nx serve",
Expand Down

0 comments on commit 8a5753a

Please sign in to comment.