diff --git a/CHANGELOG.md b/CHANGELOG.md index 986b85b0682ea..604cacb50aefd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.53.1](https://github.com/n8n-io/n8n/compare/n8n@1.53.0...n8n@1.53.1) (2024-08-02) + + +### Bug Fixes + +* **core:** Upgrade tournament to address some XSS vulnerabilities ([#10277](https://github.com/n8n-io/n8n/issues/10277)) ([887ed17](https://github.com/n8n-io/n8n/commit/887ed1788fbb730a2ed5119e042afd5f79ddbe79)) +* **editor:** Enable moving resources only if team projects are available by the license ([#10271](https://github.com/n8n-io/n8n/issues/10271)) ([d9a638a](https://github.com/n8n-io/n8n/commit/d9a638aa0b2b51269c89a35184eeb702c212d432)) +* **editor:** Fix execution retry button ([#10275](https://github.com/n8n-io/n8n/issues/10275)) ([3978b93](https://github.com/n8n-io/n8n/commit/3978b93f5189cf89e5c3de1d17e5ae1e38f6aa56)) +* Loop node no input data shown ([#10224](https://github.com/n8n-io/n8n/issues/10224)) ([2cfa75d](https://github.com/n8n-io/n8n/commit/2cfa75def142851b98ebe0725bc112496165b6e4)) + + + # [1.53.0](https://github.com/n8n-io/n8n/compare/n8n@1.52.0...n8n@1.53.0) (2024-07-31) diff --git a/package.json b/package.json index e05eeb9845f1b..dbeffa861cccf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-monorepo", - "version": "1.53.0", + "version": "1.53.1", "private": true, "engines": { "node": ">=20.15", diff --git a/packages/@n8n/nodes-langchain/package.json b/packages/@n8n/nodes-langchain/package.json index 3a328af0ae880..71f52fa001e32 100644 --- a/packages/@n8n/nodes-langchain/package.json +++ b/packages/@n8n/nodes-langchain/package.json @@ -1,6 +1,6 @@ { "name": "@n8n/n8n-nodes-langchain", - "version": "1.53.0", + "version": "1.53.1", "description": "", "main": "index.js", "scripts": { diff --git a/packages/cli/package.json b/packages/cli/package.json index ca8f192e40152..d83c4a7674ee3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "1.53.0", + "version": "1.53.1", "description": "n8n Workflow Automation Tool", "main": "dist/index", "types": "dist/index.d.ts", diff --git a/packages/core/package.json b/packages/core/package.json index dfcc23db99d92..8896c7d0b4d8b 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "n8n-core", - "version": "1.53.0", + "version": "1.53.1", "description": "Core functionality of n8n", "main": "dist/index", "types": "dist/index.d.ts", diff --git a/packages/editor-ui/package.json b/packages/editor-ui/package.json index caf156fa83c9e..60958c35c79f2 100644 --- a/packages/editor-ui/package.json +++ b/packages/editor-ui/package.json @@ -1,6 +1,6 @@ { "name": "n8n-editor-ui", - "version": "1.53.0", + "version": "1.53.1", "description": "Workflow Editor UI for n8n", "main": "index.js", "scripts": { diff --git a/packages/node-dev/package.json b/packages/node-dev/package.json index d7b16155a1aa5..aa380c80dded4 100644 --- a/packages/node-dev/package.json +++ b/packages/node-dev/package.json @@ -1,6 +1,6 @@ { "name": "n8n-node-dev", - "version": "1.53.0", + "version": "1.53.1", "description": "CLI to simplify n8n credentials/node development", "main": "dist/src/index", "types": "dist/src/index.d.ts", diff --git a/packages/nodes-base/package.json b/packages/nodes-base/package.json index e9da85e9faf47..b6638b6168b72 100644 --- a/packages/nodes-base/package.json +++ b/packages/nodes-base/package.json @@ -1,6 +1,6 @@ { "name": "n8n-nodes-base", - "version": "1.53.0", + "version": "1.53.1", "description": "Base nodes of n8n", "main": "index.js", "scripts": { diff --git a/packages/workflow/package.json b/packages/workflow/package.json index 77348f2a945e1..113074a256d07 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "n8n-workflow", - "version": "1.52.0", + "version": "1.52.1", "description": "Workflow base code of n8n", "main": "dist/index.js", "module": "src/index.ts",