Version Packages (#16642)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/16666/head svelte@5.38.3
github-actions[bot] 2 weeks ago committed by GitHub
parent d3cb1482fe
commit e883cd086b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure correct order of template effect values

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow async `{@const}` in more places

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly catch top level await errors

@ -1,5 +0,0 @@
---
'svelte': patch
---
perf: prune effects without dependencies

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: only emit `for_await_track_reactivity_loss` in async mode

@ -1,5 +1,19 @@
# svelte
## 5.38.3
### Patch Changes
- fix: ensure correct order of template effect values ([#16655](https://github.com/sveltejs/svelte/pull/16655))
- fix: allow async `{@const}` in more places ([#16643](https://github.com/sveltejs/svelte/pull/16643))
- fix: properly catch top level await errors ([#16619](https://github.com/sveltejs/svelte/pull/16619))
- perf: prune effects without dependencies ([#16625](https://github.com/sveltejs/svelte/pull/16625))
- fix: only emit `for_await_track_reactivity_loss` in async mode ([#16644](https://github.com/sveltejs/svelte/pull/16644))
## 5.38.2
### Patch Changes

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

Loading…
Cancel
Save