Skip to content

Commit d2b3470

Browse files
Version Packages (#17854)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## svelte@5.53.8 ### Patch Changes - fix: `{@html}` no longer duplicates content inside `contenteditable` elements ([#17853](#17853)) - fix: don't access inert block effects ([#17882](#17882)) - fix: handle asnyc updates within pending boundary ([#17873](#17873)) - perf: avoid re-traversing the effect tree after `$:` assignments ([#17848](#17848)) - chore: simplify scheduling logic ([#17805](#17805)) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ef95f34 commit d2b3470

File tree

8 files changed

+16
-27
lines changed

8 files changed

+16
-27
lines changed

.changeset/html-contenteditable-fix.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/light-jokes-draw.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/nasty-friends-crash.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/ninety-kings-attend.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/slick-bars-train.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/svelte/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# svelte
22

3+
## 5.53.8
4+
5+
### Patch Changes
6+
7+
- fix: `{@html}` no longer duplicates content inside `contenteditable` elements ([#17853](https://github.com/sveltejs/svelte/pull/17853))
8+
9+
- fix: don't access inert block effects ([#17882](https://github.com/sveltejs/svelte/pull/17882))
10+
11+
- fix: handle asnyc updates within pending boundary ([#17873](https://github.com/sveltejs/svelte/pull/17873))
12+
13+
- perf: avoid re-traversing the effect tree after `$:` assignments ([#17848](https://github.com/sveltejs/svelte/pull/17848))
14+
15+
- chore: simplify scheduling logic ([#17805](https://github.com/sveltejs/svelte/pull/17805))
16+
317
## 5.53.7
418

519
### Patch Changes

packages/svelte/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "svelte",
33
"description": "Cybernetically enhanced web apps",
44
"license": "MIT",
5-
"version": "5.53.7",
5+
"version": "5.53.8",
66
"type": "module",
77
"types": "./types/index.d.ts",
88
"engines": {

packages/svelte/src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
* The current version, as set in package.json.
55
* @type {string}
66
*/
7-
export const VERSION = '5.53.7';
7+
export const VERSION = '5.53.8';
88
export const PUBLIC_VERSION = '5';

0 commit comments

Comments
 (0)