From 20b341f10048cf1016a2028ac7eee5595cfef6a5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 12 Aug 2026 14:08:05 -0400 Subject: [PATCH] Version Packages (#18628) 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.9 ### Patch Changes - fix: skip controlled each fast path while another batch is pending ([#18625](https://github.com/sveltejs/svelte/pull/18625)) - fix: better whitespace handling inside printer ([#18638](https://github.com/sveltejs/svelte/pull/18638)) - fix: don't duplicate comments in attributes ([#18636](https://github.com/sveltejs/svelte/pull/18636)) - fix: preserve CSS comments in the AST printer ([#18637](https://github.com/sveltejs/svelte/pull/18637)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/async-each-controlled-pending.md | 5 ----- .changeset/metal-cougars-chew.md | 5 ----- .changeset/modern-otters-pick.md | 5 ----- .changeset/soft-cats-comment.md | 5 ----- packages/svelte/CHANGELOG.md | 12 ++++++++++++ packages/svelte/package.json | 2 +- packages/svelte/src/version.js | 2 +- 7 files changed, 14 insertions(+), 22 deletions(-) delete mode 100644 .changeset/async-each-controlled-pending.md delete mode 100644 .changeset/metal-cougars-chew.md delete mode 100644 .changeset/modern-otters-pick.md delete mode 100644 .changeset/soft-cats-comment.md diff --git a/.changeset/async-each-controlled-pending.md b/.changeset/async-each-controlled-pending.md deleted file mode 100644 index c37f914d13..0000000000 --- a/.changeset/async-each-controlled-pending.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: skip controlled each fast path while another batch is pending diff --git a/.changeset/metal-cougars-chew.md b/.changeset/metal-cougars-chew.md deleted file mode 100644 index a75fc14a55..0000000000 --- a/.changeset/metal-cougars-chew.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: better whitespace handling inside printer diff --git a/.changeset/modern-otters-pick.md b/.changeset/modern-otters-pick.md deleted file mode 100644 index de5803e19f..0000000000 --- a/.changeset/modern-otters-pick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: don't duplicate comments in attributes diff --git a/.changeset/soft-cats-comment.md b/.changeset/soft-cats-comment.md deleted file mode 100644 index 01b07c4d7d..0000000000 --- a/.changeset/soft-cats-comment.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: preserve CSS comments in the AST printer diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 722fc21052..5ec2101bf7 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # svelte +## 5.56.9 + +### Patch Changes + +- fix: skip controlled each fast path while another batch is pending ([#18625](https://github.com/sveltejs/svelte/pull/18625)) + +- fix: better whitespace handling inside printer ([#18638](https://github.com/sveltejs/svelte/pull/18638)) + +- fix: don't duplicate comments in attributes ([#18636](https://github.com/sveltejs/svelte/pull/18636)) + +- fix: preserve CSS comments in the AST printer ([#18637](https://github.com/sveltejs/svelte/pull/18637)) + ## 5.56.8 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 82dd4faf61..0bd1580969 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.8", + "version": "5.56.9", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 8fb86f3398..e3b4c740f0 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.8'; +export const VERSION = '5.56.9'; export const PUBLIC_VERSION = '5';