Version Packages (#13863)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13891/head svelte@5.1.1
github-actions[bot] 5 months ago committed by GitHub
parent 7c7fd6518f
commit 041e563466
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: internally wrap store subscribe in untrack

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow binding to const with spread in legacy mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure props internally untracks current_value on sets

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly traverse children when checking matches for `:has`

@ -1,5 +1,17 @@
# svelte
## 5.1.1
### Patch Changes
- fix: internally wrap store subscribe in untrack ([#13858](https://github.com/sveltejs/svelte/pull/13858))
- fix: allow binding to const with spread in legacy mode ([#13849](https://github.com/sveltejs/svelte/pull/13849))
- fix: ensure props internally untracks current_value on sets ([#13859](https://github.com/sveltejs/svelte/pull/13859))
- fix: properly traverse children when checking matches for `:has` ([#13866](https://github.com/sveltejs/svelte/pull/13866))
## 5.1.0
### Minor Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.1.0",
"version": "5.1.1",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.1.0';
export const VERSION = '5.1.1';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save