Version Packages (#18497)

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.56.5

### Patch Changes

- chore: drop dead code that make TSGO fail
([#18496](https://github.com/sveltejs/svelte/pull/18496))

- fix: don't (re)connect deriveds when read inside branch/root effects
([#18527](https://github.com/sveltejs/svelte/pull/18527))

- fix: skip unnecessary derived effect in earlier batch
([#18525](https://github.com/sveltejs/svelte/pull/18525))

- fix: avoid declaration tag warning in event handlers
([#18500](https://github.com/sveltejs/svelte/pull/18500))

- fix: abort deriveds own AbortSignal when it disconnects
([#18400](https://github.com/sveltejs/svelte/pull/18400))

- fix: ensure `$state.eager()` is correctly transormed for SSR output
([#18530](https://github.com/sveltejs/svelte/pull/18530))

- fix: correctly transform declaration tags during SSR
([#18492](https://github.com/sveltejs/svelte/pull/18492))

- fix: transform computed keys in keyed `{#each}` destructuring patterns
([#18521](https://github.com/sveltejs/svelte/pull/18521))

- fix: chain preprocessor sourcemaps with an empty `sources[0]` instead
of dropping them
([#18518](https://github.com/sveltejs/svelte/pull/18518))

- fix: clear previous_task reference after abort in Tween to prevent
memory leak on interrupted tweens
([#18541](https://github.com/sveltejs/svelte/pull/18541))

- fix: don't treat declaration tags as parts inside each blocks
([#18507](https://github.com/sveltejs/svelte/pull/18507))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/18548/head svelte@5.56.5
github-actions[bot] 2 months ago committed by GitHub
parent a4fd67e361
commit 602a873b6b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: drop dead code that make TSGO fail

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't (re)connect deriveds when read inside branch/root effects

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: skip unnecessary derived effect in earlier batch

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid declaration tag warning in event handlers

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: abort deriveds own AbortSignal when it disconnects

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure `$state.eager()` is correctly transormed for SSR output

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly transform declaration tags during SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: transform computed keys in keyed `{#each}` destructuring patterns

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: chain preprocessor sourcemaps with an empty `sources[0]` instead of dropping them

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: clear previous_task reference after abort in Tween to prevent memory leak on interrupted tweens

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't treat declaration tags as parts inside each blocks

@ -1,5 +1,31 @@
# svelte
## 5.56.5
### Patch Changes
- chore: drop dead code that make TSGO fail ([#18496](https://github.com/sveltejs/svelte/pull/18496))
- fix: don't (re)connect deriveds when read inside branch/root effects ([#18527](https://github.com/sveltejs/svelte/pull/18527))
- fix: skip unnecessary derived effect in earlier batch ([#18525](https://github.com/sveltejs/svelte/pull/18525))
- fix: avoid declaration tag warning in event handlers ([#18500](https://github.com/sveltejs/svelte/pull/18500))
- fix: abort deriveds own AbortSignal when it disconnects ([#18400](https://github.com/sveltejs/svelte/pull/18400))
- fix: ensure `$state.eager()` is correctly transormed for SSR output ([#18530](https://github.com/sveltejs/svelte/pull/18530))
- fix: correctly transform declaration tags during SSR ([#18492](https://github.com/sveltejs/svelte/pull/18492))
- fix: transform computed keys in keyed `{#each}` destructuring patterns ([#18521](https://github.com/sveltejs/svelte/pull/18521))
- fix: chain preprocessor sourcemaps with an empty `sources[0]` instead of dropping them ([#18518](https://github.com/sveltejs/svelte/pull/18518))
- fix: clear previous_task reference after abort in Tween to prevent memory leak on interrupted tweens ([#18541](https://github.com/sveltejs/svelte/pull/18541))
- fix: don't treat declaration tags as parts inside each blocks ([#18507](https://github.com/sveltejs/svelte/pull/18507))
## 5.56.4
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.56.4",
"version": "5.56.5",
"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.56.4';
export const VERSION = '5.56.5';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save