Version Packages (#14943)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14953/head svelte@5.17.0
github-actions[bot] 3 days ago committed by GitHub
parent d41801c75f
commit 9b71eea35d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: handle default values in object destructuring within "each" blocks when using characters like "}" and "]"

@ -1,5 +0,0 @@
---
'svelte': minor
---
feat: allow non-numeric values to be tweened by snapping immediately to new value

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for min-width/height in `slide` transition

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent long delays causing erratic spring behaviour

@ -1,5 +0,0 @@
---
'svelte': patch
---
feat: warn on using `slide` transition with table elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
chore: improve signal performance by reducing duplicate deps

@ -1,5 +1,23 @@
# svelte
## 5.17.0
### Minor Changes
- feat: allow non-numeric values to be tweened by snapping immediately to new value ([#14941](https://github.com/sveltejs/svelte/pull/14941))
### Patch Changes
- fix: handle default values in object destructuring within "each" blocks when using characters like "}" and "]" ([#14554](https://github.com/sveltejs/svelte/pull/14554))
- fix: account for min-width/height in `slide` transition ([#14942](https://github.com/sveltejs/svelte/pull/14942))
- fix: prevent long delays causing erratic spring behaviour ([#14940](https://github.com/sveltejs/svelte/pull/14940))
- feat: warn on using `slide` transition with table elements ([#14936](https://github.com/sveltejs/svelte/pull/14936))
- chore: improve signal performance by reducing duplicate deps ([#14945](https://github.com/sveltejs/svelte/pull/14945))
## 5.16.6
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.16.6",
"version": "5.17.0",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -4,5 +4,5 @@
* The current version, as set in package.json.
* @type {string}
*/
export const VERSION = '5.16.6';
export const VERSION = '5.17.0';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save