Version Packages

changeset-release/main
github-actions[bot] 1 day ago
parent ce89035ecb
commit 6181956f10

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: cancel deferred event listeners during cleanup

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: speed up parser interactions with Acorn or avoid them where possible

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent effect tree of batches from interfering with each other

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: serialize input default values during server rendering

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove `WAS_MARKED` flag in favor of `Set`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: throw `set_context_after_init` when `setContext` is called after an `await` during SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: avoid regex matching in parser where possible

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: in non-async mode, only push variable to current_sources when active_reaction is updating

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: recognise `aria-braillelabel` and `aria-brailleroledescription` as known ARIA attributes

@ -1,5 +1,27 @@
# svelte # svelte
## 5.57.1
### Patch Changes
- fix: cancel deferred event listeners during cleanup ([#18749](https://github.com/sveltejs/svelte/pull/18749))
- perf: speed up parser interactions with Acorn or avoid them where possible ([#18740](https://github.com/sveltejs/svelte/pull/18740))
- fix: prevent effect tree of batches from interfering with each other ([#18508](https://github.com/sveltejs/svelte/pull/18508))
- fix: serialize input default values during server rendering ([#18733](https://github.com/sveltejs/svelte/pull/18733))
- fix: remove `WAS_MARKED` flag in favor of `Set` ([#18127](https://github.com/sveltejs/svelte/pull/18127))
- fix: throw `set_context_after_init` when `setContext` is called after an `await` during SSR ([#18739](https://github.com/sveltejs/svelte/pull/18739))
- perf: avoid regex matching in parser where possible ([#18736](https://github.com/sveltejs/svelte/pull/18736))
- fix: in non-async mode, only push variable to current_sources when active_reaction is updating ([#18550](https://github.com/sveltejs/svelte/pull/18550))
- fix: recognise `aria-braillelabel` and `aria-brailleroledescription` as known ARIA attributes ([#18765](https://github.com/sveltejs/svelte/pull/18765))
## 5.57.0 ## 5.57.0
### Minor Changes ### Minor 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.57.0", "version": "5.57.1",
"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.57.0'; export const VERSION = '5.57.1';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save