Version Packages (#17517)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17530/head svelte@5.48.1
github-actions[bot] 5 days ago committed by GitHub
parent 0f68a00c3c
commit 9108404450
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: hoist snippets above const in same block

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly hydrate await in `{@html}`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: batch resolution of async work

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for empty statements when visiting in transform async

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid async overhead for already settled promises

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: better code generation for const tags with async dependencies

@ -1,5 +1,21 @@
# svelte
## 5.48.1
### Patch Changes
- fix: hoist snippets above const in same block ([#17516](https://github.com/sveltejs/svelte/pull/17516))
- fix: properly hydrate await in `{@html}` ([#17528](https://github.com/sveltejs/svelte/pull/17528))
- fix: batch resolution of async work ([#17511](https://github.com/sveltejs/svelte/pull/17511))
- fix: account for empty statements when visiting in transform async ([#17524](https://github.com/sveltejs/svelte/pull/17524))
- fix: avoid async overhead for already settled promises ([#17461](https://github.com/sveltejs/svelte/pull/17461))
- fix: better code generation for const tags with async dependencies ([#17518](https://github.com/sveltejs/svelte/pull/17518))
## 5.48.0
### Minor Changes

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

Loading…
Cancel
Save