Merge branch 'async-each-preserve-pending' into each-block-pending

async-svelte-map
Rich Harris 6 months ago
commit a02b1c4dbc

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: optimize parser hot paths for faster compilation

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: `SvelteMap` incorrectly handles keys with `undefined` values

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: SvelteURL `search` setter now returns the normalized value, matching native URL behavior

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: visit synthetic value node during ssr

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always case insensitive event handlers during ssr

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: more efficient effect scheduling

@ -1,5 +0,0 @@
---
"svelte": patch
---
perf: optimize compiler analysis phase

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: skip redundant batch.apply

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: null out current_batch before committing branches

@ -1,5 +1,27 @@
# svelte # svelte
## 5.53.6
### Patch Changes
- perf: optimize parser hot paths for faster compilation ([#17811](https://github.com/sveltejs/svelte/pull/17811))
- fix: `SvelteMap` incorrectly handles keys with `undefined` values ([#17826](https://github.com/sveltejs/svelte/pull/17826))
- fix: SvelteURL `search` setter now returns the normalized value, matching native URL behavior ([#17828](https://github.com/sveltejs/svelte/pull/17828))
- fix: visit synthetic value node during ssr ([#17824](https://github.com/sveltejs/svelte/pull/17824))
- fix: always case insensitive event handlers during ssr ([#17822](https://github.com/sveltejs/svelte/pull/17822))
- chore: more efficient effect scheduling ([#17808](https://github.com/sveltejs/svelte/pull/17808))
- perf: optimize compiler analysis phase ([#17823](https://github.com/sveltejs/svelte/pull/17823))
- fix: skip redundant batch.apply ([#17816](https://github.com/sveltejs/svelte/pull/17816))
- chore: null out current_batch before committing branches ([#17809](https://github.com/sveltejs/svelte/pull/17809))
## 5.53.5 ## 5.53.5
### Patch Changes ### Patch Changes

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

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

Loading…
Cancel
Save