From 7b6755eaf68f2a46f88a0b6b09fc2efa44c163e0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 13 Feb 2026 12:05:52 -0500 Subject: [PATCH] Version Packages (#17693) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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.51.0 ### Minor Changes - feat: Use `TrustedTypes` for HTML handling where supported ([#16271](https://github.com/sveltejs/svelte/pull/16271)) ### Patch Changes - fix: sanitize template-literal-special-characters in SSR attribute values ([#17692](https://github.com/sveltejs/svelte/pull/17692)) - fix: follow-up formatting in `print()` — flush block-level elements into separate sequences ([#17699](https://github.com/sveltejs/svelte/pull/17699)) - fix: preserve delegated event handlers as long as one or more root components are using them ([#17695](https://github.com/sveltejs/svelte/pull/17695)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/brave-pears-matter.md | 5 ----- .changeset/print-block-element-separation.md | 5 ----- .changeset/upset-spiders-study.md | 5 ----- .changeset/witty-lies-happen.md | 5 ----- packages/svelte/CHANGELOG.md | 14 ++++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 7 files changed, 16 insertions(+), 22 deletions(-) delete mode 100644 .changeset/brave-pears-matter.md delete mode 100644 .changeset/print-block-element-separation.md delete mode 100644 .changeset/upset-spiders-study.md delete mode 100644 .changeset/witty-lies-happen.md diff --git a/.changeset/brave-pears-matter.md b/.changeset/brave-pears-matter.md deleted file mode 100644 index 6ab2a4d9bb..0000000000 --- a/.changeset/brave-pears-matter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte": patch ---- - -fix: sanitize template-literal-special-characters in SSR attribute values diff --git a/.changeset/print-block-element-separation.md b/.changeset/print-block-element-separation.md deleted file mode 100644 index 57373fba5b..0000000000 --- a/.changeset/print-block-element-separation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"svelte": patch ---- - -fix: follow-up formatting in `print()` — flush block-level elements into separate sequences diff --git a/.changeset/upset-spiders-study.md b/.changeset/upset-spiders-study.md deleted file mode 100644 index 3f90828038..0000000000 --- a/.changeset/upset-spiders-study.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: preserve delegated event handlers as long as one or more root components are using them diff --git a/.changeset/witty-lies-happen.md b/.changeset/witty-lies-happen.md deleted file mode 100644 index e176103226..0000000000 --- a/.changeset/witty-lies-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': minor ---- - -feat: Use `TrustedTypes` for HTML handling where supported diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 8090b3cb6f..542ae4c8f6 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,19 @@ # svelte +## 5.51.0 + +### Minor Changes + +- feat: Use `TrustedTypes` for HTML handling where supported ([#16271](https://github.com/sveltejs/svelte/pull/16271)) + +### Patch Changes + +- fix: sanitize template-literal-special-characters in SSR attribute values ([#17692](https://github.com/sveltejs/svelte/pull/17692)) + +- fix: follow-up formatting in `print()` — flush block-level elements into separate sequences ([#17699](https://github.com/sveltejs/svelte/pull/17699)) + +- fix: preserve delegated event handlers as long as one or more root components are using them ([#17695](https://github.com/sveltejs/svelte/pull/17695)) + ## 5.50.3 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 452187662c..3b650af156 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.50.3", + "version": "5.51.0", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 648106aeb0..688c22df03 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.50.3'; +export const VERSION = '5.51.0'; export const PUBLIC_VERSION = '5';