Version Packages ()

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14232/head svelte@5.1.13
github-actions[bot] 5 months ago committed by GitHub
parent 1060bea6e1
commit 4bcd01b994
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add migration task when there's a variable named that would conflict with a rune

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: consider `valueOf` in the reactive methods of `SvelteDate`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle sibling combinators within `:has`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: consider variables with synthetic store sub as state

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: read index as a source in legacy keyed each block

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for shadowing children slot during migration

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure explicit nesting selector is always applied

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add `lang="ts"` attribute during migration if needed

@ -1,5 +1,25 @@
# svelte
## 5.1.13
### Patch Changes
- fix: add migration task when there's a variable named that would conflict with a rune ([#14216](https://github.com/sveltejs/svelte/pull/14216))
- fix: consider `valueOf` in the reactive methods of `SvelteDate` ([#14227](https://github.com/sveltejs/svelte/pull/14227))
- fix: handle sibling combinators within `:has` ([#14213](https://github.com/sveltejs/svelte/pull/14213))
- fix: consider variables with synthetic store sub as state ([#14195](https://github.com/sveltejs/svelte/pull/14195))
- fix: read index as a source in legacy keyed each block ([#14208](https://github.com/sveltejs/svelte/pull/14208))
- fix: account for shadowing children slot during migration ([#14224](https://github.com/sveltejs/svelte/pull/14224))
- fix: ensure explicit nesting selector is always applied ([#14193](https://github.com/sveltejs/svelte/pull/14193))
- fix: add `lang="ts"` attribute during migration if needed ([#14222](https://github.com/sveltejs/svelte/pull/14222))
## 5.1.12
### Patch Changes

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

Loading…
Cancel
Save