Version Packages (next) (#11384)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11392/head svelte@5.0.0-next.118
github-actions[bot] 4 months ago committed by GitHub
parent e01776401d
commit e7d1e4a8bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -169,6 +169,7 @@
"honest-dragons-turn", "honest-dragons-turn",
"honest-icons-change", "honest-icons-change",
"honest-nails-share", "honest-nails-share",
"honest-pans-kick",
"hot-jobs-tap", "hot-jobs-tap",
"hungry-boxes-relate", "hungry-boxes-relate",
"hungry-dots-fry", "hungry-dots-fry",
@ -226,6 +227,7 @@
"lucky-colts-remember", "lucky-colts-remember",
"lucky-geckos-swim", "lucky-geckos-swim",
"lucky-schools-hang", "lucky-schools-hang",
"lucky-teachers-exist",
"lucky-toes-begin", "lucky-toes-begin",
"many-rockets-give", "many-rockets-give",
"many-trees-fix", "many-trees-fix",
@ -272,6 +274,7 @@
"olive-socks-kick", "olive-socks-kick",
"orange-crews-rescue", "orange-crews-rescue",
"orange-dingos-poke", "orange-dingos-poke",
"orange-masks-exercise",
"orange-yaks-protect", "orange-yaks-protect",
"orange-zoos-heal", "orange-zoos-heal",
"pink-bikes-agree", "pink-bikes-agree",

@ -1,5 +1,15 @@
# svelte # svelte
## 5.0.0-next.118
### Patch Changes
- fix: ensure no data loss occurs when using reactive Set methods ([#11385](https://github.com/sveltejs/svelte/pull/11385))
- fix: handle reassignment of `$props` and `$restProps` ([#11348](https://github.com/sveltejs/svelte/pull/11348))
- fix: disallow sequence expressions in `@const` tags ([#11357](https://github.com/sveltejs/svelte/pull/11357))
## 5.0.0-next.117 ## 5.0.0-next.117
### 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.117", "version": "5.0.0-next.118",
"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.117'; export const VERSION = '5.0.0-next.118';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save