Version Packages (#13757)

* Version Packages

* Update packages/svelte/CHANGELOG.md

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Simon H <5968653+dummdidumm@users.noreply.github.com>
pull/13846/head svelte@5.1.0
github-actions[bot] 2 weeks ago committed by GitHub
parent 44c8889291
commit af4d105cd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: export mount() options as the MountOptions type

@ -1,5 +0,0 @@
---
'svelte': patch
---
feat: allow usage of getContext() within $derived runes

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: properly migrate ts with inferred type comments

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correct property name conversion in custom transitions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure $effect.tracking returns false inside transition functions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: migrate default slots to children snippet

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't print errors on migration errors

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent spread attribute from overriding class directive

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure `:has` selectors followed by other selectors match

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure muted DOM property works correctly in FF

@ -1,5 +0,0 @@
---
"svelte": patch
---
fix: show filename information in `legacy_recursive_reactive_block`

@ -1,5 +1,33 @@
# svelte
## 5.1.0
### Minor Changes
- feat: export mount() options as the MountOptions type ([#13674](https://github.com/sveltejs/svelte/pull/13674))
- feat: allow usage of getContext() within $derived runes ([#13830](https://github.com/sveltejs/svelte/pull/13830))
### Patch Changes
- fix: properly migrate ts with inferred type comments ([#13761](https://github.com/sveltejs/svelte/pull/13761))
- fix: correct property name conversion in custom transitions ([#13820](https://github.com/sveltejs/svelte/pull/13820))
- fix: ensure $effect.tracking returns false inside transition functions ([#13775](https://github.com/sveltejs/svelte/pull/13775))
- fix: migrate default slots to children snippet ([#13760](https://github.com/sveltejs/svelte/pull/13760))
- fix: don't print errors on migration errors ([#13754](https://github.com/sveltejs/svelte/pull/13754))
- fix: prevent spread attribute from overriding class directive ([#13763](https://github.com/sveltejs/svelte/pull/13763))
- fix: ensure `:has` selectors followed by other selectors match ([#13824](https://github.com/sveltejs/svelte/pull/13824))
- fix: ensure muted DOM property works correctly in FF ([#13751](https://github.com/sveltejs/svelte/pull/13751))
- fix: show filename information in `legacy_recursive_reactive_block` ([#13764](https://github.com/sveltejs/svelte/pull/13764))
## 5.0.5
### Patch Changes

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

Loading…
Cancel
Save