Version Packages (next) (#12340)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12353/head svelte@5.0.0-next.176
github-actions[bot] 4 months ago committed by GitHub
parent dba4aa3567
commit 76ddfb3d45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -78,6 +78,7 @@
"cold-cheetahs-judge", "cold-cheetahs-judge",
"cold-lamps-accept", "cold-lamps-accept",
"cold-masks-learn", "cold-masks-learn",
"cold-teachers-turn",
"cool-actors-tan", "cool-actors-tan",
"cool-ants-leave", "cool-ants-leave",
"cool-comics-marry", "cool-comics-marry",
@ -133,6 +134,7 @@
"eighty-lizards-notice", "eighty-lizards-notice",
"eleven-avocados-walk", "eleven-avocados-walk",
"eleven-beers-yell", "eleven-beers-yell",
"eleven-cows-judge",
"eleven-cycles-applaud", "eleven-cycles-applaud",
"eleven-hounds-pump", "eleven-hounds-pump",
"empty-bags-heal", "empty-bags-heal",
@ -157,6 +159,7 @@
"fast-donkeys-pay", "fast-donkeys-pay",
"fast-penguins-matter", "fast-penguins-matter",
"fast-weeks-clean", "fast-weeks-clean",
"few-cheetahs-taste",
"few-clouds-shop", "few-clouds-shop",
"few-mugs-fail", "few-mugs-fail",
"few-teachers-know", "few-teachers-know",
@ -398,6 +401,7 @@
"pink-bikes-agree", "pink-bikes-agree",
"pink-goats-promise", "pink-goats-promise",
"pink-mayflies-tie", "pink-mayflies-tie",
"plenty-clouds-reply",
"plenty-elephants-fry", "plenty-elephants-fry",
"plenty-starfishes-dress", "plenty-starfishes-dress",
"plenty-zoos-fix", "plenty-zoos-fix",
@ -517,6 +521,7 @@
"slow-plums-chew", "slow-plums-chew",
"slow-wombats-reply", "slow-wombats-reply",
"small-apples-eat", "small-apples-eat",
"small-owls-remain",
"small-papayas-laugh", "small-papayas-laugh",
"small-sheep-type", "small-sheep-type",
"small-spiders-fail", "small-spiders-fail",
@ -658,9 +663,11 @@
"wet-wombats-repeat", "wet-wombats-repeat",
"wicked-clouds-exercise", "wicked-clouds-exercise",
"wicked-doors-train", "wicked-doors-train",
"wicked-emus-drive",
"wicked-hairs-cheer", "wicked-hairs-cheer",
"wicked-wasps-allow", "wicked-wasps-allow",
"wicked-ways-reply", "wicked-ways-reply",
"wild-cows-chew",
"wild-foxes-wonder", "wild-foxes-wonder",
"wild-moose-compare", "wild-moose-compare",
"wise-apples-care", "wise-apples-care",

@ -1,5 +1,23 @@
# svelte # svelte
## 5.0.0-next.176
### Patch Changes
- fix: correct start of `{:else if}` and `{:else}` ([#12043](https://github.com/sveltejs/svelte/pull/12043))
- fix: reverse parent/child order in invalid HTML warning ([#12336](https://github.com/sveltejs/svelte/pull/12336))
- fix: reorder reactive statements during migration ([#12329](https://github.com/sveltejs/svelte/pull/12329))
- feat: better `<svelte:element>` SSR output ([#12339](https://github.com/sveltejs/svelte/pull/12339))
- chore: align warning and error objects, add frame property ([#12326](https://github.com/sveltejs/svelte/pull/12326))
- fix: ensure `$effect.root` is ignored on the server ([#12332](https://github.com/sveltejs/svelte/pull/12332))
- fix: enable local transitions on `svelte:element` ([#12346](https://github.com/sveltejs/svelte/pull/12346))
## 5.0.0-next.175 ## 5.0.0-next.175
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.175", "version": "5.0.0-next.176",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.175'; export const VERSION = '5.0.0-next.176';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save