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

@ -1,5 +1,23 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save