From cbf4e246fc0d4ce26b4a5146919180cc58fd162a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 16:03:07 -0500 Subject: [PATCH] Version Packages (#17742) 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.52.0 ### Minor Changes - feat: support TrustedHTML in `{@html}` expressions ([#17701](https://github.com/sveltejs/svelte/pull/17701)) ### Patch Changes - fix: repair dynamic component truthy/falsy hydration mismatches ([#17737](https://github.com/sveltejs/svelte/pull/17737)) - fix: re-run non-render-bound deriveds on the server ([#17674](https://github.com/sveltejs/svelte/pull/17674)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/silly-mammals-fold.md | 5 ----- .changeset/trusted-html-support.md | 5 ----- .changeset/weak-sloths-laugh.md | 5 ----- packages/svelte/CHANGELOG.md | 12 ++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 6 files changed, 14 insertions(+), 17 deletions(-) delete mode 100644 .changeset/silly-mammals-fold.md delete mode 100644 .changeset/trusted-html-support.md delete mode 100644 .changeset/weak-sloths-laugh.md diff --git a/.changeset/silly-mammals-fold.md b/.changeset/silly-mammals-fold.md deleted file mode 100644 index 3513b4339e..0000000000 --- a/.changeset/silly-mammals-fold.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: repair dynamic component truthy/falsy hydration mismatches diff --git a/.changeset/trusted-html-support.md b/.changeset/trusted-html-support.md deleted file mode 100644 index bfb7e62803..0000000000 --- a/.changeset/trusted-html-support.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': minor ---- - -feat: support TrustedHTML in `{@html}` expressions diff --git a/.changeset/weak-sloths-laugh.md b/.changeset/weak-sloths-laugh.md deleted file mode 100644 index 474fc4cdc7..0000000000 --- a/.changeset/weak-sloths-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: re-run non-render-bound deriveds on the server diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index fa0cc5a775..22bff2c2b4 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # svelte +## 5.52.0 + +### Minor Changes + +- feat: support TrustedHTML in `{@html}` expressions ([#17701](https://github.com/sveltejs/svelte/pull/17701)) + +### Patch Changes + +- fix: repair dynamic component truthy/falsy hydration mismatches ([#17737](https://github.com/sveltejs/svelte/pull/17737)) + +- fix: re-run non-render-bound deriveds on the server ([#17674](https://github.com/sveltejs/svelte/pull/17674)) + ## 5.51.5 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index bfbc537a43..2977de549d 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.51.5", + "version": "5.52.0", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index af76149596..e31e8cf0e9 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.51.5'; +export const VERSION = '5.52.0'; export const PUBLIC_VERSION = '5';