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] 1 day 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 # 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 ## 5.43.13
### 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.43.13", "version": "5.43.14",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

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

Loading…
Cancel
Save