diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md
index 90119e80..5bbe2a56 100644
--- a/packages/react/CHANGELOG.md
+++ b/packages/react/CHANGELOG.md
@@ -2,12 +2,13 @@
## 12.0.0-next.17
-- refactor(react): cleanup `useReactFlow`
-- fix(types): export `KeyCode`
-- fix(nodes): handle default node updates closes #4202
-- fix(types): add string array to `UpdateNodeInternals` thanks @DenizUgur
-- fix(pane): pinch zoom on windows
-- fix(pane): drag for touch devices
+- fix broken `defaultNodes`
+- add string array to `UpdateNodeInternals` thanks @DenizUgur
+- pinch zoom on windows
+- drag for touch devices
+- return user node in node event handlers
+- cleanup `useReactFlow`
+- export `KeyCode` and `Align` type
## 12.0.0-next.16
diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md
index d87b7e83..430f2d82 100644
--- a/packages/svelte/CHANGELOG.md
+++ b/packages/svelte/CHANGELOG.md
@@ -1,5 +1,27 @@
# @xyflow/svelte
+## 0.1.0
+
+This is a bigger update for Svelte Flow to keep up with the latest changes we made for React Flow and the Svelte5 rewrite. The biggest change is the separation of user nodes (type `Node`) and internal nodes (type `InternalNode`), which includes a renaming of the `node.computed` attribute to `node.measured`. In the previous versions, we stored internals in `node[internalsSymbol]`. This doesn't exist anymore, but we only add it to our internal nodes in `node.internals.`.
+
+## ⚠️ Breaking
+
+- rename `node.computed` to `node.measured` - this attribute only includes `width` and `height` and no `positionAbsolute` anymore. For this we added the helpers `getInternalNode` and `useInternalNode`
+- rename `node.parentNode` to `node.parentId`
+
+### More updates:
+
+- add `isValidConnection` for `` component
+- add `fitViewOptions` for `` component
+- add `getInternalNode` to `useSvelteFlow`
+- add `useInternalNode` hook
+- don't reset nodes and edges when svelte flow unmounts - thanks @darabos
+- fix node event types - thanks @RedPhoenixQ
+- make handleId and isTarget reactive - thanks @darabos
+- fix MiniMap interaction for touch devices
+- fix pane: pinch zoom on windows
+- fix nodes: return user node in node event handlers
+
## 0.0.41
- fix: re-observe nodes when not initialized