Version Packages (#15304)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: remove unused `options.uid` in `render`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not warn for `binding_property_non_reactive` if binding is a store in an each

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent writable store value from becoming a proxy when reassigning using $-prefix

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: `muted` reactive without `bind` and select/autofocus attributes working with function calls

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure input elements and elements with `dir` attribute are marked as non-static

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: fire delegated events on target even it was disabled in the meantime

@ -1,5 +1,21 @@
# svelte
## 5.20.2
### Patch Changes
- chore: remove unused `options.uid` in `render` ([#15302](https://github.com/sveltejs/svelte/pull/15302))
- fix: do not warn for `binding_property_non_reactive` if binding is a store in an each ([#15318](https://github.com/sveltejs/svelte/pull/15318))
- fix: prevent writable store value from becoming a proxy when reassigning using $-prefix ([#15283](https://github.com/sveltejs/svelte/pull/15283))
- fix: `muted` reactive without `bind` and select/autofocus attributes working with function calls ([#15326](https://github.com/sveltejs/svelte/pull/15326))
- fix: ensure input elements and elements with `dir` attribute are marked as non-static ([#15259](https://github.com/sveltejs/svelte/pull/15259))
- fix: fire delegated events on target even it was disabled in the meantime ([#15319](https://github.com/sveltejs/svelte/pull/15319))
## 5.20.1
### Patch Changes

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

Loading…
Cancel
Save