Version Packages (#15271)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/15278/head svelte@5.20.0
github-actions[bot] 7 months ago committed by GitHub
parent f747c412f4
commit 23ecc364da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: take private and public into account for `constant_assignment` of derived state

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: value/checked not correctly set using spread

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: SSR-safe ID generation with `$props.id()`

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: tweak effect self invalidation logic, run transition dispatches without reactive context

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: use `importNode` to clone templates for Firefox

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: recurse into `$derived` for ownership validation

@ -1,5 +1,23 @@
# svelte
## 5.20.0
### Minor Changes
- feat: SSR-safe ID generation with `$props.id()` ([#15185](https://github.com/sveltejs/svelte/pull/15185))
### Patch Changes
- fix: take private and public into account for `constant_assignment` of derived state ([#15276](https://github.com/sveltejs/svelte/pull/15276))
- fix: value/checked not correctly set using spread ([#15239](https://github.com/sveltejs/svelte/pull/15239))
- chore: tweak effect self invalidation logic, run transition dispatches without reactive context ([#15275](https://github.com/sveltejs/svelte/pull/15275))
- fix: use `importNode` to clone templates for Firefox ([#15272](https://github.com/sveltejs/svelte/pull/15272))
- fix: recurse into `$derived` for ownership validation ([#15166](https://github.com/sveltejs/svelte/pull/15166))
## 5.19.10
### Patch Changes

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

Loading…
Cancel
Save