diff --git a/.changeset/afraid-donuts-whisper.md b/.changeset/afraid-donuts-whisper.md deleted file mode 100644 index df9eea40ad..0000000000 --- a/.changeset/afraid-donuts-whisper.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: migration script messing with attributes diff --git a/.changeset/bright-papayas-sneeze.md b/.changeset/bright-papayas-sneeze.md deleted file mode 100644 index 8587aebc66..0000000000 --- a/.changeset/bright-papayas-sneeze.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: do not treat reassigned synthetic binds as state in runes mode diff --git a/.changeset/good-laws-sin.md b/.changeset/good-laws-sin.md deleted file mode 100644 index 38d3d3bfc8..0000000000 --- a/.changeset/good-laws-sin.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: account for mutations in script module in ownership check diff --git a/.changeset/nice-chicken-wonder.md b/.changeset/nice-chicken-wonder.md deleted file mode 100644 index b9f6e39fb8..0000000000 --- a/.changeset/nice-chicken-wonder.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: consider img with loading attribute not static diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 98fdbc6937..9ab2e67282 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # svelte +## 5.1.14 + +### Patch Changes + +- fix: migration script messing with attributes ([#14260](https://github.com/sveltejs/svelte/pull/14260)) + +- fix: do not treat reassigned synthetic binds as state in runes mode ([#14236](https://github.com/sveltejs/svelte/pull/14236)) + +- fix: account for mutations in script module in ownership check ([#14253](https://github.com/sveltejs/svelte/pull/14253)) + +- fix: consider img with loading attribute not static ([#14237](https://github.com/sveltejs/svelte/pull/14237)) + ## 5.1.13 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 9b0c03a5af..04efd21643 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.1.13", + "version": "5.1.14", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index c50265e998..17232bc9d6 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '5.1.13'; +export const VERSION = '5.1.14'; export const PUBLIC_VERSION = '5';