Version Packages (#16384)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't log `await_reactivity_loss` warning when signal is read in `untrack`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: better handle $inspect on array mutations

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: leave proxied array `length` untouched when deleting properties

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: update `$effect.pending()` immediately after a batch is removed

@ -1,5 +1,17 @@
# svelte
## 5.36.3
### Patch Changes
- fix: don't log `await_reactivity_loss` warning when signal is read in `untrack` ([#16385](https://github.com/sveltejs/svelte/pull/16385))
- fix: better handle $inspect on array mutations ([#16389](https://github.com/sveltejs/svelte/pull/16389))
- fix: leave proxied array `length` untouched when deleting properties ([#16389](https://github.com/sveltejs/svelte/pull/16389))
- fix: update `$effect.pending()` immediately after a batch is removed ([#16382](https://github.com/sveltejs/svelte/pull/16382))
## 5.36.2
### Patch Changes

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

Loading…
Cancel
Save