Version Packages (next) (#11205)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11227/head svelte@5.0.0-next.108
github-actions[bot] 1 year ago committed by GitHub
parent de2d8a0bee
commit 5fce00f06e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -118,6 +118,7 @@
"forty-suns-smile",
"four-flies-hammer",
"four-mice-hammer",
"four-pugs-listen",
"fresh-dots-destroy",
"fresh-impalas-bow",
"fresh-weeks-trade",
@ -152,6 +153,7 @@
"heavy-ducks-leave",
"heavy-ears-rule",
"hip-balloons-begin",
"hip-pumpkins-boil",
"honest-buses-add",
"honest-dragons-turn",
"honest-icons-change",
@ -189,6 +191,7 @@
"lazy-spiders-think",
"lemon-geese-call",
"lemon-geese-drum",
"lemon-trees-act",
"light-badgers-glow",
"light-days-clean",
"light-humans-hang",
@ -230,6 +233,7 @@
"new-brooms-grin",
"new-rabbits-flow",
"nice-avocados-move",
"nine-cooks-join",
"ninety-dingos-walk",
"odd-buckets-lie",
"odd-needles-joke",
@ -262,6 +266,7 @@
"popular-mangos-rest",
"popular-walls-hunt",
"pretty-ties-help",
"proud-pets-hang",
"proud-queens-sniff",
"purple-dragons-peel",
"quiet-apricots-dream",
@ -418,6 +423,7 @@
"unlucky-trees-lick",
"violet-pigs-jam",
"weak-drinks-speak",
"weak-frogs-bow",
"weak-terms-destroy",
"wet-games-fly",
"wet-wombats-repeat",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.108
### Patch Changes
- breaking: warn on slots and event handlers in runes mode, error on `<slot>` + `{@render ...}` tag usage in same component ([#11203](https://github.com/sveltejs/svelte/pull/11203))
- fix: fall back to component namespace when not statically determinable, add way to tell `<svelte:element>` the namespace at runtime ([#11219](https://github.com/sveltejs/svelte/pull/11219))
- fix: measure elements before taking siblings out of the flow ([#11216](https://github.com/sveltejs/svelte/pull/11216))
- breaking: warn on self-closing non-void HTML tags ([#11114](https://github.com/sveltejs/svelte/pull/11114))
- fix: take outroing elements out of the flow when animating siblings ([#11208](https://github.com/sveltejs/svelte/pull/11208))
- fix: widen ownership when sub state is assigned to new state ([#11217](https://github.com/sveltejs/svelte/pull/11217))
## 5.0.0-next.107
### Patch Changes

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

Loading…
Cancel
Save