diff --git a/CHANGELOG.md b/CHANGELOG.md index 194df106aedda..2b3291495cbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [1.37.3](https://github.com/n8n-io/n8n/compare/n8n@1.37.2...n8n@1.37.3) (2024-04-18) + + +### Bug Fixes + +* **core:** Don't create multiple owners when importing credentials or workflows ([#9112](https://github.com/n8n-io/n8n/issues/9112)) ([32db869](https://github.com/n8n-io/n8n/commit/32db869ef45f674c1ec9a8dbabe28c4545192792)) +* **core:** Exclude oAuth callback urls from browser-id checks ([#9158](https://github.com/n8n-io/n8n/issues/9158)) ([58b6a9d](https://github.com/n8n-io/n8n/commit/58b6a9d4aeebfb7ff93bff275af2d558b3e67046)) +* **core:** Improve browserId checks, and add logging ([#9161](https://github.com/n8n-io/n8n/issues/9161)) ([cff50fb](https://github.com/n8n-io/n8n/commit/cff50fb59dc6800f0fbbc4804262be8aaa78beef)) +* Fix issue with Crowdstrike credential not working correctly ([#9108](https://github.com/n8n-io/n8n/issues/9108)) ([d11ca79](https://github.com/n8n-io/n8n/commit/d11ca79adbaf7cba86213723be92b7da769c89f5)) + + + ## [1.37.2](https://github.com/n8n-io/n8n/compare/n8n@1.37.1...n8n@1.37.2) (2024-04-17) ### Bug Fixes diff --git a/package.json b/package.json index a4519c317ed15..02b57cfaadf37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-monorepo", - "version": "1.37.2", + "version": "1.37.3", "private": true, "homepage": "https://n8n.io", "engines": { diff --git a/packages/@n8n/nodes-langchain/package.json b/packages/@n8n/nodes-langchain/package.json index 88c6efdf8fb9f..5c57e355df444 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.37.2", + "version": "1.37.3", "description": "", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io", diff --git a/packages/cli/package.json b/packages/cli/package.json index ebdce325d90fa..83a4b469930a2 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "1.37.2", + "version": "1.37.3", "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 7ee6939610650..43f3237f14836 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "n8n-core", - "version": "1.37.2", + "version": "1.37.3", "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 f0dcee5c55f33..dea39ba711574 100644 --- a/packages/editor-ui/package.json +++ b/packages/editor-ui/package.json @@ -1,6 +1,6 @@ { "name": "n8n-editor-ui", - "version": "1.37.1", + "version": "1.37.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 849b8d7bcd7ad..8ad550167da08 100644 --- a/packages/node-dev/package.json +++ b/packages/node-dev/package.json @@ -1,6 +1,6 @@ { "name": "n8n-node-dev", - "version": "1.36.0", + "version": "1.36.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 e320c6e1c3cc0..c765178b9619b 100644 --- a/packages/nodes-base/package.json +++ b/packages/nodes-base/package.json @@ -1,6 +1,6 @@ { "name": "n8n-nodes-base", - "version": "1.37.2", + "version": "1.37.3", "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 7240dc5681c61..8ad5f173004e5 100644 --- a/packages/workflow/package.json +++ b/packages/workflow/package.json @@ -1,6 +1,6 @@ { "name": "n8n-workflow", - "version": "1.37.2", + "version": "1.37.3", "description": "Workflow base code of n8n", "license": "SEE LICENSE IN LICENSE.md", "homepage": "https://n8n.io",