Version Packages (#14287)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14302/head svelte@5.1.17
github-actions[bot] 1 month ago committed by GitHub
parent 320ebd24d8
commit 6a7146bee7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for `:has(...)` as part of `:root`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent nested pseudo class from being marked as unused

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: use strict equality for key block comparisons in runes mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: bump `is-reference` dependency to fix `import.meta` bug

@ -1,5 +1,17 @@
# svelte
## 5.1.17
### Patch Changes
- fix: account for `:has(...)` as part of `:root` ([#14229](https://github.com/sveltejs/svelte/pull/14229))
- fix: prevent nested pseudo class from being marked as unused ([#14229](https://github.com/sveltejs/svelte/pull/14229))
- fix: use strict equality for key block comparisons in runes mode ([#14285](https://github.com/sveltejs/svelte/pull/14285))
- fix: bump `is-reference` dependency to fix `import.meta` bug ([#14286](https://github.com/sveltejs/svelte/pull/14286))
## 5.1.16
### Patch Changes

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

Loading…
Cancel
Save