diff --git a/.changeset/easy-parents-hammer.md b/.changeset/easy-parents-hammer.md deleted file mode 100644 index c8d43f69..00000000 --- a/.changeset/easy-parents-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/system': patch ---- - -Fix incorrect node position clamping for non-child nodes diff --git a/.changeset/forty-dryers-cry.md b/.changeset/forty-dryers-cry.md deleted file mode 100644 index 618ce567..00000000 --- a/.changeset/forty-dryers-cry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/react': patch ---- - -Fix node fallback to respect custom default node type when unknown node type is encountered diff --git a/.changeset/popular-apples-invent.md b/.changeset/popular-apples-invent.md deleted file mode 100644 index 2b460ee6..00000000 --- a/.changeset/popular-apples-invent.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@xyflow/react': patch -'@xyflow/svelte': patch ---- - -Return intersections correctly of passed node is bigger than intersecting nodes diff --git a/.changeset/purple-donuts-fail.md b/.changeset/purple-donuts-fail.md deleted file mode 100644 index af8df925..00000000 --- a/.changeset/purple-donuts-fail.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@xyflow/react': patch ---- - -Fix edge fallback to respect custom default edge type when unknown edge type is encountered. diff --git a/.changeset/slow-snails-tickle.md b/.changeset/slow-snails-tickle.md deleted file mode 100644 index f55d0e71..00000000 --- a/.changeset/slow-snails-tickle.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@xyflow/react': patch -'@xyflow/svelte': patch -'@xyflow/system': patch ---- - -Add stepPosition param to step edge diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 02c1f35c..d26632ac 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,20 @@ # @xyflow/react +## 12.8.2 + +### Patch Changes + +- [#5384](https://github.com/xyflow/xyflow/pull/5384) [`18514e11`](https://github.com/xyflow/xyflow/commit/18514e118fc9a43e2bc80e55639db8beb1d9707a) Thanks [@Sec-ant](https://github.com/Sec-ant)! - Fix node fallback to respect custom default node type when unknown node type is encountered + +- [#5394](https://github.com/xyflow/xyflow/pull/5394) [`21db22d4`](https://github.com/xyflow/xyflow/commit/21db22d46a253dc4fd17d65dab201aca53a4a6f4) Thanks [@moklick](https://github.com/moklick)! - Return intersections correctly of passed node is bigger than intersecting nodes + +- [#5384](https://github.com/xyflow/xyflow/pull/5384) [`ab05d008`](https://github.com/xyflow/xyflow/commit/ab05d008d949c98124578e99e6a6e4c86a16f629) Thanks [@Sec-ant](https://github.com/Sec-ant)! - Fix edge fallback to respect custom default edge type when unknown edge type is encountered. + +- [#5376](https://github.com/xyflow/xyflow/pull/5376) [`f0ce2c87`](https://github.com/xyflow/xyflow/commit/f0ce2c876d8688e13632bc86286cf857f86dead6) Thanks [@kennyjwilli](https://github.com/kennyjwilli)! - Add stepPosition param to step edge + +- Updated dependencies [[`864d4188`](https://github.com/xyflow/xyflow/commit/864d4188089b3e7f45b18f8a63e02758ee183f7f), [`f0ce2c87`](https://github.com/xyflow/xyflow/commit/f0ce2c876d8688e13632bc86286cf857f86dead6)]: + - @xyflow/system@0.0.66 + ## 12.8.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index a2b050c0..5ec1edf6 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/react", - "version": "12.8.1", + "version": "12.8.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 519a1944..f6091eb8 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,16 @@ # @xyflow/svelte +## 1.2.2 + +### Patch Changes + +- [#5394](https://github.com/xyflow/xyflow/pull/5394) [`21db22d4`](https://github.com/xyflow/xyflow/commit/21db22d46a253dc4fd17d65dab201aca53a4a6f4) Thanks [@moklick](https://github.com/moklick)! - Return intersections correctly of passed node is bigger than intersecting nodes + +- [#5376](https://github.com/xyflow/xyflow/pull/5376) [`f0ce2c87`](https://github.com/xyflow/xyflow/commit/f0ce2c876d8688e13632bc86286cf857f86dead6) Thanks [@kennyjwilli](https://github.com/kennyjwilli)! - Add stepPosition param to step edge + +- Updated dependencies [[`864d4188`](https://github.com/xyflow/xyflow/commit/864d4188089b3e7f45b18f8a63e02758ee183f7f), [`f0ce2c87`](https://github.com/xyflow/xyflow/commit/f0ce2c876d8688e13632bc86286cf857f86dead6)]: + - @xyflow/system@0.0.66 + ## 1.2.1 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 16165597..6e4cdf23 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/svelte", - "version": "1.2.1", + "version": "1.2.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 57d510d1..5af1ab8d 100644 --- a/packages/system/CHANGELOG.md +++ b/packages/system/CHANGELOG.md @@ -1,5 +1,13 @@ # @xyflow/system +## 0.0.66 + +### Patch Changes + +- [#5321](https://github.com/xyflow/xyflow/pull/5321) [`864d4188`](https://github.com/xyflow/xyflow/commit/864d4188089b3e7f45b18f8a63e02758ee183f7f) Thanks [@dylanmiddendorf](https://github.com/dylanmiddendorf)! - Fix incorrect node position clamping for non-child nodes + +- [#5376](https://github.com/xyflow/xyflow/pull/5376) [`f0ce2c87`](https://github.com/xyflow/xyflow/commit/f0ce2c876d8688e13632bc86286cf857f86dead6) Thanks [@kennyjwilli](https://github.com/kennyjwilli)! - Add stepPosition param to step edge + ## 0.0.65 ### Patch Changes diff --git a/packages/system/package.json b/packages/system/package.json index 74d3341f..8de9a7a0 100644 --- a/packages/system/package.json +++ b/packages/system/package.json @@ -1,6 +1,6 @@ { "name": "@xyflow/system", - "version": "0.0.65", + "version": "0.0.66", "description": "xyflow core system that powers React Flow and Svelte Flow.", "keywords": [ "node-based UI",