diff --git a/.changeset/pre.json b/.changeset/pre.json index 9feb3674db2d..6953fb1512f6 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -43,6 +43,7 @@ "chatty-taxis-juggle", "chilled-pumas-invite", "chilly-dolphins-lick", + "chilly-rocks-hug", "chilly-snakes-scream", "clean-eels-beg", "clever-chefs-relate", @@ -54,6 +55,7 @@ "cool-rabbits-tickle", "cool-roses-trade", "cuddly-pianos-drop", + "cuddly-points-tickle", "curly-lizards-dream", "curvy-buses-laugh", "curvy-cups-cough", @@ -74,6 +76,7 @@ "dull-pots-add", "dull-roses-relate", "early-ads-tie", + "eight-hornets-punch", "eight-steaks-shout", "eighty-bikes-camp", "eighty-days-cheat", @@ -104,6 +107,7 @@ "forty-peaches-unite", "forty-suns-smile", "four-flies-hammer", + "four-mice-hammer", "fresh-impalas-bow", "fresh-weeks-trade", "friendly-candles-relate", @@ -116,6 +120,7 @@ "gentle-spies-happen", "giant-moons-own", "giant-planets-shake", + "giant-plants-grin", "giant-roses-press", "good-buses-reply", "good-cars-visit", @@ -191,6 +196,7 @@ "metal-lobsters-burn", "mighty-cooks-scream", "mighty-files-hammer", + "mighty-frogs-obey", "moody-carrots-lay", "moody-frogs-exist", "moody-houses-argue", @@ -234,7 +240,9 @@ "poor-seahorses-flash", "popular-ligers-perform", "popular-mangos-rest", + "popular-walls-hunt", "pretty-ties-help", + "proud-queens-sniff", "purple-dragons-peel", "quiet-apricots-dream", "quiet-berries-end", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index ef939c54e56e..3531c108e481 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,25 @@ # svelte +## 5.0.0-next.96 + +### Patch Changes + +- feat: introduce `$host` rune, deprecate `createEventDispatcher` ([#11059](https://github.com/sveltejs/svelte/pull/11059)) + +- fix: execute sole static script tag ([#11095](https://github.com/sveltejs/svelte/pull/11095)) + +- fix: make static `element` property available for the SvelteComponent type ([#11079](https://github.com/sveltejs/svelte/pull/11079)) + +- fix: improve internal proxied state signal heuristic ([#11102](https://github.com/sveltejs/svelte/pull/11102)) + +- fix: keep sibling selectors when dealing with slots/render tags/`svelte:element` tags ([#11096](https://github.com/sveltejs/svelte/pull/11096)) + +- fix: ensure deep mutation ownership widening ([#11094](https://github.com/sveltejs/svelte/pull/11094)) + +- fix: improve compiled output of multiple call expression in single text node ([#11097](https://github.com/sveltejs/svelte/pull/11097)) + +- fix: improve hydration of svelte head blocks ([#11099](https://github.com/sveltejs/svelte/pull/11099)) + ## 5.0.0-next.95 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index f164de0cb209..6ad62632c541 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.95", + "version": "5.0.0-next.96", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index 4d2bdaa4eb5f..126905863324 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.95'; +export const VERSION = '5.0.0-next.96'; export const PUBLIC_VERSION = '5';