Version Packages (#16920)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16937/head svelte@5.39.12
github-actions[bot] 1 month ago committed by GitHub
parent 5d9b4c66ca
commit 420468a041
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: better input cursor restoration for `bind:value`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: track the user's getter of `bind:this`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: generate correct SSR code for the case where `pending` is an attribute

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: generate correct code for `each` blocks with async body

@ -1,5 +1,17 @@
# svelte
## 5.39.12
### Patch Changes
- fix: better input cursor restoration for `bind:value` ([#16925](https://github.com/sveltejs/svelte/pull/16925))
- fix: track the user's getter of `bind:this` ([#16916](https://github.com/sveltejs/svelte/pull/16916))
- fix: generate correct SSR code for the case where `pending` is an attribute ([#16919](https://github.com/sveltejs/svelte/pull/16919))
- fix: generate correct code for `each` blocks with async body ([#16923](https://github.com/sveltejs/svelte/pull/16923))
## 5.39.11
### Patch Changes

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

Loading…
Cancel
Save