From b771df346444d486243882099d2a36f88e32dde0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 23 Apr 2026 17:44:54 -0600 Subject: [PATCH] Version Packages (#18125) 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.5 ### Patch Changes - fix: don't mark deriveds while an effect is updating ([#18124](https://github.com/sveltejs/svelte/pull/18124)) - fix: do not dispatch introstart event with animation of animate directive ([#18122](https://github.com/sveltejs/svelte/pull/18122)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/common-candles-sneeze.md | 5 ----- .changeset/hip-flowers-give.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/common-candles-sneeze.md delete mode 100644 .changeset/hip-flowers-give.md diff --git a/.changeset/common-candles-sneeze.md b/.changeset/common-candles-sneeze.md deleted file mode 100644 index a0ef7b610b..0000000000 --- a/.changeset/common-candles-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: don't mark deriveds while an effect is updating diff --git a/.changeset/hip-flowers-give.md b/.changeset/hip-flowers-give.md deleted file mode 100644 index 77f4dd8892..0000000000 --- a/.changeset/hip-flowers-give.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: do not dispatch introstart event with animation of animate directive diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 7aa8f9818e..8e0f8a0916 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,13 @@ # svelte +## 5.55.5 + +### Patch Changes + +- fix: don't mark deriveds while an effect is updating ([#18124](https://github.com/sveltejs/svelte/pull/18124)) + +- fix: do not dispatch introstart event with animation of animate directive ([#18122](https://github.com/sveltejs/svelte/pull/18122)) + ## 5.55.4 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 12aa895ecf..a4ae208913 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.4", + "version": "5.55.5", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index cb8d3f76ab..04b0b0398a 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.4'; +export const VERSION = '5.55.5'; export const PUBLIC_VERSION = '5';