Version Packages (#15453)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: memoize `clsx` calls

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: respect `svelte-ignore hydration_attribute_changed` on elements with spread attributes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always use `setAttribute` when setting `style`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: make `style:` directive and CSS handling more robust

@ -1,5 +1,17 @@
# svelte
## 5.22.5
### Patch Changes
- fix: memoize `clsx` calls ([#15456](https://github.com/sveltejs/svelte/pull/15456))
- fix: respect `svelte-ignore hydration_attribute_changed` on elements with spread attributes ([#15443](https://github.com/sveltejs/svelte/pull/15443))
- fix: always use `setAttribute` when setting `style` ([#15323](https://github.com/sveltejs/svelte/pull/15323))
- fix: make `style:` directive and CSS handling more robust ([#15418](https://github.com/sveltejs/svelte/pull/15418))
## 5.22.4
### Patch Changes

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

Loading…
Cancel
Save