Version Packages (#15383)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow double hyphen css selector names

@ -1,6 +0,0 @@
---
'svelte': patch
---
fix: class:directive not working with $$restProps #15386
fix: spread add an useless cssHash on non-scoped element

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: catch error on @const tag in svelte:boundary in DEV mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow for duplicate `var` declarations

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix : bug "$0 is not defined" on svelte:element with a function call on class

@ -1,5 +1,20 @@
# svelte
## 5.20.5
### Patch Changes
- fix: allow double hyphen css selector names ([#15384](https://github.com/sveltejs/svelte/pull/15384))
- fix: class:directive not working with $restProps #15386 ([#15389](https://github.com/sveltejs/svelte/pull/15389))
fix: spread add an useless cssHash on non-scoped element
- fix: catch error on @const tag in svelte:boundary in DEV mode ([#15369](https://github.com/sveltejs/svelte/pull/15369))
- fix: allow for duplicate `var` declarations ([#15382](https://github.com/sveltejs/svelte/pull/15382))
- fix : bug "$0 is not defined" on svelte:element with a function call on class ([#15396](https://github.com/sveltejs/svelte/pull/15396))
## 5.20.4
### Patch Changes

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

Loading…
Cancel
Save