Version Packages (#16445)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't reexecute derived with no dependencies on teardown

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: disallow `export { foo as default }` in `<script module>`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: move ownership validation into async component body

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow async destructured deriveds

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: move store setup/cleanup outside of async component body

@ -1,5 +1,19 @@
# svelte
## 5.36.9
### Patch Changes
- fix: don't reexecute derived with no dependencies on teardown ([#16438](https://github.com/sveltejs/svelte/pull/16438))
- fix: disallow `export { foo as default }` in `<script module>` ([#16447](https://github.com/sveltejs/svelte/pull/16447))
- fix: move ownership validation into async component body ([#16449](https://github.com/sveltejs/svelte/pull/16449))
- fix: allow async destructured deriveds ([#16444](https://github.com/sveltejs/svelte/pull/16444))
- fix: move store setup/cleanup outside of async component body ([#16443](https://github.com/sveltejs/svelte/pull/16443))
## 5.36.8
### Patch Changes

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

Loading…
Cancel
Save