Skip to content

Commit

Permalink
chore(release): 5.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 21, 2024
1 parent 29d7fcb commit 205fe5f
Show file tree
Hide file tree
Showing 10 changed files with 101 additions and 28 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
# Logic Apps Designer
## [5.4.0](https://github.com/Azure/LogicAppsUX/compare/v5.3.0...v5.4.0) (2024-11-21)


### Features

* **Data Mapper:** Move edge path logic to useInternal Reactflow state ([#6139](https://github.com/Azure/LogicAppsUX/issues/6139)) ([9603d91](https://github.com/Azure/LogicAppsUX/commit/9603d918093c86f519f99aab7e68566139eb768f))
* **Templates:** Hover text for connectors ([#6152](https://github.com/Azure/LogicAppsUX/issues/6152)) ([29d7fcb](https://github.com/Azure/LogicAppsUX/commit/29d7fcbeea29f0a6bd2f3e8c88c524d302a56b38))


### Bug Fixes

* **designer:** Prevent Crash When No Parameter Label ([#6146](https://github.com/Azure/LogicAppsUX/issues/6146)) ([ac3b09f](https://github.com/Azure/LogicAppsUX/commit/ac3b09f758a5bd9fbe5d94d39bf7d6f1d4e473f5))
* **Designer:** Prevent HTML editor from allowing DOM-based XSS ([#6147](https://github.com/Azure/LogicAppsUX/issues/6147)) ([f85d50f](https://github.com/Azure/LogicAppsUX/commit/f85d50f1a7b46adf301f0ad8ff0ba2c872181a9b))
* **Designer:** Updated to Fluent V9 component to fix scroll ([#6123](https://github.com/Azure/LogicAppsUX/issues/6123)) ([ae3e44e](https://github.com/Azure/LogicAppsUX/commit/ae3e44e42f2961f124f049f8364992c29bcd196b))
* **Templates:** Pagination bug of not resetting page num on filter change ([#6150](https://github.com/Azure/LogicAppsUX/issues/6150)) ([46f62d3](https://github.com/Azure/LogicAppsUX/commit/46f62d3c13587d9114db5203a37fb9abd9d5bdb8))

## [5.3.0](https://github.com/Azure/LogicAppsUX/compare/v5.2.0...v5.3.0) (2024-11-18)


Expand Down
56 changes: 44 additions & 12 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": "5.3.0",
"version": "5.4.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 @@ -735,23 +739,40 @@
"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.dataMapperVersion": {
"type": "number",
"enum": [1, 2],
"enum": [
1,
2
],
"description": "The default version of Data Mapper to use when performing operations like \"Create data map\".",
"enumDescriptions": ["Version 1", "Version 2 (Beta)"],
"enumDescriptions": [
"Version 1",
"Version 2 (Beta)"
],
"default": 1
},
"azureLogicAppsStandard.deploySubpath": {
Expand Down Expand Up @@ -864,7 +885,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 @@ -1003,8 +1028,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
7 changes: 5 additions & 2 deletions libs/chatbot/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logic-apps-chatbot",
"version": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@fluentui/react": "8.110.2",
"@fluentui/react-components": "9.56.0",
Expand All @@ -26,7 +26,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions libs/data-mapper-v2/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logic-apps-data-mapper-v2",
"version": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@fluentui/azure-themes": "8.5.70",
"@fluentui/react": "8.110.2",
Expand Down Expand Up @@ -52,7 +52,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions 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": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@fluentui/azure-themes": "8.5.70",
"@fluentui/react": "8.110.2",
Expand Down Expand Up @@ -44,7 +44,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions libs/designer-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/designer-ui",
"version": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@fluentui/react": "8.110.2",
"@fluentui/react-components": "9.56.0",
Expand Down Expand Up @@ -46,7 +46,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions libs/designer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logic-apps-designer",
"version": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@fluentui/azure-themes": "8.5.70",
"@fluentui/react": "8.110.2",
Expand Down Expand Up @@ -55,7 +55,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions 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": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@apidevtools/swagger-parser": "10.0.3",
"@formatjs/intl": "^2.10.1",
Expand All @@ -20,7 +20,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
7 changes: 5 additions & 2 deletions libs/vscode-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/vscode-extension-logic-apps",
"version": "5.3.0",
"version": "5.4.0",
"dependencies": {
"@apidevtools/swagger-parser": "10.0.3",
"@microsoft/logic-apps-shared": "workspace:*",
Expand Down Expand Up @@ -31,7 +31,10 @@
},
"./package.json": "./package.json"
},
"files": ["build/lib/**/*", "src"],
"files": [
"build/lib/**/*",
"src"
],
"license": "MIT",
"main": "src/index.ts",
"module": "src/index.ts",
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/logicappsux",
"version": "5.3.0",
"version": "5.4.0",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/eslintrc": "^3.0.2",
Expand Down Expand Up @@ -66,7 +66,11 @@
},
"license": "MIT",
"lint-staged": {
"*.{js,ts,tsx}": ["npm run extract", "eslint --cache --fix", "biome check --write"]
"*.{js,ts,tsx}": [
"npm run extract",
"eslint --cache --fix",
"biome check --write"
]
},
"private": true,
"scripts": {
Expand Down

0 comments on commit 205fe5f

Please sign in to comment.