From 4eb905ab296432376120ae4715d5f1d58c9f678a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E0=A4=95=E0=A4=BE=E0=A4=B0=E0=A4=A4=E0=A5=8B=E0=A4=AB?= =?UTF-8?q?=E0=A5=8D=E0=A4=AB=E0=A5=87=E0=A4=B2=E0=A4=B8=E0=A5=8D=E0=A4=95?= =?UTF-8?q?=E0=A5=8D=E0=A4=B0=E0=A4=BF=E0=A4=AA=E0=A5=8D=E0=A4=9F=E2=84=A2?= Date: Fri, 11 Oct 2024 18:26:43 +0200 Subject: [PATCH 1/2] fix(editor): Make submit in ChangePasswordView work again (#11227) --- packages/editor-ui/src/views/ChangePasswordView.vue | 5 ----- 1 file changed, 5 deletions(-) diff --git a/packages/editor-ui/src/views/ChangePasswordView.vue b/packages/editor-ui/src/views/ChangePasswordView.vue index 7c1974951986b..7a48c5867a516 100644 --- a/packages/editor-ui/src/views/ChangePasswordView.vue +++ b/packages/editor-ui/src/views/ChangePasswordView.vue @@ -47,12 +47,7 @@ const getMfaEnabled = () => { return router.currentRoute.value.query.mfaEnabled === 'true' ? true : false; }; -const isFormWithMFAToken = (values: { [key: string]: string }): values is { mfaToken: string } => { - return 'mfaToken' in values; -}; - const onSubmit = async (values: { [key: string]: string }) => { - if (!isFormWithMFAToken(values)) return; try { loading.value = true; const token = getResetToken(); From 381766523fe2672e49df9f5e2f11821e4af15715 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 11 Oct 2024 19:12:57 -0400 Subject: [PATCH 2/2] :rocket: Release 1.63.2 (#11237) Co-authored-by: RicardoE105 <16496553+RicardoE105@users.noreply.github.com> --- CHANGELOG.md | 9 +++++++++ package.json | 2 +- packages/cli/package.json | 2 +- packages/editor-ui/package.json | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1e15368be4de..aea546a400474 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## [1.63.2](https://github.com/n8n-io/n8n/compare/n8n@1.63.1...n8n@1.63.2) (2024-10-11) + + +### Bug Fixes + +* **editor:** Make submit in ChangePasswordView work again ([#11227](https://github.com/n8n-io/n8n/issues/11227)) ([4eb905a](https://github.com/n8n-io/n8n/commit/4eb905ab296432376120ae4715d5f1d58c9f678a)) + + + ## [1.63.1](https://github.com/n8n-io/n8n/compare/n8n@1.63.0...n8n@1.63.1) (2024-10-10) diff --git a/package.json b/package.json index f4bdc6e70d90b..74073d2280980 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "n8n-monorepo", - "version": "1.63.1", + "version": "1.63.2", "private": true, "engines": { "node": ">=20.15", diff --git a/packages/cli/package.json b/packages/cli/package.json index cd24e129d3472..51363a207ad8e 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "n8n", - "version": "1.63.1", + "version": "1.63.2", "description": "n8n Workflow Automation Tool", "main": "dist/index", "types": "dist/index.d.ts", diff --git a/packages/editor-ui/package.json b/packages/editor-ui/package.json index 8fea31d8021b0..d6650932f7c36 100644 --- a/packages/editor-ui/package.json +++ b/packages/editor-ui/package.json @@ -1,6 +1,6 @@ { "name": "n8n-editor-ui", - "version": "1.63.1", + "version": "1.63.2", "description": "Workflow Editor UI for n8n", "main": "index.js", "scripts": {