Version Packages (#16909)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
fix-16547 svelte@5.39.10
github-actions[bot] 2 days ago committed by GitHub
parent 78481862fb
commit 06bd6a8fbd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: hydrate each blocks inside element correctly

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow await in if block consequent and alternate

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't replace rest props with `$$props` for excluded props

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly transform `$derived` private fields on server

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add `UNKNOWN` evaluation value before breaking for `binding.initial===SnippetBlock`

@ -1,5 +1,19 @@
# svelte
## 5.39.10
### Patch Changes
- fix: hydrate each blocks inside element correctly ([#16908](https://github.com/sveltejs/svelte/pull/16908))
- fix: allow await in if block consequent and alternate ([#16890](https://github.com/sveltejs/svelte/pull/16890))
- fix: don't replace rest props with `$$props` for excluded props ([#16898](https://github.com/sveltejs/svelte/pull/16898))
- fix: correctly transform `$derived` private fields on server ([#16894](https://github.com/sveltejs/svelte/pull/16894))
- fix: add `UNKNOWN` evaluation value before breaking for `binding.initial===SnippetBlock` ([#16910](https://github.com/sveltejs/svelte/pull/16910))
## 5.39.9
### Patch Changes

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

Loading…
Cancel
Save