Version Packages (next) (#12887)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12891/head svelte@5.0.0-next.224
github-actions[bot] 7 months ago committed by GitHub
parent 94ed09628d
commit eaee7d3581
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -151,7 +151,9 @@
"eight-pianos-raise",
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-bugs-fetch",
"eighty-days-cheat",
"eighty-days-wave",
"eighty-lizards-notice",
"eleven-avocados-walk",
"eleven-beers-yell",
@ -278,6 +280,7 @@
"happy-dogs-jump",
"happy-lobsters-lick",
"happy-moles-live",
"happy-planets-rest",
"happy-suits-film",
"healthy-ants-film",
"healthy-dancers-play",
@ -303,6 +306,7 @@
"honest-phones-flash",
"hot-cooks-repair",
"hot-jobs-tap",
"hot-kangaroos-invite",
"hot-rivers-punch",
"hot-sloths-clap",
"hot-tips-appear",
@ -635,6 +639,7 @@
"smart-fans-crash",
"smart-grapes-mate",
"smart-parents-swim",
"smart-poets-care",
"smart-spiders-fetch",
"smart-turkeys-tell",
"smart-zebras-pay",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.224
### Patch Changes
- chore: inline start and end node properties into effect ([#12878](https://github.com/sveltejs/svelte/pull/12878))
- fix: correctly ensure prop bindings are reactive when bound ([#12879](https://github.com/sveltejs/svelte/pull/12879))
- fix: remove sapper bindings ([#12875](https://github.com/sveltejs/svelte/pull/12875))
- chore: refactor internal signal dependency heuristic ([#12881](https://github.com/sveltejs/svelte/pull/12881))
- fix: allow store as initial value for props in ssr ([#12885](https://github.com/sveltejs/svelte/pull/12885))
## 5.0.0-next.223
### Patch Changes

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

Loading…
Cancel
Save