Version Packages

github-actions[bot] 18 hours ago
parent e6dd871819
commit 6a49d9ead4

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure non-matching elements are scoped for `:not(...)` selector

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure video elements autoplay in safari

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure trailing multiline comments on props produce correct code (#14143#issuecomment-2455702689)

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly infer `<a>` tag namespace

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: check options namespace for top level `svelte:element`s

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure migrate keeps inline/trailing comments in $props type definition

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure SvelteMap and SvelteSet work with generators in dev

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: only output the key for each_key_duplicate

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent migrated snippet from shadow snippet prop

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: pass along `anchor` in legacy class wrappers

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: recognize all custom element prop definitions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: migrate multiple declarations with only some exported correctly

@ -1,5 +1,33 @@
# svelte
## 5.1.10
### Patch Changes
- fix: ensure non-matching elements are scoped for `:not(...)` selector ([#13999](https://github.com/sveltejs/svelte/pull/13999))
- fix: ensure video elements autoplay in safari ([#14095](https://github.com/sveltejs/svelte/pull/14095))
- fix: ensure trailing multiline comments on props produce correct code (#14143#issuecomment-2455702689) ([#14143](https://github.com/sveltejs/svelte/pull/14143))
- fix: correctly infer `<a>` tag namespace ([#14134](https://github.com/sveltejs/svelte/pull/14134))
- fix: check options namespace for top level `svelte:element`s ([#14101](https://github.com/sveltejs/svelte/pull/14101))
- fix: ensure migrate keeps inline/trailing comments in $props type definition ([#14143](https://github.com/sveltejs/svelte/pull/14143))
- fix: ensure SvelteMap and SvelteSet work with generators in dev ([#14103](https://github.com/sveltejs/svelte/pull/14103))
- fix: only output the key for each_key_duplicate ([#14147](https://github.com/sveltejs/svelte/pull/14147))
- fix: prevent migrated snippet from shadow snippet prop ([#14127](https://github.com/sveltejs/svelte/pull/14127))
- fix: pass along `anchor` in legacy class wrappers ([#14100](https://github.com/sveltejs/svelte/pull/14100))
- fix: recognize all custom element prop definitions ([#14084](https://github.com/sveltejs/svelte/pull/14084))
- fix: migrate multiple declarations with only some exported correctly ([#14126](https://github.com/sveltejs/svelte/pull/14126))
## 5.1.9
### Patch Changes

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

Loading…
Cancel
Save