Version Packages (#18239)

This PR was opened by the [Changesets
release](https://github.com/changesets/action) GitHub action. When
you're ready to do a release, you can merge this and the packages will
be published to npm automatically. If you're not ready to do a release
yet, that's fine, whenever you add more changesets to main, this PR will
be updated.


# Releases
## svelte@5.55.8

### Patch Changes

- fix(print): handle `svelte:body` and fix keyframe percentage
double-printing
([#18234](https://github.com/sveltejs/svelte/pull/18234))

- fix: execute uninitialized derived even if it's destroyed
([#18228](https://github.com/sveltejs/svelte/pull/18228))

- fix: use named symbols everywhere
([#18238](https://github.com/sveltejs/svelte/pull/18238))

- fix: don't run teardown effects when deriveds are unfreezed
([#18227](https://github.com/sveltejs/svelte/pull/18227))

- fix: unset context synchronously in `run`
([#18236](https://github.com/sveltejs/svelte/pull/18236))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/18241/head svelte@5.55.8
github-actions[bot] 3 months ago committed by GitHub
parent ca3f35bf7d
commit f9440dc3ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix(print): handle `svelte:body` and fix keyframe percentage double-printing

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: execute uninitialized derived even if it's destroyed

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: use named symbols everywhere

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't run teardown effects when deriveds are unfreezed

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: unset context synchronously in `run`

@ -1,5 +1,19 @@
# svelte
## 5.55.8
### Patch Changes
- fix(print): handle `svelte:body` and fix keyframe percentage double-printing ([#18234](https://github.com/sveltejs/svelte/pull/18234))
- fix: execute uninitialized derived even if it's destroyed ([#18228](https://github.com/sveltejs/svelte/pull/18228))
- fix: use named symbols everywhere ([#18238](https://github.com/sveltejs/svelte/pull/18238))
- fix: don't run teardown effects when deriveds are unfreezed ([#18227](https://github.com/sveltejs/svelte/pull/18227))
- fix: unset context synchronously in `run` ([#18236](https://github.com/sveltejs/svelte/pull/18236))
## 5.55.7
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.55.7",
"version": "5.55.8",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
export const VERSION = '5.55.7';
export const VERSION = '5.55.8';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save