diff --git a/.changeset/allow-undefined-builtin-node-type.md b/.changeset/allow-undefined-builtin-node-type.md deleted file mode 100644 index b89e83b1b5..0000000000 --- a/.changeset/allow-undefined-builtin-node-type.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@xyflow/react": patch -"@xyflow/svelte": patch ---- - -Allow `type` field to be missing in `BuiltInNode` (no `type` field is the same as `type: "default"`) diff --git a/.changeset/brown-shrimps-exist.md b/.changeset/brown-shrimps-exist.md deleted file mode 100644 index 269cd85126..0000000000 --- a/.changeset/brown-shrimps-exist.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/react': patch ---- - -Add `snapGrid` to `screenToFlowPosition` options diff --git a/.changeset/dull-cows-sneeze.md b/.changeset/dull-cows-sneeze.md deleted file mode 100644 index 4ad1e4b186..0000000000 --- a/.changeset/dull-cows-sneeze.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@xyflow/react': patch -'@xyflow/svelte': patch ---- - -Pass options to useReactFlow/useSvelteFlow viewport helper functions correctly diff --git a/.changeset/fix-smoothstep-edge-rounding.md b/.changeset/fix-smoothstep-edge-rounding.md deleted file mode 100644 index d768cb1225..0000000000 --- a/.changeset/fix-smoothstep-edge-rounding.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@xyflow/system": patch ---- - -Fix missing border radius on `getSmoothStepPath` edge bends when using `stepPosition` diff --git a/.changeset/fix-store-reset-timing.md b/.changeset/fix-store-reset-timing.md deleted file mode 100644 index bbb4027171..0000000000 --- a/.changeset/fix-store-reset-timing.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/react': patch ---- - -Fix empty store during ReactFlow remount by reordering StoreUpdater before GraphView and using layout effects diff --git a/.changeset/good-lamps-think.md b/.changeset/good-lamps-think.md deleted file mode 100644 index fa33aaa46d..0000000000 --- a/.changeset/good-lamps-think.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/react': patch ---- - -Ensure visual nodes selection state is cleared when zero selected nodes remain in the flow diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 96a4601715..358bdeea2b 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,22 @@ # @xyflow/react +## 12.10.2 + +### Patch Changes + +- [#5735](https://github.com/xyflow/xyflow/pull/5735) [`a6c938fb2`](https://github.com/xyflow/xyflow/commit/a6c938fb2e5ed030512ef75d665ac80dc3a66bc6) Thanks [@nvie](https://github.com/nvie)! - Allow `type` field to be missing in `BuiltInNode` (no `type` field is the same as `type: "default"`) + +- [#5722](https://github.com/xyflow/xyflow/pull/5722) [`8c9b7e726`](https://github.com/xyflow/xyflow/commit/8c9b7e726e0bb79871c85017dace0f1ccf1b478c) Thanks [@dfblhmm](https://github.com/dfblhmm)! - Add `snapGrid` to `screenToFlowPosition` options + +- [#5723](https://github.com/xyflow/xyflow/pull/5723) [`82249517a`](https://github.com/xyflow/xyflow/commit/82249517a3338d7bd0d6d499abecfaa6bca8c339) Thanks [@moklick](https://github.com/moklick)! - Pass options to useReactFlow/useSvelteFlow viewport helper functions correctly + +- [#5733](https://github.com/xyflow/xyflow/pull/5733) [`64115cd08`](https://github.com/xyflow/xyflow/commit/64115cd086d2c04235f1cae80acb45455fd0de49) Thanks [@AlaricBaraou](https://github.com/AlaricBaraou)! - Fix empty store during ReactFlow remount by reordering StoreUpdater before GraphView and using layout effects + +- [#5727](https://github.com/xyflow/xyflow/pull/5727) [`dd54e86b9`](https://github.com/xyflow/xyflow/commit/dd54e86b91da29c1f58f646ad9a99f96f0c4a2e5) Thanks [@solastley](https://github.com/solastley)! - Ensure visual nodes selection state is cleared when zero selected nodes remain in the flow + +- Updated dependencies [[`4a278dbbf`](https://github.com/xyflow/xyflow/commit/4a278dbbf942b2bc964e4159347b70ae6617f3dc)]: + - @xyflow/system@0.0.76 + ## 12.10.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 535f42011e..30572e5f8c 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/react", - "version": "12.10.1", + "version": "12.10.2", "description": "React Flow - A highly customizable React library for building node-based editors and interactive flow charts.", "keywords": [ "react", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 0df39d06ed..dba227137a 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,16 @@ # @xyflow/svelte +## 1.5.2 + +### Patch Changes + +- [#5735](https://github.com/xyflow/xyflow/pull/5735) [`a6c938fb2`](https://github.com/xyflow/xyflow/commit/a6c938fb2e5ed030512ef75d665ac80dc3a66bc6) Thanks [@nvie](https://github.com/nvie)! - Allow `type` field to be missing in `BuiltInNode` (no `type` field is the same as `type: "default"`) + +- [#5723](https://github.com/xyflow/xyflow/pull/5723) [`82249517a`](https://github.com/xyflow/xyflow/commit/82249517a3338d7bd0d6d499abecfaa6bca8c339) Thanks [@moklick](https://github.com/moklick)! - Pass options to useReactFlow/useSvelteFlow viewport helper functions correctly + +- Updated dependencies [[`4a278dbbf`](https://github.com/xyflow/xyflow/commit/4a278dbbf942b2bc964e4159347b70ae6617f3dc)]: + - @xyflow/system@0.0.76 + ## 1.5.1 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 1d3036b819..f68ed45118 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/svelte", - "version": "1.5.1", + "version": "1.5.2", "description": "Svelte Flow - A highly customizable Svelte library for building node-based editors, workflow systems, diagrams and more.", "keywords": [ "svelte", diff --git a/packages/system/CHANGELOG.md b/packages/system/CHANGELOG.md index a1172df4f4..5ecf1c91a1 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -1,5 +1,11 @@ # @xyflow/system +## 0.0.76 + +### Patch Changes + +- [#5730](https://github.com/xyflow/xyflow/pull/5730) [`4a278dbbf`](https://github.com/xyflow/xyflow/commit/4a278dbbf942b2bc964e4159347b70ae6617f3dc) Thanks [@justn-hyeok](https://github.com/justn-hyeok)! - Fix missing border radius on `getSmoothStepPath` edge bends when using `stepPosition` + ## 0.0.75 ### Patch Changes diff --git a/packages/system/package.json b/packages/system/package.json index 70671a6e2b..8dfc58d516 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/system", - "version": "0.0.75", + "version": "0.0.76", "description": "xyflow core system that powers React Flow and Svelte Flow.", "keywords": [ "node-based UI",