From 4a50e8ea3b7db1d8cd752b825032e4ce2878524b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 10 Apr 2026 09:22:42 -0400 Subject: [PATCH] Version Packages (#18085) 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.55.3 ### Patch Changes - fix: ensure proper HMR updates for dynamic components ([#18079](https://github.com/sveltejs/svelte/pull/18079)) - fix: correctly calculate `@const` blockers ([#18039](https://github.com/sveltejs/svelte/pull/18039)) - fix: freeze deriveds once their containing effects are destroyed ([#17921](https://github.com/sveltejs/svelte/pull/17921)) - fix: defer error boundary rendering in forks ([#18076](https://github.com/sveltejs/svelte/pull/18076)) - fix: avoid false positives for reactivity loss warning ([#18088](https://github.com/sveltejs/svelte/pull/18088)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/all-masks-dig.md | 5 ----- .changeset/common-flowers-listen.md | 5 ----- .changeset/silly-phones-follow.md | 5 ----- .changeset/slimy-pears-throw.md | 5 ----- .changeset/twenty-snakes-design.md | 5 ----- packages/svelte/CHANGELOG.md | 14 ++++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 8 files changed, 16 insertions(+), 27 deletions(-) delete mode 100644 .changeset/all-masks-dig.md delete mode 100644 .changeset/common-flowers-listen.md delete mode 100644 .changeset/silly-phones-follow.md delete mode 100644 .changeset/slimy-pears-throw.md delete mode 100644 .changeset/twenty-snakes-design.md diff --git a/.changeset/all-masks-dig.md b/.changeset/all-masks-dig.md deleted file mode 100644 index ffa40655b9..0000000000 --- a/.changeset/all-masks-dig.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: ensure proper HMR updates for dynamic components diff --git a/.changeset/common-flowers-listen.md b/.changeset/common-flowers-listen.md deleted file mode 100644 index 8d021b8054..0000000000 --- a/.changeset/common-flowers-listen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: correctly calculate `@const` blockers diff --git a/.changeset/silly-phones-follow.md b/.changeset/silly-phones-follow.md deleted file mode 100644 index c8671c6abe..0000000000 --- a/.changeset/silly-phones-follow.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: freeze deriveds once their containing effects are destroyed diff --git a/.changeset/slimy-pears-throw.md b/.changeset/slimy-pears-throw.md deleted file mode 100644 index c9954586e5..0000000000 --- a/.changeset/slimy-pears-throw.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: defer error boundary rendering in forks diff --git a/.changeset/twenty-snakes-design.md b/.changeset/twenty-snakes-design.md deleted file mode 100644 index ec1ac591f0..0000000000 --- a/.changeset/twenty-snakes-design.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: avoid false positives for reactivity loss warning diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 0853fab898..0e804235fc 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,19 @@ # svelte +## 5.55.3 + +### Patch Changes + +- fix: ensure proper HMR updates for dynamic components ([#18079](https://github.com/sveltejs/svelte/pull/18079)) + +- fix: correctly calculate `@const` blockers ([#18039](https://github.com/sveltejs/svelte/pull/18039)) + +- fix: freeze deriveds once their containing effects are destroyed ([#17921](https://github.com/sveltejs/svelte/pull/17921)) + +- fix: defer error boundary rendering in forks ([#18076](https://github.com/sveltejs/svelte/pull/18076)) + +- fix: avoid false positives for reactivity loss warning ([#18088](https://github.com/sveltejs/svelte/pull/18088)) + ## 5.55.2 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index a6c07ec75e..d06c3e3941 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.55.2", + "version": "5.55.3", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index dbca16d6a2..02695cf663 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.55.2'; +export const VERSION = '5.55.3'; export const PUBLIC_VERSION = '5';