Version Packages

changeset-release/main
github-actions[bot] 10 hours ago
parent d4c5a91735
commit bb589414c6

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: don't rebase just-created batches

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: flush eager effects in production

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: rethrow error of failed iterable after calling `return()`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: account for proxified instance when updating `bind:this`

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure scheduled batch is flushed if not obsolete

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: resolve stale deriveds with latest value

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: allow `@debug` tags to reference awaited variables

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: re-run fallback props if dependencies update

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ignore comments when reading CSS values

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: wrap `Promise.all` in `save` during SSR

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ignore false-positive errors of `$inspect` dependencies

@ -1,5 +1,31 @@
# svelte
## 5.55.6
### Patch Changes
- fix: don't rebase just-created batches ([#18117](https://github.com/sveltejs/svelte/pull/18117))
- fix: flush eager effects in production ([#18107](https://github.com/sveltejs/svelte/pull/18107))
- fix: rethrow error of failed iterable after calling `return()` ([#18169](https://github.com/sveltejs/svelte/pull/18169))
- fix: account for proxified instance when updating `bind:this` ([#18147](https://github.com/sveltejs/svelte/pull/18147))
- fix: ensure scheduled batch is flushed if not obsolete ([#18131](https://github.com/sveltejs/svelte/pull/18131))
- fix: resolve stale deriveds with latest value ([#18167](https://github.com/sveltejs/svelte/pull/18167))
- fix: allow `@debug` tags to reference awaited variables ([#18138](https://github.com/sveltejs/svelte/pull/18138))
- fix: re-run fallback props if dependencies update ([#18146](https://github.com/sveltejs/svelte/pull/18146))
- fix: ignore comments when reading CSS values ([#18153](https://github.com/sveltejs/svelte/pull/18153))
- fix: wrap `Promise.all` in `save` during SSR ([#18178](https://github.com/sveltejs/svelte/pull/18178))
- fix: ignore false-positive errors of `$inspect` dependencies ([#18106](https://github.com/sveltejs/svelte/pull/18106))
## 5.55.5
### Patch Changes

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

Loading…
Cancel
Save