chore: bump versions

This commit is contained in:
github-actions[bot]
2024-06-06 08:25:32 +00:00
committed by Braks
parent 40f2421dc9
commit dd6aff24cb
12 changed files with 29 additions and 53 deletions

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Return non-nullable edge from `useEdge`

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Use node/edge id as the only dependency to render nodes/edges.

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Remove visibility (hidden) check from `getNodes` & `getEdges`

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": patch
---
Disable pinch zoom on mobile if `zoomToPinch` is `false`

View File

@@ -1,7 +0,0 @@
---
"@vue-flow/core": minor
---
Remove auto-generated hanle-ids and use `null` as the default handle id.
If you were relying on handle-ids in your code but weren't assigning them explicitly, you'll might need to update your code to handle this change.
By default, if you don't provide a handle-id, it will be `null` and the first handle of the corresponding type will be used.

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": patch
---
Disable dragging when using multi-touch

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Render `null` if edge is hidden

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Add `edgeId` to handle connection objects returned by `useHandleConnections`

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Replace internally nodeIds/edgeIds array with nodeLookup/edgeLookup map

View File

@@ -1,5 +0,0 @@
---
"@vue-flow/core": minor
---
Render `null` if node is hidden but render whole list of nodes regardless of visibility

View File

@@ -1,5 +1,33 @@
# @vue-flow/core
## 1.35.0
### Minor Changes
- [#1447](https://github.com/bcakmakoglu/vue-flow/pull/1447) [`acd6069`](https://github.com/bcakmakoglu/vue-flow/commit/acd60698637b93fcb7cc3fe4161673865c26d5db) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Return non-nullable edge from `useEdge`
- [#1447](https://github.com/bcakmakoglu/vue-flow/pull/1447) [`acd6069`](https://github.com/bcakmakoglu/vue-flow/commit/acd60698637b93fcb7cc3fe4161673865c26d5db) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Use node/edge id as the only dependency to render nodes/edges.
- [#1446](https://github.com/bcakmakoglu/vue-flow/pull/1446) [`d8bdac1`](https://github.com/bcakmakoglu/vue-flow/commit/d8bdac137d753d82270bea15cbb5b30afc662e9b) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove visibility (hidden) check from `getNodes` & `getEdges`
- [#1440](https://github.com/bcakmakoglu/vue-flow/pull/1440) [`a02b9a4`](https://github.com/bcakmakoglu/vue-flow/commit/a02b9a42598adc0a37198297ca71d48dd621f42e) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Remove auto-generated hanle-ids and use `null` as the default handle id.
If you were relying on handle-ids in your code but weren't assigning them explicitly, you'll might need to update your code to handle this change.
By default, if you don't provide a handle-id, it will be `null` and the first handle of the corresponding type will be used.
- [#1446](https://github.com/bcakmakoglu/vue-flow/pull/1446) [`d8bdac1`](https://github.com/bcakmakoglu/vue-flow/commit/d8bdac137d753d82270bea15cbb5b30afc662e9b) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Render `null` if edge is hidden
- [#1433](https://github.com/bcakmakoglu/vue-flow/pull/1433) [`7547ade`](https://github.com/bcakmakoglu/vue-flow/commit/7547adeca54c133274a2ab62a5b31b168f017679) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Add `edgeId` to handle connection objects returned by `useHandleConnections`
- [#1450](https://github.com/bcakmakoglu/vue-flow/pull/1450) [`d64efc6`](https://github.com/bcakmakoglu/vue-flow/commit/d64efc6ddf3a579a97151b279285c268dec22943) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Replace internally nodeIds/edgeIds array with nodeLookup/edgeLookup map
- [#1445](https://github.com/bcakmakoglu/vue-flow/pull/1445) [`64a5162`](https://github.com/bcakmakoglu/vue-flow/commit/64a5162bb056b31e898fca6a499173a6c3dc0ae6) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Render `null` if node is hidden but render whole list of nodes regardless of visibility
### Patch Changes
- [#1449](https://github.com/bcakmakoglu/vue-flow/pull/1449) [`27ec132`](https://github.com/bcakmakoglu/vue-flow/commit/27ec1322ee8625f2035678d9cba6a642bd091cf1) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Disable pinch zoom on mobile if `zoomToPinch` is `false`
- [#1448](https://github.com/bcakmakoglu/vue-flow/pull/1448) [`fe58110`](https://github.com/bcakmakoglu/vue-flow/commit/fe581106d80d4f49c26e35d01254cde0ba8d7923) Thanks [@bcakmakoglu](https://github.com/bcakmakoglu)! - Disable dragging when using multi-touch
## 1.34.1
### Patch Changes

View File

@@ -1,6 +1,6 @@
{
"name": "@vue-flow/core",
"version": "1.34.1",
"version": "1.35.0",
"private": false,
"license": "MIT",
"author": "Burak Cakmakoglu<78412429+bcakmakoglu@users.noreply.github.com>",