Version Packages (#17537)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17522/merge svelte@5.48.3
github-actions[bot] 8 months ago committed by GitHub
parent 97684d32a0
commit 9662010a13
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: hydration failing with settled async blocks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add pointer and touch events to a11y_no_static_element_interactions warning

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle false dynamic components in SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid unnecessary block effect re-runs after async work completes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid using dev-mode array.includes wrapper on internal array checks

@ -1,5 +1,19 @@
# svelte
## 5.48.3
### Patch Changes
- fix: hydration failing with settled async blocks ([#17539](https://github.com/sveltejs/svelte/pull/17539))
- fix: add pointer and touch events to a11y_no_static_element_interactions warning ([#17551](https://github.com/sveltejs/svelte/pull/17551))
- fix: handle false dynamic components in SSR ([#17542](https://github.com/sveltejs/svelte/pull/17542))
- fix: avoid unnecessary block effect re-runs after async work completes ([#17535](https://github.com/sveltejs/svelte/pull/17535))
- fix: avoid using dev-mode array.includes wrapper on internal array checks ([#17536](https://github.com/sveltejs/svelte/pull/17536))
## 5.48.2
### Patch Changes

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

Loading…
Cancel
Save