Version Packages (#13888)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13906/head svelte@5.1.2
github-actions[bot] 2 weeks ago committed by GitHub
parent b63fde3b75
commit 1ee2ac4d05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: improve consistency of transitions

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: enable bound store props in runes mode components

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure each block references to imports are handled correctly

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure SvelteMap reactivity persists through deriveds

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure snippets after empty text correctly hydrate

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent migration script from adding `props.` to the `export let` identifier

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent var name clashing for delegated events without params

@ -1,5 +1,23 @@
# svelte
## 5.1.2
### Patch Changes
- fix: improve consistency of transitions ([#13895](https://github.com/sveltejs/svelte/pull/13895))
- fix: enable bound store props in runes mode components ([#13887](https://github.com/sveltejs/svelte/pull/13887))
- fix: ensure each block references to imports are handled correctly ([#13892](https://github.com/sveltejs/svelte/pull/13892))
- fix: ensure SvelteMap reactivity persists through deriveds ([#13877](https://github.com/sveltejs/svelte/pull/13877))
- fix: ensure snippets after empty text correctly hydrate ([#13870](https://github.com/sveltejs/svelte/pull/13870))
- fix: prevent migration script from adding `props.` to the `export let` identifier ([#13899](https://github.com/sveltejs/svelte/pull/13899))
- fix: prevent var name clashing for delegated events without params ([#13896](https://github.com/sveltejs/svelte/pull/13896))
## 5.1.1
### Patch Changes

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

Loading…
Cancel
Save