Version Packages (#14304)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14328/head svelte@5.2.1
github-actions[bot] 4 months ago committed by GitHub
parent 94471ca38e
commit 95ab85fad7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: mark pseudo classes nested inside `:not` as used

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: disallow invalid attributes for `<svelte:window>` and `<svelte:document>`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure props passed to components via mount are updateable

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: mark subtree dynamic for img with loading attribute

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid relying on Node specifics within compiler

@ -1,5 +1,19 @@
# svelte
## 5.2.1
### Patch Changes
- fix: mark pseudo classes nested inside `:not` as used ([#14303](https://github.com/sveltejs/svelte/pull/14303))
- fix: disallow invalid attributes for `<svelte:window>` and `<svelte:document>` ([#14228](https://github.com/sveltejs/svelte/pull/14228))
- fix: ensure props passed to components via mount are updateable ([#14210](https://github.com/sveltejs/svelte/pull/14210))
- fix: mark subtree dynamic for img with loading attribute ([#14317](https://github.com/sveltejs/svelte/pull/14317))
- fix: avoid relying on Node specifics within compiler ([#14314](https://github.com/sveltejs/svelte/pull/14314))
## 5.2.0
### Minor Changes

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

Loading…
Cancel
Save