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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.105
### 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.105", "version": "5.0.0-next.106",
"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.105'; export const VERSION = '5.0.0-next.106';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save