From a9f48540e236d326714a1148b9d61cf785c0f98a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jun 2026 14:25:58 -0400 Subject: [PATCH] Version Packages (#18389) 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.56.3 ### Patch Changes - fix: ignore errors that occur in destroyed effects ([#18384](https://github.com/sveltejs/svelte/pull/18384)) - fix: type BigInts in `$state.snapshot(...)` return values ([#18388](https://github.com/sveltejs/svelte/pull/18388)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/fix-boundary-null.md | 5 ----- .changeset/some-parts-watch.md | 5 ----- packages/svelte/CHANGELOG.md | 8 ++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 5 files changed, 10 insertions(+), 12 deletions(-) delete mode 100644 .changeset/fix-boundary-null.md delete mode 100644 .changeset/some-parts-watch.md diff --git a/.changeset/fix-boundary-null.md b/.changeset/fix-boundary-null.md deleted file mode 100644 index c87a47ce34..0000000000 --- a/.changeset/fix-boundary-null.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte": patch ---- - -fix: ignore errors that occur in destroyed effects diff --git a/.changeset/some-parts-watch.md b/.changeset/some-parts-watch.md deleted file mode 100644 index 7d19a32f22..0000000000 --- a/.changeset/some-parts-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte": patch ---- - -fix: type BigInts in `$state.snapshot(...)` return values diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 6d36f7b456..02dd84ddff 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,13 @@ # svelte +## 5.56.3 + +### Patch Changes + +- fix: ignore errors that occur in destroyed effects ([#18384](https://github.com/sveltejs/svelte/pull/18384)) + +- fix: type BigInts in `$state.snapshot(...)` return values ([#18388](https://github.com/sveltejs/svelte/pull/18388)) + ## 5.56.2 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index a098b2689f..6bca1bd4a8 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.56.2", + "version": "5.56.3", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 94d9a26dd9..b6d4236ff8 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.56.2'; +export const VERSION = '5.56.3'; export const PUBLIC_VERSION = '5';