diff --git a/.changeset/pre.json b/.changeset/pre.json index ad09eb09f3..55dc839f35 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -159,6 +159,7 @@ "eleven-cycles-applaud", "eleven-donuts-sit", "eleven-hounds-pump", + "eleven-teachers-drive", "empty-bags-heal", "empty-bulldogs-exercise", "empty-coins-build", @@ -258,6 +259,7 @@ "good-rivers-yawn", "good-roses-argue", "gorgeous-boxes-design", + "gorgeous-coats-jog", "gorgeous-hats-wonder", "gorgeous-monkeys-carry", "gorgeous-singers-rest", @@ -303,6 +305,7 @@ "hot-jobs-tap", "hot-rivers-punch", "hot-sloths-clap", + "hot-tips-appear", "hungry-boxes-relate", "hungry-dots-fry", "hungry-pants-push", @@ -345,6 +348,7 @@ "late-grapes-judge", "late-peaches-mate", "late-zebras-argue", + "lazy-carrots-buy", "lazy-knives-happen", "lazy-masks-sit", "lazy-months-knock", @@ -448,6 +452,7 @@ "odd-schools-wait", "odd-shoes-cheat", "odd-taxis-retire", + "odd-toys-glow", "old-flies-jog", "old-houses-drum", "old-jokes-deliver", @@ -526,6 +531,7 @@ "red-poets-study", "red-pots-pretend", "rich-cobras-exist", + "rich-elephants-relax", "rich-garlics-laugh", "rich-olives-yell", "rich-plums-thank", @@ -598,6 +604,7 @@ "six-boats-shave", "six-chicken-kneel", "six-gorillas-obey", + "six-vans-add", "sixty-items-crash", "sixty-numbers-hope", "sixty-pandas-rush", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 5c7764e78d..548c858f13 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,23 @@ # svelte +## 5.0.0-next.223 + +### Patch Changes + +- fix: treat module-level imports as non-reactive in legacy mode ([#12845](https://github.com/sveltejs/svelte/pull/12845)) + +- breaking: remove foreign namespace ([#12869](https://github.com/sveltejs/svelte/pull/12869)) + +- feat: more efficient text-only fragments ([#12864](https://github.com/sveltejs/svelte/pull/12864)) + +- fix: ensure outro animation is not prematurely aborted ([#12865](https://github.com/sveltejs/svelte/pull/12865)) + +- chore: improve performance of DOM traversal operations ([#12863](https://github.com/sveltejs/svelte/pull/12863)) + +- feat: better destructuring assignments ([#12872](https://github.com/sveltejs/svelte/pull/12872)) + +- fix: stricter `crossorigin` and `wrap` attributes types ([#12858](https://github.com/sveltejs/svelte/pull/12858)) + ## 5.0.0-next.222 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index b44c73788c..82f6652bdf 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.222", + "version": "5.0.0-next.223", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index a3e3623c9a..f7ec5e4d70 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.222'; +export const VERSION = '5.0.0-next.223'; export const PUBLIC_VERSION = '5';