Version Packages (#17410)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
pull/17458/head
github-actions[bot] 8 months ago committed by GitHub
parent 7dbb5b4788
commit 51c7f7152c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't transform references of function declarations in legacy mode

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: notify deriveds of changes to sources inside forks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: always reconnect deriveds in get, when appropriate

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: prevent derives without dependencies from ever re-running

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly update writable deriveds inside forks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: remove `$inspect` calls after await expressions when compiling for production server code

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: clear batch between runs

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: adjust `loc` property of `Program` nodes created from `<script>` elements

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't revert source to UNINITIALIZED state when time travelling

@ -1,5 +1,27 @@
# svelte
## 5.46.2
### Patch Changes
- fix: don't transform references of function declarations in legacy mode ([#17431](https://github.com/sveltejs/svelte/pull/17431))
- fix: notify deriveds of changes to sources inside forks ([#17437](https://github.com/sveltejs/svelte/pull/17437))
- fix: always reconnect deriveds in get, when appropriate ([#17451](https://github.com/sveltejs/svelte/pull/17451))
- fix: prevent derives without dependencies from ever re-running ([`286b40c4526ce9970cb81ddd5e65b93b722fe468`](https://github.com/sveltejs/svelte/commit/286b40c4526ce9970cb81ddd5e65b93b722fe468))
- fix: correctly update writable deriveds inside forks ([#17437](https://github.com/sveltejs/svelte/pull/17437))
- fix: remove `$inspect` calls after await expressions when compiling for production server code ([#17407](https://github.com/sveltejs/svelte/pull/17407))
- fix: clear batch between runs ([#17424](https://github.com/sveltejs/svelte/pull/17424))
- fix: adjust `loc` property of `Program` nodes created from `<script>` elements ([#17428](https://github.com/sveltejs/svelte/pull/17428))
- fix: don't revert source to UNINITIALIZED state when time travelling ([#17409](https://github.com/sveltejs/svelte/pull/17409))
## 5.46.1
### Patch Changes

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

Loading…
Cancel
Save