Skip to content

Commit c47d5bb

Browse files
committed
update changelog
1 parent 3d4625b commit c47d5bb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 0.13.0 - 2019-10-27
4+
v0.13.0 contains large changes to the reactive system and compiler.
5+
6+
The main update is to simplify reactivity by removing computation recycling. While this was a useful feature to avoid unnecessary computation nodes, Solid now uses batching as a different approach to get similar results. Most templating libraries can offer breakneck update speeds without fine grained updates. The real cost of these top down approaches is the need to redo structural reconcilliation. The current approach is that different computations will be created for each:
7+
* Dynamic insert expression (any expression between tags)
8+
* Spread operator
9+
* JSX template entry point(Top level tag, Fragment, or Component Children)
10+
11+
To aid in performance simple text inserts the `textContent` binding is now optimized so they can be batched.
12+
13+
In addition there are some improvements to template cloning and SVG handing in SSR.
14+
315
## 0.12.0 - 2019-10-18
416

517
v0.12.0 contains a breaking change to the reactive rendering system

0 commit comments

Comments
 (0)