Version Packages (#17585)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17599/head svelte@5.49.1
github-actions[bot] 6 months ago committed by GitHub
parent 8933653fbe
commit 92e6721c03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: merge consecutive large text nodes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: only create async functions in SSR output when necessary

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly separate multiline html blocks from each other in `print()`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent unhandled exceptions arising from dangling promises in <script>

@ -1,5 +1,17 @@
# svelte
## 5.49.1
### Patch Changes
- fix: merge consecutive large text nodes ([#17587](https://github.com/sveltejs/svelte/pull/17587))
- fix: only create async functions in SSR output when necessary ([#17593](https://github.com/sveltejs/svelte/pull/17593))
- fix: properly separate multiline html blocks from each other in `print()` ([#17319](https://github.com/sveltejs/svelte/pull/17319))
- fix: prevent unhandled exceptions arising from dangling promises in <script> ([#17591](https://github.com/sveltejs/svelte/pull/17591))
## 5.49.0
### Minor Changes

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

Loading…
Cancel
Save