Version Packages

pull/16529/head
github-actions[bot] 1 month ago
parent c04975d3db
commit 959e88973b

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: double event processing in firefox due to event object being garbage collected

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add bindable dimension attributes types to SVG and MathML elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly differentiate static fields before emitting `duplicate_class_field`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent last_propagated_event from being DCE'd

@ -1,5 +1,17 @@
# svelte
## 5.37.2
### Patch Changes
- fix: double event processing in firefox due to event object being garbage collected ([#16527](https://github.com/sveltejs/svelte/pull/16527))
- fix: add bindable dimension attributes types to SVG and MathML elements ([#16525](https://github.com/sveltejs/svelte/pull/16525))
- fix: correctly differentiate static fields before emitting `duplicate_class_field` ([#16526](https://github.com/sveltejs/svelte/pull/16526))
- fix: prevent last_propagated_event from being DCE'd ([#16538](https://github.com/sveltejs/svelte/pull/16538))
## 5.37.1
### Patch Changes

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

Loading…
Cancel
Save