diff --git a/CHANGELOG.md b/CHANGELOG.md index 53c4be1eedb9d..66051e18f8c1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## [1.44.2](https://github.com/n8n-io/n8n/compare/n8n@1.44.1...n8n@1.44.2) (2024-06-12) + + +### Bug Fixes + +* **core:** Allow graceful shutdown for main with active executions ([#9661](https://github.com/n8n-io/n8n/issues/9661)) ([486a290](https://github.com/n8n-io/n8n/commit/486a290e1537af94df20292057f2f20a42dc7b49)) +* **core:** Fix optional chaining in continue on fail check ([#9667](https://github.com/n8n-io/n8n/issues/9667)) ([0434690](https://github.com/n8n-io/n8n/commit/0434690e4d9f64cca69dcc919bfda50dc87abcc6)) +* **core:** Start WaitTracker only in the main container ([#9600](https://github.com/n8n-io/n8n/issues/9600)) ([31a3260](https://github.com/n8n-io/n8n/commit/31a3260246154da66980e1897b3105877cf04fa5)) +* **editor:** Fix empty page for cloud users ([#9707](https://github.com/n8n-io/n8n/issues/9707)) ([d392ce8](https://github.com/n8n-io/n8n/commit/d392ce8d09f14d659ad4075651fd808c51488009)) +* **editor:** Render credentials editable when opening them from the node view ([#9678](https://github.com/n8n-io/n8n/issues/9678)) ([8c5a171](https://github.com/n8n-io/n8n/commit/8c5a171ee987b6c5b7d4f1f8d644428cd0ca1932)) +* **Gotify Node:** Fix issue with self signed certificates not working ([#9647](https://github.com/n8n-io/n8n/issues/9647)) ([1057c81](https://github.com/n8n-io/n8n/commit/1057c813e2dd9afb3bcd4fd3bcabeff450c10041)) + + + ## [1.44.1](https://github.com/n8n-io/n8n/compare/n8n@1.44.0...n8n@1.44.1) (2024-06-03) diff --git a/package.json b/package.json index 3fc379cc5e9a8..b31f916436f31 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-monorepo", - "version": "1.44.1", + "version": "1.44.2", "private": true, "homepage": "https://n8n.io", "engines": { diff --git a/packages/@n8n/nodes-langchain/package.json b/packages/@n8n/nodes-langchain/package.json index 8ee8b8cd1b664..0b6800182b75f 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.44.1", + "version": "1.44.2", "description": "", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/cli/package.json b/packages/cli/package.json index 47249f339cb87..1ad9c462d06cf 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "1.44.1", + "version": "1.44.2", "description": "n8n Workflow Automation Tool", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/core/package.json b/packages/core/package.json index 0eead2fc7f6f4..4f9377859bc37 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "n8n-core", - "version": "1.44.0", + "version": "1.44.1", "description": "Core functionality of n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/editor-ui/package.json b/packages/editor-ui/package.json index c74b334cefab0..f19d1ffdf0e1b 100644 --- a/packages/editor-ui/package.json +++ b/packages/editor-ui/package.json @@ -1,6 +1,6 @@ { "name": "n8n-editor-ui", - "version": "1.44.1", + "version": "1.44.2", "description": "Workflow Editor UI for n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/node-dev/package.json b/packages/node-dev/package.json index 01dcdff2a47d9..ceebc4f7af9a2 100644 --- a/packages/node-dev/package.json +++ b/packages/node-dev/package.json @@ -1,6 +1,6 @@ { "name": "n8n-node-dev", - "version": "1.44.0", + "version": "1.44.1", "description": "CLI to simplify n8n credentials/node development", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/nodes-base/package.json b/packages/nodes-base/package.json index 0d9d15b9690d1..79967763bb780 100644 --- a/packages/nodes-base/package.json +++ b/packages/nodes-base/package.json @@ -1,6 +1,6 @@ { "name": "n8n-nodes-base", - "version": "1.44.1", + "version": "1.44.2", "description": "Base nodes of n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/workflow/package.json b/packages/workflow/package.json index 67618d22da817..9733e9f4c26d2 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "n8n-workflow", - "version": "1.43.0", + "version": "1.43.1", "description": "Workflow base code of n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io",