diff --git a/.changeset/chatty-gorillas-poke.md b/.changeset/chatty-gorillas-poke.md deleted file mode 100644 index 744adcf21463..000000000000 --- a/.changeset/chatty-gorillas-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: add migration task when there's a variable named that would conflict with a rune diff --git a/.changeset/four-jobs-care.md b/.changeset/four-jobs-care.md deleted file mode 100644 index 51e5d22313d6..000000000000 --- a/.changeset/four-jobs-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: handle sibling combinators within `:has` diff --git a/.changeset/giant-waves-act.md b/.changeset/giant-waves-act.md deleted file mode 100644 index 591f0f25ba1e..000000000000 --- a/.changeset/giant-waves-act.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: consider variables with synthetic store sub as state diff --git a/.changeset/late-dodos-film.md b/.changeset/late-dodos-film.md deleted file mode 100644 index c3636019dab0..000000000000 --- a/.changeset/late-dodos-film.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: read index as a source in legacy keyed each block diff --git a/.changeset/lazy-chefs-float.md b/.changeset/lazy-chefs-float.md deleted file mode 100644 index ce15e3dabca1..000000000000 --- a/.changeset/lazy-chefs-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: account for shadowing children slot during migration diff --git a/.changeset/nice-numbers-remember.md b/.changeset/nice-numbers-remember.md deleted file mode 100644 index 810343aedf1c..000000000000 --- a/.changeset/nice-numbers-remember.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: ensure explicit nesting selector is always applied diff --git a/.changeset/seven-clocks-pull.md b/.changeset/seven-clocks-pull.md deleted file mode 100644 index e426560b7b91..000000000000 --- a/.changeset/seven-clocks-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'svelte': patch ---- - -fix: add `lang="ts"` attribute during migration if needed diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 4283f406d620..15940e269d4c 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,23 @@ # svelte +## 5.1.13 + +### Patch Changes + +- fix: add migration task when there's a variable named that would conflict with a rune ([#14216](https://github.com/sveltejs/svelte/pull/14216)) + +- fix: handle sibling combinators within `:has` ([#14213](https://github.com/sveltejs/svelte/pull/14213)) + +- fix: consider variables with synthetic store sub as state ([#14195](https://github.com/sveltejs/svelte/pull/14195)) + +- fix: read index as a source in legacy keyed each block ([#14208](https://github.com/sveltejs/svelte/pull/14208)) + +- fix: account for shadowing children slot during migration ([#14224](https://github.com/sveltejs/svelte/pull/14224)) + +- fix: ensure explicit nesting selector is always applied ([#14193](https://github.com/sveltejs/svelte/pull/14193)) + +- fix: add `lang="ts"` attribute during migration if needed ([#14222](https://github.com/sveltejs/svelte/pull/14222)) + ## 5.1.12 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 0b0eb32ffd59..9b0c03a5af54 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.12", + "version": "5.1.13", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 9c883457e82f..c50265e99899 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.12'; +export const VERSION = '5.1.13'; export const PUBLIC_VERSION = '5';