Version Packages (#17168)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17177/head svelte@5.43.9
github-actions[bot] 2 days ago committed by GitHub
parent 99e670f632
commit b94289d23b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly handle functions when determining async blockers

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: keep deriveds reactive after their original parent effect was destroyed

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure eager effects don't break reactions chain

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure async `@const` in boundary hydrates correctly

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: take blockers into account when creating `#await` blocks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: parallelize async `@const`s in the template

@ -1,5 +1,21 @@
# svelte
## 5.43.9
### Patch Changes
- fix: correctly handle functions when determining async blockers ([#17137](https://github.com/sveltejs/svelte/pull/17137))
- fix: keep deriveds reactive after their original parent effect was destroyed ([#17171](https://github.com/sveltejs/svelte/pull/17171))
- fix: ensure eager effects don't break reactions chain ([#17138](https://github.com/sveltejs/svelte/pull/17138))
- fix: ensure async `@const` in boundary hydrates correctly ([#17165](https://github.com/sveltejs/svelte/pull/17165))
- fix: take blockers into account when creating `#await` blocks ([#17137](https://github.com/sveltejs/svelte/pull/17137))
- fix: parallelize async `@const`s in the template ([#17165](https://github.com/sveltejs/svelte/pull/17165))
## 5.43.8
### Patch Changes

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

Loading…
Cancel
Save