Version Packages (next) (#11093)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11112/head svelte@5.0.0-next.96
github-actions[bot] 9 months ago committed by GitHub
parent 5a1c756a4e
commit e8f7437cf6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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",

@ -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

@ -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": {

@ -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';

Loading…
Cancel
Save