Merge branch 'main' into svelte-custom-renderer

svelte-custom-renderer-single-type-argument
Paolo Ricciuti 5 months ago committed by GitHub
commit 039c0284d8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: ensure proper HMR updates for dynamic components

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: correctly calculate `@const` blockers

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: freeze deriveds once their containing effects are destroyed

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: defer error boundary rendering in forks

@ -1,5 +0,0 @@
---
'svelte': patch
---
fix: avoid false positives for reactivity loss warning

@ -1,5 +1,19 @@
# svelte # svelte
## 5.55.3
### Patch Changes
- fix: ensure proper HMR updates for dynamic components ([#18079](https://github.com/sveltejs/svelte/pull/18079))
- fix: correctly calculate `@const` blockers ([#18039](https://github.com/sveltejs/svelte/pull/18039))
- fix: freeze deriveds once their containing effects are destroyed ([#17921](https://github.com/sveltejs/svelte/pull/17921))
- fix: defer error boundary rendering in forks ([#18076](https://github.com/sveltejs/svelte/pull/18076))
- fix: avoid false positives for reactivity loss warning ([#18088](https://github.com/sveltejs/svelte/pull/18088))
## 5.55.2 ## 5.55.2
### Patch Changes ### Patch 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.55.2", "version": "5.55.3",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

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

Loading…
Cancel
Save