Version Packages

pull/17286/head
github-actions[bot] 4 days ago
parent 794b8f3dfd
commit 3561a6585c

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: move DOM-related effect properties to `effect.nodes`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow `$props.id()` to occur after an `await`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: keep reactions up to date even when read outside of effect

@ -1,5 +1,15 @@
# svelte
## 5.45.4
### Patch Changes
- chore: move DOM-related effect properties to `effect.nodes` ([#17293](https://github.com/sveltejs/svelte/pull/17293))
- fix: allow `$props.id()` to occur after an `await` ([#17285](https://github.com/sveltejs/svelte/pull/17285))
- fix: keep reactions up to date even when read outside of effect ([#17295](https://github.com/sveltejs/svelte/pull/17295))
## 5.45.3
### Patch Changes

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

Loading…
Cancel
Save