diff --git a/.changeset/pre.json b/.changeset/pre.json index 143117753b..5b855fc0fb 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -11,6 +11,7 @@ "changesets": [ "afraid-dogs-matter", "afraid-geckos-dance", + "afraid-kids-hide", "afraid-moose-matter", "angry-books-jam", "angry-plums-punch", @@ -38,6 +39,7 @@ "brown-houses-obey", "brown-months-fry", "brown-spoons-boil", + "calm-pandas-vanish", "calm-ravens-sneeze", "chatty-beans-divide", "chatty-cups-drop", @@ -100,6 +102,7 @@ "fast-weeks-clean", "few-clouds-shop", "few-mugs-fail", + "few-teachers-know", "fifty-rice-wait", "fifty-steaks-float", "five-tigers-search", @@ -301,6 +304,7 @@ "shiny-shrimps-march", "short-buses-camp", "short-countries-rush", + "shy-fishes-drive", "silent-apes-report", "silly-laws-happen", "silly-lies-film", @@ -389,6 +393,7 @@ "three-rice-tie", "three-suits-grin", "tidy-buses-whisper", + "tidy-chefs-taste", "tidy-starfishes-allow", "tiny-kings-whisper", "tough-radios-punch", @@ -407,6 +412,7 @@ "wicked-clouds-exercise", "wicked-doors-train", "wicked-hairs-cheer", + "wicked-wasps-allow", "wild-foxes-wonder", "wild-moose-compare", "wise-apples-care", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 7040f8c562..1428f17fd1 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,21 @@ # svelte +## 5.0.0-next.103 + +### Patch Changes + +- fix: throw error when auto-subscribed store variable shadow by local variable ([#11170](https://github.com/sveltejs/svelte/pull/11170)) + +- fix: make ownership validation work correctly with HMR ([#11171](https://github.com/sveltejs/svelte/pull/11171)) + +- fix: revert ownership widening change ([#11161](https://github.com/sveltejs/svelte/pull/11161)) + +- fix: fix string name of reactive map and set iterator ([#11169](https://github.com/sveltejs/svelte/pull/11169)) + +- feat: reactive `URL` and `URLSearchParams` classes ([#11157](https://github.com/sveltejs/svelte/pull/11157)) + +- feat: update error message for snippet binding and assignments ([#11168](https://github.com/sveltejs/svelte/pull/11168)) + ## 5.0.0-next.102 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 86a3072b9b..ad846f2ebd 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.0.0-next.102", + "version": "5.0.0-next.103", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 0f48e79f7e..bdddb059d5 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.0.0-next.102'; +export const VERSION = '5.0.0-next.103'; export const PUBLIC_VERSION = '5';