Version Packages (#14652)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/14663/head svelte@5.10.1
github-actions[bot] 1 month ago committed by GitHub
parent a26b6d80ef
commit cb5734ae66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure snippet hoisting works in the correct scope

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure $state.snapshot clones holey arrays correctly

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: restore input binding selection position

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: transform everything that is not a selector inside `:global`

@ -1,5 +0,0 @@
---
'svelte': patch
---
Overwrite Spring.#last_value when using .set() with {instant: true}

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't emit assignment warnings for bindings

@ -1,5 +1,21 @@
# svelte # svelte
## 5.10.1
### Patch Changes
- fix: ensure snippet hoisting works in the correct scope ([#14642](https://github.com/sveltejs/svelte/pull/14642))
- fix: ensure $state.snapshot clones holey arrays correctly ([#14657](https://github.com/sveltejs/svelte/pull/14657))
- fix: restore input binding selection position ([#14649](https://github.com/sveltejs/svelte/pull/14649))
- fix: transform everything that is not a selector inside `:global` ([#14577](https://github.com/sveltejs/svelte/pull/14577))
- Overwrite Spring.#last_value when using .set() with {instant: true} ([#14656](https://github.com/sveltejs/svelte/pull/14656))
- fix: don't emit assignment warnings for bindings ([#14651](https://github.com/sveltejs/svelte/pull/14651))
## 5.10.0 ## 5.10.0
### Minor Changes ### Minor Changes

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

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.10.0'; export const VERSION = '5.10.1';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save