Version Packages (next) (#11807)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11825/head svelte@5.0.0-next.144
github-actions[bot] 1 year ago committed by GitHub
parent 36b270ef3b
commit 5620882d6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,6 +13,7 @@
"afraid-geckos-dance", "afraid-geckos-dance",
"afraid-kids-hide", "afraid-kids-hide",
"afraid-moose-matter", "afraid-moose-matter",
"afraid-worms-drum",
"angry-books-jam", "angry-books-jam",
"angry-plums-punch", "angry-plums-punch",
"angry-wasps-help", "angry-wasps-help",
@ -140,6 +141,7 @@
"fifty-steaks-float", "fifty-steaks-float",
"five-tigers-search", "five-tigers-search",
"flat-melons-protect", "flat-melons-protect",
"flat-olives-live",
"fluffy-dolls-share", "fluffy-dolls-share",
"fluffy-humans-worry", "fluffy-humans-worry",
"fluffy-ravens-juggle", "fluffy-ravens-juggle",
@ -281,6 +283,7 @@
"mean-jokes-exist", "mean-jokes-exist",
"metal-clouds-raise", "metal-clouds-raise",
"metal-lobsters-burn", "metal-lobsters-burn",
"metal-pans-trade",
"mighty-cooks-scream", "mighty-cooks-scream",
"mighty-files-hammer", "mighty-files-hammer",
"mighty-frogs-obey", "mighty-frogs-obey",
@ -427,6 +430,7 @@
"sixty-pandas-rush", "sixty-pandas-rush",
"sleepy-cats-eat", "sleepy-cats-eat",
"slimy-clouds-talk", "slimy-clouds-talk",
"slimy-hairs-impress",
"slimy-laws-explode", "slimy-laws-explode",
"slimy-onions-approve", "slimy-onions-approve",
"slimy-walls-draw", "slimy-walls-draw",
@ -468,6 +472,7 @@
"stale-fans-rest", "stale-fans-rest",
"stale-jeans-refuse", "stale-jeans-refuse",
"strange-apricots-happen", "strange-apricots-happen",
"strange-roses-brake",
"strong-apricots-destroy", "strong-apricots-destroy",
"strong-gifts-smoke", "strong-gifts-smoke",
"strong-lemons-provide", "strong-lemons-provide",
@ -527,6 +532,7 @@
"tiny-meals-deliver", "tiny-meals-deliver",
"tiny-moose-kiss", "tiny-moose-kiss",
"tough-radios-punch", "tough-radios-punch",
"tough-tomatoes-explain",
"twelve-beans-drive", "twelve-beans-drive",
"twelve-dragons-join", "twelve-dragons-join",
"twelve-onions-juggle", "twelve-onions-juggle",

@ -1,5 +1,21 @@
# svelte # svelte
## 5.0.0-next.144
### Patch Changes
- fix: address derived memory leak on disconnection from reactive graph ([#11819](https://github.com/sveltejs/svelte/pull/11819))
- fix: set correct scope for `@const` tags within slots ([#11798](https://github.com/sveltejs/svelte/pull/11798))
- fix: better support for onwheel events in chrome ([#11808](https://github.com/sveltejs/svelte/pull/11808))
- fix: coherent infinite loop guard ([#11815](https://github.com/sveltejs/svelte/pull/11815))
- fix: make prop fallback values deeply reactive if needed ([#11804](https://github.com/sveltejs/svelte/pull/11804))
- fix: robustify initial scroll value detection when scroll is smooth ([#11802](https://github.com/sveltejs/svelte/pull/11802))
## 5.0.0-next.143 ## 5.0.0-next.143
### 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.143", "version": "5.0.0-next.144",
"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.143'; export const VERSION = '5.0.0-next.144';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save