Version Packages (next) (#12015)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12038/head svelte@5.0.0-next.155
github-actions[bot] 7 months 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-pans-raise",
"chilly-rocks-hug", "chilly-rocks-hug",
"chilly-snakes-scream", "chilly-snakes-scream",
"clean-cats-wave",
"clean-eels-beg", "clean-eels-beg",
"clean-melons-wash",
"clever-chefs-relate", "clever-chefs-relate",
"clever-maps-travel", "clever-maps-travel",
"clever-rockets-burn", "clever-rockets-burn",
@ -91,6 +93,7 @@
"cyan-colts-raise", "cyan-colts-raise",
"cyan-ducks-teach", "cyan-ducks-teach",
"cyan-flowers-destroy", "cyan-flowers-destroy",
"cyan-news-grow",
"cyan-spies-grin", "cyan-spies-grin",
"cyan-squids-drive", "cyan-squids-drive",
"cyan-toes-share", "cyan-toes-share",
@ -107,6 +110,7 @@
"dull-coins-vanish", "dull-coins-vanish",
"dull-donkeys-smell", "dull-donkeys-smell",
"dull-mangos-wave", "dull-mangos-wave",
"dull-pens-pay",
"dull-pots-add", "dull-pots-add",
"dull-roses-relate", "dull-roses-relate",
"dull-worms-relax", "dull-worms-relax",
@ -123,6 +127,7 @@
"eighty-lizards-notice", "eighty-lizards-notice",
"eleven-beers-yell", "eleven-beers-yell",
"eleven-cycles-applaud", "eleven-cycles-applaud",
"eleven-hounds-pump",
"empty-bags-heal", "empty-bags-heal",
"empty-bulldogs-exercise", "empty-bulldogs-exercise",
"empty-coins-build", "empty-coins-build",
@ -244,6 +249,7 @@
"itchy-panthers-shave", "itchy-panthers-shave",
"itchy-peaches-compare", "itchy-peaches-compare",
"itchy-terms-guess", "itchy-terms-guess",
"khaki-cheetahs-refuse",
"khaki-cooks-develop", "khaki-cooks-develop",
"khaki-ligers-sing", "khaki-ligers-sing",
"khaki-mails-draw", "khaki-mails-draw",

@ -1,5 +1,21 @@
# svelte # 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 ## 5.0.0-next.154
### 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.154", "version": "5.0.0-next.155",
"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.154'; export const VERSION = '5.0.0-next.155';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save