Version Packages (#14052)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14084/head svelte@5.1.7
github-actions[bot] 5 days ago committed by GitHub
parent 37049b4171
commit 3b38bc2a77
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure each block inert items are disposed of if the each block is also inert

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow `warningFilter` option for `compileModule`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure onMount correctly fires when new expressions are used

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: wrap `:id`, `:where``:not` and `:has` with `:global` during migration

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure custom element attribute/prop changes are in their own context

@ -1,5 +1,19 @@
# svelte
## 5.1.7
### Patch Changes
- fix: ensure each block inert items are disposed of if the each block is also inert ([#13930](https://github.com/sveltejs/svelte/pull/13930))
- fix: allow `warningFilter` option for `compileModule` ([#14066](https://github.com/sveltejs/svelte/pull/14066))
- fix: ensure onMount correctly fires when new expressions are used ([#14049](https://github.com/sveltejs/svelte/pull/14049))
- fix: wrap `:id`, `:where``:not` and `:has` with `:global` during migration ([#13850](https://github.com/sveltejs/svelte/pull/13850))
- fix: ensure custom element attribute/prop changes are in their own context ([#14016](https://github.com/sveltejs/svelte/pull/14016))
## 5.1.6
### Patch Changes

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

Loading…
Cancel
Save