Version Packages ()

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/15226/head svelte@5.19.8
github-actions[bot] 3 months ago committed by GitHub
parent 3b7066f5c6
commit b0c4fa5246
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly set `value` property of custom elements

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: ensure custom element updates don't run in hydration mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure tracking returns true, even if in unowned

@ -1,5 +1,15 @@
# svelte
## 5.19.8
### Patch Changes
- fix: properly set `value` property of custom elements ([#15206](https://github.com/sveltejs/svelte/pull/15206))
- fix: ensure custom element updates don't run in hydration mode ([#15217](https://github.com/sveltejs/svelte/pull/15217))
- fix: ensure tracking returns true, even if in unowned ([#15214](https://github.com/sveltejs/svelte/pull/15214))
## 5.19.7
### Patch Changes

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

Loading…
Cancel
Save