Version Packages (#13742)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13760/head svelte@5.0.5
github-actions[bot] 11 months ago committed by GitHub
parent a6e416da8c
commit ae8f50fd6a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: mark `:has` selectors with multiple preceding selectors as used

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure event context is reset before invoking callback

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: add more robust check for `Element` prototype

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not comment out unused selectors that are inside an unused selector

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: more accurately detect `$derived` migration opportunities

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: @debug does not work with proxied-state

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: do not add jsdoc if no types found

@ -1,5 +1,23 @@
# svelte
## 5.0.5
### Patch Changes
- fix: mark `:has` selectors with multiple preceding selectors as used ([#13750](https://github.com/sveltejs/svelte/pull/13750))
- fix: ensure event context is reset before invoking callback ([#13737](https://github.com/sveltejs/svelte/pull/13737))
- fix: add more robust check for `Element` prototype ([#13744](https://github.com/sveltejs/svelte/pull/13744))
- fix: do not comment out unused selectors that are inside an unused selector ([#13746](https://github.com/sveltejs/svelte/pull/13746))
- fix: more accurately detect `$derived` migration opportunities ([#13740](https://github.com/sveltejs/svelte/pull/13740))
- fix: @debug does not work with proxied-state ([#13690](https://github.com/sveltejs/svelte/pull/13690))
- fix: do not add jsdoc if no types found ([#13738](https://github.com/sveltejs/svelte/pull/13738))
## 5.0.4
### Patch Changes

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

Loading…
Cancel
Save