Version Packages (#14362)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14365/head svelte@5.2.4
github-actions[bot] 1 month ago committed by GitHub
parent 747d40833b
commit 53cc60085e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure internal cloning can work circular values

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly update dynamic member expressions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure is_pure takes into account $effect.tracking()

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: coerce value to number when hydrating range/number input with changed value

@ -1,5 +1,17 @@
# svelte
## 5.2.4
### Patch Changes
- fix: ensure internal cloning can work circular values ([#14347](https://github.com/sveltejs/svelte/pull/14347))
- fix: correctly update dynamic member expressions ([#14359](https://github.com/sveltejs/svelte/pull/14359))
- fix: ensure is_pure takes into account $effect.tracking() ([#14333](https://github.com/sveltejs/svelte/pull/14333))
- fix: coerce value to number when hydrating range/number input with changed value ([#14349](https://github.com/sveltejs/svelte/pull/14349))
## 5.2.3
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.2.3",
"version": "5.2.4",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.2.3';
export const VERSION = '5.2.4';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save