Version Packages (next) (#10419)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10441/head svelte@5.0.0-next.51
github-actions[bot] 5 months ago committed by GitHub
parent 4fcd1cb1ed
commit 2d032c733d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -9,6 +9,7 @@
"svelte.dev": "1.0.0"
},
"changesets": [
"afraid-dogs-matter",
"afraid-moose-matter",
"angry-books-jam",
"angry-plums-punch",
@ -135,6 +136,7 @@
"odd-needles-joke",
"odd-schools-wait",
"odd-shoes-cheat",
"odd-taxis-retire",
"old-flies-jog",
"old-houses-drum",
"old-mails-sneeze",
@ -181,6 +183,7 @@
"shiny-baboons-play",
"shiny-shrimps-march",
"short-buses-camp",
"silver-points-approve",
"sixty-items-crash",
"slimy-clouds-talk",
"slimy-laws-explode",
@ -246,6 +249,7 @@
"two-falcons-buy",
"unlucky-boxes-obey",
"unlucky-trees-lick",
"violet-pigs-jam",
"wet-games-fly",
"wicked-clouds-exercise",
"wicked-doors-train",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.51
### Patch Changes
- fix: align `beforeUpdate`/`afterUpdate` behavior better with that in Svelte 4 ([#10408](https://github.com/sveltejs/svelte/pull/10408))
- fix: disallow exporting props, derived and reassigned state from within components ([#10430](https://github.com/sveltejs/svelte/pull/10430))
- fix: improve indexed each array reconcilation ([#10422](https://github.com/sveltejs/svelte/pull/10422))
- fix: add compiler error for each block mutations in runes mode ([#10428](https://github.com/sveltejs/svelte/pull/10428))
## 5.0.0-next.50
### Patch Changes

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

Loading…
Cancel
Save