Version Packages (next) (#11192)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11200/head svelte@5.0.0-next.106
github-actions[bot] 1 year ago committed by GitHub
parent 1cc6a32069
commit 9aebae83a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -179,7 +179,9 @@
"large-clouds-carry",
"large-turkeys-deny",
"late-crabs-lay",
"late-grapes-judge",
"late-peaches-mate",
"lazy-knives-happen",
"lazy-masks-sit",
"lazy-months-knock",
"lazy-spiders-think",
@ -252,6 +254,7 @@
"polite-pumpkins-guess",
"polite-ravens-study",
"poor-eggs-enjoy",
"poor-hats-design",
"poor-seahorses-flash",
"popular-ligers-perform",
"popular-mangos-rest",
@ -410,6 +413,7 @@
"unlucky-steaks-warn",
"unlucky-trees-lick",
"violet-pigs-jam",
"weak-drinks-speak",
"weak-terms-destroy",
"wet-games-fly",
"wet-wombats-repeat",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.106
### Patch Changes
- feat: use state proxy ancestry for ownership validation ([#11184](https://github.com/sveltejs/svelte/pull/11184))
- fix: make snippet effects transparent for transitions ([#11195](https://github.com/sveltejs/svelte/pull/11195))
- fix: return ast from `compile` (like Svelte 4 does) ([#11191](https://github.com/sveltejs/svelte/pull/11191))
- fix: ensure bind:this unmount behavior for members is conditional ([#11193](https://github.com/sveltejs/svelte/pull/11193))
## 5.0.0-next.105
### Patch Changes

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

Loading…
Cancel
Save