Version Packages (next) (#11926)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11944/head svelte@5.0.0-next.151
github-actions[bot] 4 weeks ago committed by GitHub
parent 5b0a843b31
commit 48e620515d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -57,6 +57,7 @@
"chilled-pumas-invite",
"chilled-seas-jog",
"chilly-dolphins-lick",
"chilly-laws-juggle",
"chilly-pans-raise",
"chilly-rocks-hug",
"chilly-snakes-scream",
@ -69,6 +70,7 @@
"cold-beans-tease",
"cold-birds-own",
"cold-cheetahs-judge",
"cold-lamps-accept",
"cold-masks-learn",
"cool-actors-tan",
"cool-ants-leave",
@ -219,6 +221,7 @@
"honest-pans-kick",
"hot-cooks-repair",
"hot-jobs-tap",
"hot-sloths-clap",
"hungry-boxes-relate",
"hungry-dots-fry",
"hungry-pants-push",
@ -337,6 +340,7 @@
"olive-seals-sell",
"olive-shirts-complain",
"olive-socks-kick",
"orange-comics-prove",
"orange-crews-rescue",
"orange-dingos-poke",
"orange-masks-exercise",
@ -511,6 +515,7 @@
"tall-tigers-wait",
"tame-cycles-kneel",
"tame-dots-battle",
"tame-goats-bow",
"tame-spies-drum",
"tasty-cheetahs-appear",
"tasty-numbers-perform",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.151
### Patch Changes
- fix: relax `Component` type ([#11929](https://github.com/sveltejs/svelte/pull/11929))
- fix: sort `{@const ...}` tags topologically in legacy mode ([#11908](https://github.com/sveltejs/svelte/pull/11908))
- chore: deprecate html in favour of body for render() ([#11927](https://github.com/sveltejs/svelte/pull/11927))
- fix: append start/end info to `AssignmentPattern` and `VariableDeclarator` ([#11930](https://github.com/sveltejs/svelte/pull/11930))
- fix: relax slot prop validation on components ([#11923](https://github.com/sveltejs/svelte/pull/11923))
## 5.0.0-next.150
### Patch Changes

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

Loading…
Cancel
Save