Version Packages (next) (#13085)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13107/head svelte@5.0.0-next.243
github-actions[bot] 3 weeks ago committed by GitHub
parent 6f855e627f
commit 35bd12b156
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -18,6 +18,7 @@
"angry-books-jam",
"angry-plums-punch",
"angry-wasps-help",
"angry-weeks-design",
"beige-cobras-smoke",
"beige-flies-wash",
"beige-gifts-appear",
@ -80,6 +81,7 @@
"chilly-pans-raise",
"chilly-rocks-hug",
"chilly-snakes-scream",
"chilly-waves-count",
"clean-cats-wave",
"clean-eels-beg",
"clean-melons-wash",
@ -158,12 +160,14 @@
"eighty-days-cheat",
"eighty-days-wave",
"eighty-lizards-notice",
"eighty-mails-develop",
"eleven-avocados-walk",
"eleven-beers-yell",
"eleven-cows-judge",
"eleven-cycles-applaud",
"eleven-donuts-sit",
"eleven-hounds-pump",
"eleven-icons-sniff",
"eleven-teachers-drive",
"empty-bags-heal",
"empty-bulldogs-exercise",
@ -885,6 +889,7 @@
"yellow-taxis-double",
"yellow-trees-juggle",
"young-ads-roll",
"young-feet-double",
"young-masks-refuse",
"young-peaches-agree"
]

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.243
### Patch Changes
- fix: ensure reactive graph is fully traversed in the marking phase for non-runes mode ([#13059](https://github.com/sveltejs/svelte/pull/13059))
- fix: ensure reactivity system remains consistent with removals ([#13087](https://github.com/sveltejs/svelte/pull/13087))
- fix: render undefined html as the empty string ([#13092](https://github.com/sveltejs/svelte/pull/13092))
- fix: error on incorrect attributes for svelte:body ([#13084](https://github.com/sveltejs/svelte/pull/13084))
- feat: provide AST node types with internal types stripped out ([#12968](https://github.com/sveltejs/svelte/pull/12968))
## 5.0.0-next.242
### Patch Changes

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

Loading…
Cancel
Save