Version Packages (#14251)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14262/head svelte@5.1.14
github-actions[bot] 1 month ago committed by GitHub
parent 653f4accbd
commit 832499fee8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: migration script messing with attributes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not treat reassigned synthetic binds as state in runes mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for mutations in script module in ownership check

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: consider img with loading attribute not static

@ -1,5 +1,17 @@
# svelte
## 5.1.14
### Patch Changes
- fix: migration script messing with attributes ([#14260](https://github.com/sveltejs/svelte/pull/14260))
- fix: do not treat reassigned synthetic binds as state in runes mode ([#14236](https://github.com/sveltejs/svelte/pull/14236))
- fix: account for mutations in script module in ownership check ([#14253](https://github.com/sveltejs/svelte/pull/14253))
- fix: consider img with loading attribute not static ([#14237](https://github.com/sveltejs/svelte/pull/14237))
## 5.1.13
### Patch Changes

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

Loading…
Cancel
Save