Version Packages (#17842)

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

### Patch Changes

- fix: correctly add \_\_svelte_meta after else-if chains
([#17830](https://github.com/sveltejs/svelte/pull/17830))

- perf: cache element interactivity and source line splitting in
compiler ([#17839](https://github.com/sveltejs/svelte/pull/17839))

- chore: avoid rescheduling effects during branch commit
([#17837](https://github.com/sveltejs/svelte/pull/17837))

- perf: optimize CSS selector pruning
([#17846](https://github.com/sveltejs/svelte/pull/17846))

- fix: preserve original boundary errors when keyed each rows are
removed during async updates
([#17843](https://github.com/sveltejs/svelte/pull/17843))

- perf: avoid O(n²) name scanning in scope `generate` and `unique`
([#17844](https://github.com/sveltejs/svelte/pull/17844))

- fix: preserve each items that are needed by pending batches
([#17819](https://github.com/sveltejs/svelte/pull/17819))

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17850/head svelte@5.53.7
github-actions[bot] 5 months ago committed by GitHub
parent b7bc1309aa
commit 25a1c5368b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly add \_\_svelte_meta after else-if chains

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: cache element interactivity and source line splitting in compiler

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: avoid rescheduling effects during branch commit

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: optimize CSS selector pruning

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: preserve original boundary errors when keyed each rows are removed during async updates

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: avoid O(n²) name scanning in scope `generate` and `unique`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: preserve each items that are needed by pending batches

@ -1,5 +1,23 @@
# svelte
## 5.53.7
### Patch Changes
- fix: correctly add \_\_svelte_meta after else-if chains ([#17830](https://github.com/sveltejs/svelte/pull/17830))
- perf: cache element interactivity and source line splitting in compiler ([#17839](https://github.com/sveltejs/svelte/pull/17839))
- chore: avoid rescheduling effects during branch commit ([#17837](https://github.com/sveltejs/svelte/pull/17837))
- perf: optimize CSS selector pruning ([#17846](https://github.com/sveltejs/svelte/pull/17846))
- fix: preserve original boundary errors when keyed each rows are removed during async updates ([#17843](https://github.com/sveltejs/svelte/pull/17843))
- perf: avoid O(n²) name scanning in scope `generate` and `unique` ([#17844](https://github.com/sveltejs/svelte/pull/17844))
- fix: preserve each items that are needed by pending batches ([#17819](https://github.com/sveltejs/svelte/pull/17819))
## 5.53.6
### Patch Changes

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

Loading…
Cancel
Save