-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: ensure unowned deriveds correctly get re-linked to the graph #14855
Conversation
🦋 Changeset detectedLatest commit: 3f8c7dd The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
BTW, the repro code in #14846 works in this PR's playground. Great job. |
I've tried this fix in our codebase and it definitely improves memory profile. Some previously leakish stuff got fixed. Great job! If possible would be great if it can be released in a version before |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m not familiar with the Svelte 5 codebase, but this looks like the correct fix. It also worked fine in the REPL.
Fixes #14846. This ensures that we properly attach unowned deriveds to their dependencies. Previously, we might only attach one of the dependencies if that dependency was also a mismatched version – which meant we skipped all the other dependencies.