Version Packages (#17204)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
main svelte@5.43.14
github-actions[bot] 21 hours ago committed by GitHub
parent 91486fa807
commit 1aafbc47ff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly migrate named self closing slots

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: take async blockers into account for bindings/transitions/animations/attachments

@ -1,5 +1,15 @@
# svelte
## 5.43.14
### Patch Changes
- fix: correctly migrate named self closing slots ([#17199](https://github.com/sveltejs/svelte/pull/17199))
- fix: error at compile time instead of at runtime on await expressions inside bindings/transitions/animations/attachments ([#17198](https://github.com/sveltejs/svelte/pull/17198))
- fix: take async blockers into account for bindings/transitions/animations/attachments ([#17198](https://github.com/sveltejs/svelte/pull/17198))
## 5.43.13
### Patch Changes

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

Loading…
Cancel
Save