Version Packages (next) (#10571)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10579/head svelte@5.0.0-next.63
github-actions[bot] 2 years ago committed by GitHub
parent d6e0fbd8ba
commit 88389ad2cf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -94,6 +94,7 @@
"giant-roses-press", "giant-roses-press",
"good-cars-visit", "good-cars-visit",
"good-pianos-jump", "good-pianos-jump",
"good-rivers-yawn",
"gorgeous-singers-rest", "gorgeous-singers-rest",
"great-fans-unite", "great-fans-unite",
"great-icons-retire", "great-icons-retire",
@ -120,6 +121,7 @@
"khaki-moose-arrive", "khaki-moose-arrive",
"kind-baboons-approve", "kind-baboons-approve",
"kind-deers-lay", "kind-deers-lay",
"kind-dots-sort",
"kind-eagles-join", "kind-eagles-join",
"kind-rings-flash", "kind-rings-flash",
"large-clouds-carry", "large-clouds-carry",
@ -188,6 +190,7 @@
"rare-worms-hunt", "rare-worms-hunt",
"real-guests-do", "real-guests-do",
"real-items-suffer", "real-items-suffer",
"real-pandas-brush",
"red-doors-own", "red-doors-own",
"red-feet-worry", "red-feet-worry",
"rich-cobras-exist", "rich-cobras-exist",
@ -275,6 +278,7 @@
"thirty-wombats-relax", "thirty-wombats-relax",
"three-camels-sell", "three-camels-sell",
"three-icons-trade", "three-icons-trade",
"three-papayas-buy",
"three-suits-grin", "three-suits-grin",
"tidy-buses-whisper", "tidy-buses-whisper",
"tidy-starfishes-allow", "tidy-starfishes-allow",

@ -1,5 +1,17 @@
# svelte # svelte
## 5.0.0-next.63
### Patch Changes
- fix: handle member expressions in directives ([#10576](https://github.com/sveltejs/svelte/pull/10576))
- fix: remove memory leak ([#10570](https://github.com/sveltejs/svelte/pull/10570))
- fix: call beforeUpdate/afterUpdate callbacks when props are mutated ([#10570](https://github.com/sveltejs/svelte/pull/10570))
- fix: improve props spreading logic ([#10574](https://github.com/sveltejs/svelte/pull/10574))
## 5.0.0-next.62 ## 5.0.0-next.62
### 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.62", "version": "5.0.0-next.63",
"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.62'; export const VERSION = '5.0.0-next.63';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save