From 34bcf36301c1c1a40ad67013c607726577a0741d Mon Sep 17 00:00:00 2001 From: Braks <78412429+bcakmakoglu@users.noreply.github.com> Date: Mon, 22 Sep 2025 11:18:29 +0200 Subject: [PATCH 1/2] fix(core): unwrap connection line status ref (#1962) * fix(core): unwrap connection line status ref Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> * chore(changeset): add Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --------- Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com> --- .changeset/wise-jobs-perform.md | 5 +++++ packages/core/src/components/ConnectionLine/index.ts | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/wise-jobs-perform.md diff --git a/.changeset/wise-jobs-perform.md b/.changeset/wise-jobs-perform.md new file mode 100644 index 000000000..28d579683 --- /dev/null +++ b/.changeset/wise-jobs-perform.md @@ -0,0 +1,5 @@ +--- +"@vue-flow/core": patch +--- + +Unwrap connection line status ref in the connection line component to correctly append the class name. diff --git a/packages/core/src/components/ConnectionLine/index.ts b/packages/core/src/components/ConnectionLine/index.ts index 67227e593..854335a88 100644 --- a/packages/core/src/components/ConnectionLine/index.ts +++ b/packages/core/src/components/ConnectionLine/index.ts @@ -145,7 +145,7 @@ const ConnectionLine = defineComponent({ }) : h('path', { 'd': dAttr, - 'class': [connectionLineOptions.value.class, connectionStatus, 'vue-flow__connection-path'], + 'class': [connectionLineOptions.value.class, connectionStatus.value, 'vue-flow__connection-path'], 'style': { ...connectionLineStyle.value, ...connectionLineOptions.value.style, From 1d9f2b4c605ac8620332f62ab911493b4556f864 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Sep 2025 09:18:59 +0000 Subject: [PATCH 2/2] chore: bump versions --- .changeset/wise-jobs-perform.md | 5 ----- packages/core/CHANGELOG.md | 6 ++++++ packages/core/package.json | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 .changeset/wise-jobs-perform.md diff --git a/.changeset/wise-jobs-perform.md b/.changeset/wise-jobs-perform.md deleted file mode 100644 index 28d579683..000000000 --- a/.changeset/wise-jobs-perform.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@vue-flow/core": patch ---- - -Unwrap connection line status ref in the connection line component to correctly append the class name. diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index ad086b976..420bf30af 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @vue-flow/core +## 1.46.5 + +### Patch Changes + +- [#1962](https://github.com/bcakmakoglu/vue-flow/pull/1962) [`34bcf36`](https://github.com/bcakmakoglu/vue-flow/commit/34bcf36301c1c1a40ad67013c607726577a0741d) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Unwrap connection line status ref in the connection line component to correctly append the class name. + ## 1.46.4 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index a10a42ec9..24b583139 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vue-flow/core", - "version": "1.46.4", + "version": "1.46.5", "private": false, "license": "MIT", "author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",