Version Packages (#13920)

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

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: rethrow errors from await block if no catch block exists

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure SVG element attributes have case preserved

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure bind:group works as intended with proxied state objects

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure value is correctly set to zero on the progress element

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: skip comment nodes in snippet validation logic

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: typo in `Action` types

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove metadata from legacy AST

@ -1,5 +1,23 @@
# svelte
## 5.1.3
### Patch Changes
- fix: rethrow errors from await block if no catch block exists ([#13819](https://github.com/sveltejs/svelte/pull/13819))
- fix: ensure SVG element attributes have case preserved ([#13935](https://github.com/sveltejs/svelte/pull/13935))
- fix: ensure bind:group works as intended with proxied state objects ([#13939](https://github.com/sveltejs/svelte/pull/13939))
- fix: ensure value is correctly set to zero on the progress element ([#13924](https://github.com/sveltejs/svelte/pull/13924))
- fix: skip comment nodes in snippet validation logic ([#13936](https://github.com/sveltejs/svelte/pull/13936))
- fix: typo in `Action` types ([#13874](https://github.com/sveltejs/svelte/pull/13874))
- fix: remove metadata from legacy AST ([#13927](https://github.com/sveltejs/svelte/pull/13927))
## 5.1.2
### Patch Changes

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

Loading…
Cancel
Save