0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00
Commit Graph

620 Commits

Author SHA1 Message Date
Ben McCann
086cff2272
Add issue number to changelog 2021-05-03 13:51:13 -07:00
Conduitry
5975b2dbd2 -> v3.38.2 2021-05-03 16:38:14 -04:00
Conduitry
6d16e92606
Revert hydration optimisation (#6290)
Co-authored-by: haveyaseen <haveyaread@gmail.com>
2021-05-03 16:37:19 -04:00
Conduitry
166a61aa26 -> v3.38.1 2021-05-01 11:10:09 -04:00
Conduitry
b3a642c3d3 -> v3.38.0 2021-04-30 12:32:24 -04:00
Conduitry
1b4c83c41f update changelog 2021-04-30 12:07:56 -04:00
Conduitry
7ef869fc76 update changelog 2021-04-30 11:56:39 -04:00
Conduitry
20cb78377d update changelog 2021-04-30 11:53:01 -04:00
Conduitry
c8632a9b53 update changelog 2021-04-30 11:49:21 -04:00
Conduitry
f0f8fae114 update changelog 2021-04-30 11:38:27 -04:00
Conduitry
ce55e10df5 update changelog 2021-04-30 10:37:18 -04:00
Conduitry
0e8ed759a0 update changelog 2021-04-30 10:19:05 -04:00
Conduitry
6d5a200e04 update changelog 2021-04-30 10:13:57 -04:00
Mohammed Al-Qurafi
a39fc8de72
Add "context" typing to SvelteComponent constructor options (#6236) 2021-04-24 16:10:02 +02:00
Ben McCann
10e3e3dae8
Improve SSR hydration performance (#6204)
* Improve SSR hydration performance

- Fixes #4308 by avoiding de- and reattaching nodes during hydration
- Turns existing append, insert and detach methods into "upserts"

The new "hydration mode" was added in order to maintain the detach by
default behavior during hydration. By tracking which nodes are claimed
during hydration unclaimed nodes can then removed from the DOM at the
end of hydration without touching the remaining nodes.

Co-authored-by: Jonatan Svennberg <jonatan.svennberg@gmail.com>
2021-04-21 09:42:52 -07:00
Simon H
dafbdc286e
Update unreleased 2021-04-12 18:01:21 +02:00
Simon H
52d6a5905d
Update unreleased 2021-04-11 17:49:23 +02:00
Conduitry
26d006591d -> v3.37.0 2021-03-31 12:14:28 -04:00
Tan Li Hau
6c5257beb2
allow passing in context in constructor (#6032)
Co-authored-by: Conduitry <git@chor.date>
2021-03-31 11:07:32 -04:00
Conduitry
ed01d16a8e -> v3.36.0 2021-03-29 22:57:06 -04:00
Conduitry
286c60da4d
fix missing slotted elements in AST (#6148) 2021-03-29 22:55:52 -04:00
Conduitry
32f58b9d41 update changelog 2021-03-29 22:41:40 -04:00
Simon H
ff0ccb8755
Update unreleased 2021-03-24 16:03:46 +01:00
Simon H
4e346b9970
Update unreleased 2021-03-24 15:52:57 +01:00
Conduitry
c56653dfd6 -> v3.35.0 2021-03-01 16:18:45 -05:00
Conduitry
2853be1ff2 update changelog 2021-03-01 16:04:26 -05:00
Rich Harris
f792c14492 -> v3.34.0 2021-02-25 18:08:50 -05:00
Conduitry
5c8807e523 -> v3.33.0 2021-02-25 07:38:35 -05:00
Tan Li Hau
d17a90cc44
allow destructured defaults to refer to variables (#5986)
Co-authored-by: M. Habib Rosyad <habib@volantis.io>
Co-authored-by: Conduitry <git@chor.date>
2021-02-25 11:36:44 -05:00
Tan Li Hau
b764374b62
no warning on contextual-store if declaring it as a parameter / variable (#6008) 2021-02-25 10:53:23 -05:00
Conduitry
8ea4fb1106 update changelog 2021-02-25 06:23:08 -05:00
Antony Jones
6928f9492c
Emphasis on method name 2021-02-15 22:47:20 +00:00
Antony Jones
48b56bd819
Update changelog 2021-02-15 22:46:14 +00:00
Conduitry
d3f3ea38d0 -> v3.32.3 2021-02-10 22:02:27 -05:00
Tan Li Hau
e8094df779
fix remove of lone :host selectors (#5984) 2021-02-10 22:01:50 -05:00
Conduitry
160a4eccd1 -> v3.32.2 2021-02-08 14:28:02 -05:00
Conduitry
341948e166 update changelog 2021-02-08 14:24:39 -05:00
Tan Li Hau
44f41c9edd
fix :host and :global css scoping (#5957) 2021-02-08 11:26:46 -05:00
Conduitry
df191385f5 -> v3.32.1 2021-01-29 15:06:30 -05:00
Tan Li Hau
6589aa2548
warn module variables are nonreactive and make them truly nonreactive (#5847) 2021-01-29 15:05:04 -05:00
Conduitry
dd7403ade4 update changelog 2021-01-29 13:32:41 -05:00
Conduitry
47baa1965d update changelog 2021-01-29 11:48:55 -05:00
Tan Li Hau
6207596175
fix extraneous store subscription in SSR (#5929) 2021-01-29 11:07:33 -05:00
Simon H
0f3264e205
make SvelteComponentDev typings more forgiving (#5937)
Add `$$events_def` and `$$slot_def` so that users can do
```
let el: SvelteComponent;
<SomeComponent bind:this={el} />
```
without type errors.
2021-01-29 10:59:57 -05:00
Simon H
842a0b1a07
make animation/transition params optional (#5936)
They are not needed for most of the functions and should be marked as optional accordingly to make TypeScript users happy.

Fixes sveltejs/language-tools#785
2021-01-29 10:52:19 -05:00
Conduitry
f00348c14c update changelog 2021-01-29 10:34:30 -05:00
Conduitry
b3431f9bf2 update changelog 2021-01-29 10:20:06 -05:00
Conduitry
94439ef5e7 fix changelog link 2021-01-25 17:55:36 -05:00
Conduitry
290746cfbd -> v3.32.0 2021-01-25 17:52:53 -05:00
halfnelson
a7eff8894f
add foreign namespace to preserve attribute case and skip HTML-specific a11y validations (#5652) 2021-01-25 16:25:10 -05:00