Version Packages (next) (#13448)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13486/head
github-actions[bot] 3 months ago committed by GitHub
parent 5675067e2b
commit 59b608c16e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -265,6 +265,7 @@
"funny-bugs-kiss",
"funny-cooks-clean",
"funny-dragons-double",
"funny-houses-kick",
"funny-ties-jump",
"funny-trees-cry",
"funny-wombats-argue",
@ -295,6 +296,7 @@
"good-rice-tap",
"good-rivers-yawn",
"good-roses-argue",
"good-vans-bake",
"good-zebras-turn",
"gorgeous-boxes-design",
"gorgeous-coats-jog",
@ -395,6 +397,7 @@
"kind-spoons-return",
"large-clouds-carry",
"large-emus-cough",
"large-rules-hang",
"large-turkeys-deny",
"large-waves-join",
"late-bees-vanish",
@ -452,6 +455,7 @@
"lucky-schools-hang",
"lucky-teachers-exist",
"lucky-toes-begin",
"many-fishes-warn",
"many-rockets-give",
"many-trees-fix",
"mean-jokes-exist",
@ -605,9 +609,11 @@
"rare-mirrors-act",
"rare-pears-whisper",
"rare-worms-hunt",
"real-camels-pay",
"real-guests-do",
"real-items-suffer",
"real-pandas-brush",
"real-timers-complain",
"red-cycles-pretend",
"red-doors-own",
"red-feet-worry",
@ -657,6 +663,7 @@
"seven-masks-end",
"seven-news-live",
"seven-ravens-check",
"seven-wombats-retire",
"shaggy-cameras-live",
"shaggy-comics-jog",
"sharp-fishes-serve",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.261
### Patch Changes
- fix: migrate `$Props` without creating non existent props ([#13484](https://github.com/sveltejs/svelte/pull/13484))
- feat: support migration of `svelte:component` ([#13437](https://github.com/sveltejs/svelte/pull/13437))
- feat: fix accessors and support migration of accessors ([#13456](https://github.com/sveltejs/svelte/pull/13456))
- fix: move labeled statements that need reordering after props insertion point ([#13480](https://github.com/sveltejs/svelte/pull/13480))
- feat: support migration of self closing tags ([#13479](https://github.com/sveltejs/svelte/pull/13479))
- fix: various `svelte:component` migration bugs ([#13473](https://github.com/sveltejs/svelte/pull/13473))
- fix: exclude type-only props from instance exports when migrating ([#13485](https://github.com/sveltejs/svelte/pull/13485))
## 5.0.0-next.260
### Patch Changes

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

Loading…
Cancel
Save