Version Packages (#17812)

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

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17831/head svelte@5.53.6
github-actions[bot] 6 months ago committed by GitHub
parent 361b32c7cd
commit d4c78292ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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
## 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
### Patch Changes

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

Loading…
Cancel
Save