diff --git a/.changeset/fix-if-block-boundary-onerror.md b/.changeset/fix-if-block-boundary-onerror.md deleted file mode 100644 index 608dce6814..0000000000 --- a/.changeset/fix-if-block-boundary-onerror.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: run boundary `onerror` callbacks in a microtask, in case they result in the boundary's destruction diff --git a/.changeset/stale-words-count.md b/.changeset/stale-words-count.md deleted file mode 100644 index d8d8c3102e..0000000000 --- a/.changeset/stale-words-count.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: prevent unintended exports from namespaces diff --git a/.changeset/thirty-carpets-attack.md b/.changeset/thirty-carpets-attack.md deleted file mode 100644 index 6b3949989a..0000000000 --- a/.changeset/thirty-carpets-attack.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: each block breaking with effects interspersed among items diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 486e688b5c..af503dbb20 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -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 diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 7ca1b569f6..ace4c9bd08 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -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": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index fe300a4a43..4338ba83ae 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -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';