Version Packages ()

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/15533/head svelte@5.23.1
github-actions[bot] 2 weeks ago committed by GitHub
parent e5881eade3
commit 74917ae703
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: invalidate parent effects when child effects update parent dependencies

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly match `:has()` selector during css pruning

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: replace `undefined` with `void 0` to avoid edge case

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow global-like pseudo-selectors refinement

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: don't distribute unused types definitions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add `files` and `group` to HTMLInputAttributes in elements.d.ts

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: throw rune_invalid_arguments_length when $state.raw() is used with more than 1 arg

@ -1,5 +1,23 @@
# svelte
## 5.23.1
### Patch Changes
- fix: invalidate parent effects when child effects update parent dependencies ([#15506](https://github.com/sveltejs/svelte/pull/15506))
- fix: correctly match `:has()` selector during css pruning ([#15277](https://github.com/sveltejs/svelte/pull/15277))
- fix: replace `undefined` with `void 0` to avoid edge case ([#15511](https://github.com/sveltejs/svelte/pull/15511))
- fix: allow global-like pseudo-selectors refinement ([#15313](https://github.com/sveltejs/svelte/pull/15313))
- chore: don't distribute unused types definitions ([#15473](https://github.com/sveltejs/svelte/pull/15473))
- fix: add `files` and `group` to HTMLInputAttributes in elements.d.ts ([#15492](https://github.com/sveltejs/svelte/pull/15492))
- fix: throw rune_invalid_arguments_length when $state.raw() is used with more than 1 arg ([#15516](https://github.com/sveltejs/svelte/pull/15516))
## 5.23.0
### Minor Changes

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

Loading…
Cancel
Save