diff --git a/.changeset/calm-spiders-confess.md b/.changeset/calm-spiders-confess.md index c0e4994f..967cb004 100644 --- a/.changeset/calm-spiders-confess.md +++ b/.changeset/calm-spiders-confess.md @@ -2,4 +2,4 @@ '@xyflow/react': patch --- -minimap: use latest node dimensions +Fix Minimap only displaying nodes when providing onNodesChange diff --git a/.changeset/dull-bags-know.md b/.changeset/dull-bags-know.md index aedfe7e2..07484632 100644 --- a/.changeset/dull-bags-know.md +++ b/.changeset/dull-bags-know.md @@ -4,4 +4,4 @@ '@xyflow/system': patch --- -Add util function getNodesBounds for useReactFlow/useSvelteFlow hook +Add getNodesBounds to useReactFlow/useSvelteFlow hook as the new recommended way of determining node bounds. diff --git a/.changeset/rude-rockets-hope.md b/.changeset/rude-rockets-hope.md index d3099e49..1a8ebbad 100644 --- a/.changeset/rude-rockets-hope.md +++ b/.changeset/rude-rockets-hope.md @@ -2,4 +2,4 @@ '@xyflow/svelte': patch --- -Added ability to set global nodeExtent +Add nodeExtent prop to <SvelteFlow >. You can now restrict nodes from leaving a specified extent. diff --git a/.changeset/twenty-ads-breathe.md b/.changeset/twenty-ads-breathe.md index f63a3add..a6d563c1 100644 --- a/.changeset/twenty-ads-breathe.md +++ b/.changeset/twenty-ads-breathe.md @@ -4,4 +4,4 @@ '@xyflow/system': patch --- -Fix extent on nodes not working properly +Improve handling of global and individual nodeExtents. Nodes will never render outside of specified extents. diff --git a/.github/workflows/dispatchWebsiteUpdate.yaml b/.github/workflows/dispatchWebsiteUpdate.yaml new file mode 100644 index 00000000..6acc97ac --- /dev/null +++ b/.github/workflows/dispatchWebsiteUpdate.yaml @@ -0,0 +1,29 @@ +name: Dispatch Website Update +run-name: Dispatch Website Update for ${{ github.event.release.tag_name }} + +on: + release: + types: [published] + +jobs: + dispatch_website_update: + if: ${{ contains(github.event.release.tag_name, 'svelte') || contains(github.event.release.tag_name, 'react') }} + runs-on: ubuntu-latest + steps: + # Github Actions is not able to escape JSON strings with certain characters in them + # which release bodies have plenty of. This step uses jq to extract the body and tag_name + # and escape them so they can be used in the next step to create a JSON for the client-payload + - name: Strip and escape JSON + run: | + { + echo 'ESCAPED_PAYLOAD<> "$GITHUB_ENV" + - name: Dispatch Website Update + uses: peter-evans/repository-dispatch@v3 + with: + repository: xyflow/web + token: ${{ secrets.PAT }} + event-type: library-release + client-payload: ${{ env.ESCAPED_PAYLOAD }}