Version Packages (next) (#9707)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9731/head svelte@5.0.0-next.16
github-actions[bot] 8 months ago committed by GitHub
parent 2fa06447cf
commit 1108587f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,6 +12,7 @@
"afraid-moose-matter",
"brave-walls-destroy",
"brown-spoons-boil",
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilly-dolphins-lick",
"clean-eels-beg",
@ -24,21 +25,26 @@
"eight-steaks-shout",
"eighty-bikes-camp",
"fair-crabs-check",
"famous-knives-sneeze",
"few-mugs-fail",
"fifty-steaks-float",
"flat-melons-protect",
"forty-comics-invent",
"fresh-weeks-trade",
"friendly-lies-camp",
"funny-wombats-argue",
"good-pianos-jump",
"great-icons-retire",
"green-eggs-approve",
"green-hounds-play",
"honest-icons-change",
"hungry-dots-fry",
"hungry-tips-unite",
"itchy-lions-wash",
"khaki-mails-draw",
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
"lazy-spiders-think",
"light-pens-watch",
"long-crews-return",
@ -48,8 +54,10 @@
"moody-frogs-exist",
"moody-owls-cry",
"new-boats-wait",
"ninety-dingos-walk",
"odd-needles-joke",
"odd-schools-wait",
"odd-shoes-cheat",
"polite-pumpkins-guess",
"poor-eggs-enjoy",
"popular-mangos-rest",
@ -66,10 +74,13 @@
"slimy-clouds-talk",
"small-papayas-laugh",
"soft-geese-learn",
"sour-forks-stare",
"sour-rules-march",
"stale-comics-look",
"strong-lemons-provide",
"swift-ravens-hunt",
"tall-shrimps-worry",
"tall-tigers-wait",
"ten-worms-reflect",
"thin-foxes-lick",
"thirty-flowers-sit",

@ -1,5 +1,31 @@
# svelte
## 5.0.0-next.16
### Patch Changes
- fix: delegate events on elements with bind-this ([#9696](https://github.com/sveltejs/svelte/pull/9696))
- fix: ensure implicit children snippet renders correctly ([#9706](https://github.com/sveltejs/svelte/pull/9706))
- fix: ensure `$slots` exists in runes mode ([#9718](https://github.com/sveltejs/svelte/pull/9718))
- fix: allow `bind:this` with dynamic type on inputs ([#9713](https://github.com/sveltejs/svelte/pull/9713))
- fix: port over props that were set prior to initialization ([#9704](https://github.com/sveltejs/svelte/pull/9704))
- feat: $inspect rune ([#9705](https://github.com/sveltejs/svelte/pull/9705))
- fix: keep fallback value after spread update not setting that prop ([#9717](https://github.com/sveltejs/svelte/pull/9717))
- fix: tweak const tag parsing ([#9715](https://github.com/sveltejs/svelte/pull/9715))
- chore: remove redundant hydration code ([#9698](https://github.com/sveltejs/svelte/pull/9698))
- fix: improve template text node serialization ([#9722](https://github.com/sveltejs/svelte/pull/9722))
- fix: improve infinite loop capturing ([#9721](https://github.com/sveltejs/svelte/pull/9721))
## 5.0.0-next.15
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.15",
"version": "5.0.0-next.16",
"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.15';
export const VERSION = '5.0.0-next.16';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save