Version Packages (#16877)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16188/merge svelte@5.39.8
github-actions[bot] 2 days ago committed by GitHub
parent fdb01fd966
commit 5c847ff79e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: check boundary `pending` attribute at runtime on server

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: preserve tuple type in `$state.snapshot`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow await in svelte:boundary without pending

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: update `bind:checked` error message to clarify usage with radio inputs

@ -1,5 +1,17 @@
# svelte
## 5.39.8
### Patch Changes
- fix: check boundary `pending` attribute at runtime on server ([#16855](https://github.com/sveltejs/svelte/pull/16855))
- fix: preserve tuple type in `$state.snapshot` ([#16864](https://github.com/sveltejs/svelte/pull/16864))
- fix: allow await in svelte:boundary without pending ([#16857](https://github.com/sveltejs/svelte/pull/16857))
- fix: update `bind:checked` error message to clarify usage with radio inputs ([#16874](https://github.com/sveltejs/svelte/pull/16874))
## 5.39.7
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.39.7",
"version": "5.39.8",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
export const VERSION = '5.39.7';
export const VERSION = '5.39.8';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save