Version Packages ()

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/15161/head svelte@5.19.6
github-actions[bot] 3 months ago committed by GitHub
parent 2be3823e3a
commit 04addca428
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not prune selectors like `:global(.foo):has(.scoped)`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't error on slot prop inside block inside other component

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure reactions are correctly attached for unowned deriveds

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: silence a11y attribute warnings when spread attributes present

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent false-positive ownership validations due to hot reload

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: widen ownership when calling setContext

@ -1,5 +1,21 @@
# svelte
## 5.19.6
### Patch Changes
- fix: do not prune selectors like `:global(.foo):has(.scoped)` ([#15140](https://github.com/sveltejs/svelte/pull/15140))
- fix: don't error on slot prop inside block inside other component ([#15148](https://github.com/sveltejs/svelte/pull/15148))
- fix: ensure reactions are correctly attached for unowned deriveds ([#15158](https://github.com/sveltejs/svelte/pull/15158))
- fix: silence a11y attribute warnings when spread attributes present ([#15150](https://github.com/sveltejs/svelte/pull/15150))
- fix: prevent false-positive ownership validations due to hot reload ([#15154](https://github.com/sveltejs/svelte/pull/15154))
- fix: widen ownership when calling setContext ([#15153](https://github.com/sveltejs/svelte/pull/15153))
## 5.19.5
### Patch Changes

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

Loading…
Cancel
Save