Skip to content

Commit 5c365e8

Browse files
authored
Merge branch 'main' into unify-pre-effects
2 parents 7cf63fe + 8cfea9f commit 5c365e8

File tree

15 files changed

+172
-424
lines changed

15 files changed

+172
-424
lines changed

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@
163163
"loud-cheetahs-flow",
164164
"loud-ravens-drop",
165165
"lovely-carpets-lick",
166+
"lovely-houses-own",
166167
"lovely-items-turn",
167168
"lovely-rules-eat",
168169
"lucky-schools-hang",
@@ -225,6 +226,7 @@
225226
"real-guests-do",
226227
"real-items-suffer",
227228
"real-pandas-brush",
229+
"red-cycles-pretend",
228230
"red-doors-own",
229231
"red-feet-worry",
230232
"red-poets-study",
@@ -297,6 +299,7 @@
297299
"spotty-turkeys-sparkle",
298300
"stale-books-perform",
299301
"stale-comics-look",
302+
"stale-fans-rest",
300303
"stale-jeans-refuse",
301304
"strange-apricots-happen",
302305
"strong-gifts-smoke",

packages/svelte/CHANGELOG.md

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

3+
## 5.0.0-next.84
4+
5+
### Patch Changes
6+
7+
- fix: reliably remove undefined attributes during hydration ([#10917](https://github.com/sveltejs/svelte/pull/10917))
8+
9+
- fix: Add `elementtiming` HTMLAttribute, remove `crossorigin` from HTMLInputAttributes ([#10921](https://github.com/sveltejs/svelte/pull/10921))
10+
11+
- feat: shorter compiler output for attribute updates ([#10917](https://github.com/sveltejs/svelte/pull/10917))
12+
313
## 5.0.0-next.83
414

515
### 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.0.0-next.83",
5+
"version": "5.0.0-next.84",
66
"type": "module",
77
"types": "./types/index.d.ts",
88
"engines": {

packages/svelte/src/compiler/phases/3-transform/client/types.d.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,7 @@ export interface ComponentClientTransformState extends ClientTransformState {
3232
/** Stuff that happens before the render effect(s) */
3333
readonly init: Statement[];
3434
/** Stuff that happens inside the render effect */
35-
readonly update: {
36-
/** If the update array only contains a single entry, this singular entry will be used, if present */
37-
singular?: Statement;
38-
/** Used if condition for singular prop is false (see comment above) */
39-
grouped: Statement;
40-
}[];
35+
readonly update: Statement[];
4136
/** Stuff that happens after the render effect (control blocks, dynamic elements, bindings, actions, etc) */
4237
readonly after_update: Statement[];
4338
/** The HTML template string */

0 commit comments

Comments
 (0)