Version Packages (next) (#12015)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10740/merge svelte@5.0.0-next.155
github-actions[bot] 3 weeks ago committed by GitHub
parent ccb3c90cd5
commit 95d07de7f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -62,7 +62,9 @@
"chilly-pans-raise",
"chilly-rocks-hug",
"chilly-snakes-scream",
"clean-cats-wave",
"clean-eels-beg",
"clean-melons-wash",
"clever-chefs-relate",
"clever-maps-travel",
"clever-rockets-burn",
@ -91,6 +93,7 @@
"cyan-colts-raise",
"cyan-ducks-teach",
"cyan-flowers-destroy",
"cyan-news-grow",
"cyan-spies-grin",
"cyan-squids-drive",
"cyan-toes-share",
@ -107,6 +110,7 @@
"dull-coins-vanish",
"dull-donkeys-smell",
"dull-mangos-wave",
"dull-pens-pay",
"dull-pots-add",
"dull-roses-relate",
"dull-worms-relax",
@ -123,6 +127,7 @@
"eighty-lizards-notice",
"eleven-beers-yell",
"eleven-cycles-applaud",
"eleven-hounds-pump",
"empty-bags-heal",
"empty-bulldogs-exercise",
"empty-coins-build",
@ -244,6 +249,7 @@
"itchy-panthers-shave",
"itchy-peaches-compare",
"itchy-terms-guess",
"khaki-cheetahs-refuse",
"khaki-cooks-develop",
"khaki-ligers-sing",
"khaki-mails-draw",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.155
### Patch Changes
- fix: robustify migration script ([#12019](https://github.com/sveltejs/svelte/pull/12019))
- fix: relax constraint for `ComponentProps` ([#12026](https://github.com/sveltejs/svelte/pull/12026))
- fix: address event delegation duplication behaviour ([#12014](https://github.com/sveltejs/svelte/pull/12014))
- chore: remove `createRoot` references ([#12018](https://github.com/sveltejs/svelte/pull/12018))
- chore: clear `Map`/`Set` before triggering `$inspect` callbacks ([#12013](https://github.com/sveltejs/svelte/pull/12013))
- breaking: rename `$effect.active` to `$effect.tracking` ([#12022](https://github.com/sveltejs/svelte/pull/12022))
## 5.0.0-next.154
### Patch Changes

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

Loading…
Cancel
Save