Version Packages (#17560)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17566/head svelte@5.48.5
github-actions[bot] 7 months ago committed by GitHub
parent 30cea1f9a0
commit 3d285f0ee4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: run boundary `onerror` callbacks in a microtask, in case they result in the boundary's destruction

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent unintended exports from namespaces

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: each block breaking with effects interspersed among items

@ -1,5 +1,15 @@
# svelte
## 5.48.5
### Patch Changes
- fix: run boundary `onerror` callbacks in a microtask, in case they result in the boundary's destruction ([#17561](https://github.com/sveltejs/svelte/pull/17561))
- fix: prevent unintended exports from namespaces ([#17562](https://github.com/sveltejs/svelte/pull/17562))
- fix: each block breaking with effects interspersed among items ([#17550](https://github.com/sveltejs/svelte/pull/17550))
## 5.48.4
### Patch Changes

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

Loading…
Cancel
Save