diff --git a/.changeset/pre.json b/.changeset/pre.json index badbf7eb61..fffc19fa63 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -165,6 +165,7 @@ "early-ads-tie", "early-months-whisper", "early-needles-bake", + "early-rockets-join", "early-taxis-allow", "eight-carrots-hunt", "eight-comics-tell", @@ -306,6 +307,7 @@ "gold-tools-nail", "good-buses-reply", "good-cars-visit", + "good-kings-try", "good-pianos-jump", "good-plums-type", "good-rice-tap", @@ -511,6 +513,7 @@ "nasty-lions-double", "nasty-mayflies-smoke", "nasty-penguins-pump", + "nasty-teachers-end", "nasty-yaks-peel", "neat-boats-shake", "neat-boxes-chew", @@ -518,6 +521,7 @@ "neat-ducks-jam", "neat-files-rescue", "neat-jokes-beam", + "neat-rabbits-divide", "neat-ways-allow", "nervous-adults-sell", "nervous-berries-boil", @@ -731,6 +735,7 @@ "silly-lies-film", "silly-masks-exist", "silly-ways-wash", + "silver-beans-hear", "silver-mice-double", "silver-points-approve", "silver-sheep-knock", @@ -749,6 +754,7 @@ "sleepy-cats-eat", "sleepy-dogs-sit", "slimy-clouds-talk", + "slimy-garlics-beg", "slimy-hairs-impress", "slimy-laws-explode", "slimy-news-help", @@ -780,6 +786,7 @@ "smart-turkeys-tell", "smart-zebras-pay", "smart-zoos-vanish", + "smooth-apes-shave", "smooth-kids-protect", "smooth-pens-exist", "smooth-pens-protect", @@ -803,6 +810,7 @@ "spicy-plums-admire", "spotty-crabs-give", "spotty-houses-search", + "spotty-kings-hug", "spotty-pens-agree", "spotty-rocks-destroy", "spotty-shrimps-hug", @@ -869,6 +877,7 @@ "ten-teachers-travel", "ten-ties-repair", "ten-trainers-juggle", + "ten-vans-divide", "ten-worms-reflect", "tender-bats-switch", "tender-lemons-judge", @@ -947,6 +956,7 @@ "unlucky-steaks-warn", "unlucky-trees-lick", "violet-bats-brake", + "violet-buses-cross", "violet-mails-trade", "violet-mugs-behave", "violet-otters-carry", @@ -995,6 +1005,7 @@ "witty-hornets-think", "witty-phones-retire", "witty-readers-provide", + "witty-shirts-confess", "witty-sloths-impress", "witty-steaks-dream", "witty-tomatoes-care", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index dd4aa87d87..0111f9199e 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,31 @@ # svelte +## 5.0.0-next.270 + +### Patch Changes + +- fix: bail out if slot name changes and $slots assigned to variable ([#13678](https://github.com/sveltejs/svelte/pull/13678)) + +- feat: add `migration-task` for impossible to migrate slots ([#13658](https://github.com/sveltejs/svelte/pull/13658)) + +- feat: tell users of `@migration-task` ([#13668](https://github.com/sveltejs/svelte/pull/13668)) + +- fix: correct migration of uninitialised state ([#13673](https://github.com/sveltejs/svelte/pull/13673)) + +- fix: ensure migrate correctly handles named slots ([#13676](https://github.com/sveltejs/svelte/pull/13676)) + +- feat: add `migration-task` comment after errors ([#13659](https://github.com/sveltejs/svelte/pull/13659)) + +- fix: migrate reactive statements with inner blocks ([#13675](https://github.com/sveltejs/svelte/pull/13675)) + +- fix: migrating rest props type includes props types ([#13632](https://github.com/sveltejs/svelte/pull/13632)) + +- fix: migrated snippet shadowing prop and let directive removal ([#13679](https://github.com/sveltejs/svelte/pull/13679)) + +- chore: CompileDiagnostic no longer extends Error ([#13651](https://github.com/sveltejs/svelte/pull/13651)) + +- fix: reset `reset_element` in `render` to prevent runtime error ([#13669](https://github.com/sveltejs/svelte/pull/13669)) + ## 5.0.0-next.269 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index b75008ebf1..0769cea36e 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.269", + "version": "5.0.0-next.270", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 51a7254422..d3174dcc74 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.269'; +export const VERSION = '5.0.0-next.270'; export const PUBLIC_VERSION = '5';