Version Packages (#18255)

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

### Patch Changes

- fix: unlink errored and otherwise finished batch
([#18264](https://github.com/sveltejs/svelte/pull/18264))

- perf: walk composedPath() directly in delegated event propagation
([#18268](https://github.com/sveltejs/svelte/pull/18268))

- fix: transfer effects when merging batches
([#18254](https://github.com/sveltejs/svelte/pull/18254))

- fix: allow `$derived(await ...)` in disconnected effect roots
([#18273](https://github.com/sveltejs/svelte/pull/18273))

- fix: remove temporary raw-text hydration markers
([#18269](https://github.com/sveltejs/svelte/pull/18269))

- fix: propagate async `@const` blockers through closure references so
template expressions like `{(() => host)()}` correctly wait for the
awaited value ([#18309](https://github.com/sveltejs/svelte/pull/18309))

- fix: properly unlink batches
([#18298](https://github.com/sveltejs/svelte/pull/18298))

- fix: settle discarded batch
([#18290](https://github.com/sveltejs/svelte/pull/18290))

- fix: declare `let:` directives before `{@const}` declarations on
slotted elements
([#18271](https://github.com/sveltejs/svelte/pull/18271))

- fix: resume outro-ed branches if they were kept around
([#18291](https://github.com/sveltejs/svelte/pull/18291))

- fix: avoid waterfall-warning when async resolves to same value
([#18297](https://github.com/sveltejs/svelte/pull/18297))

- fix: correctly coordinate component-level effects inside async blocks
([#18260](https://github.com/sveltejs/svelte/pull/18260))

- fix: make unnecessary commit work less likely
([#18263](https://github.com/sveltejs/svelte/pull/18263))

- chore: add tag name to `a11y_click_events_have_key_events` warning
([#18272](https://github.com/sveltejs/svelte/pull/18272))

- fix: catch rejected promises while merging/committing
([#18266](https://github.com/sveltejs/svelte/pull/18266))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/18257/merge svelte@5.55.10
github-actions[bot] 3 days ago committed by GitHub
parent 688671ec23
commit 0bb715d3cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: unlink errored and otherwise finished batch

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: walk composedPath() directly in delegated event propagation

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: transfer effects when merging batches

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow `$derived(await ...)` in disconnected effect roots

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove temporary raw-text hydration markers

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: propagate async `@const` blockers through closure references so template expressions like `{(() => host)()}` correctly wait for the awaited value

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly unlink batches

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: settle discarded batch

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: declare `let:` directives before `{@const}` declarations on slotted elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: resume outro-ed branches if they were kept around

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid waterfall-warning when async resolves to same value

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly coordinate component-level effects inside async blocks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: make unnecessary commit work less likely

@ -1,5 +0,0 @@
---
"svelte": patch
---
chore: add tag name to `a11y_click_events_have_key_events` warning

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: catch rejected promises while merging/committing

@ -1,5 +1,39 @@
# svelte
## 5.55.10
### Patch Changes
- fix: unlink errored and otherwise finished batch ([#18264](https://github.com/sveltejs/svelte/pull/18264))
- perf: walk composedPath() directly in delegated event propagation ([#18268](https://github.com/sveltejs/svelte/pull/18268))
- fix: transfer effects when merging batches ([#18254](https://github.com/sveltejs/svelte/pull/18254))
- fix: allow `$derived(await ...)` in disconnected effect roots ([#18273](https://github.com/sveltejs/svelte/pull/18273))
- fix: remove temporary raw-text hydration markers ([#18269](https://github.com/sveltejs/svelte/pull/18269))
- fix: propagate async `@const` blockers through closure references so template expressions like `{(() => host)()}` correctly wait for the awaited value ([#18309](https://github.com/sveltejs/svelte/pull/18309))
- fix: properly unlink batches ([#18298](https://github.com/sveltejs/svelte/pull/18298))
- fix: settle discarded batch ([#18290](https://github.com/sveltejs/svelte/pull/18290))
- fix: declare `let:` directives before `{@const}` declarations on slotted elements ([#18271](https://github.com/sveltejs/svelte/pull/18271))
- fix: resume outro-ed branches if they were kept around ([#18291](https://github.com/sveltejs/svelte/pull/18291))
- fix: avoid waterfall-warning when async resolves to same value ([#18297](https://github.com/sveltejs/svelte/pull/18297))
- fix: correctly coordinate component-level effects inside async blocks ([#18260](https://github.com/sveltejs/svelte/pull/18260))
- fix: make unnecessary commit work less likely ([#18263](https://github.com/sveltejs/svelte/pull/18263))
- chore: add tag name to `a11y_click_events_have_key_events` warning ([#18272](https://github.com/sveltejs/svelte/pull/18272))
- fix: catch rejected promises while merging/committing ([#18266](https://github.com/sveltejs/svelte/pull/18266))
## 5.55.9
### Patch Changes

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

Loading…
Cancel
Save