Version Packages (next) (#10963)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10966/head svelte@5.0.0-next.86
github-actions[bot] 6 months ago committed by GitHub
parent f118f8ea27
commit 1c645c3c07
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -27,6 +27,7 @@
"brave-points-sleep",
"brave-shrimps-kiss",
"brave-walls-destroy",
"brave-walls-flow",
"breezy-carrots-flash",
"bright-peas-juggle",
"bright-snakes-sing",
@ -46,6 +47,7 @@
"cold-birds-own",
"cold-masks-learn",
"cool-ants-leave",
"cool-peas-lick",
"cool-rabbits-tickle",
"cool-roses-trade",
"cuddly-pianos-drop",
@ -135,6 +137,7 @@
"hungry-tips-unite",
"hungry-trees-travel",
"itchy-beans-melt",
"itchy-bulldogs-tan",
"itchy-kings-deliver",
"itchy-lions-wash",
"itchy-terms-guess",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.86
### Patch Changes
- fix: improved effect sequencing and execution order ([#10949](https://github.com/sveltejs/svelte/pull/10949))
- breaking: onDestroy functions run child-first ([#10949](https://github.com/sveltejs/svelte/pull/10949))
- fix: improve action support for nested $effect ([#10962](https://github.com/sveltejs/svelte/pull/10962))
## 5.0.0-next.85
### Patch Changes

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

Loading…
Cancel
Save