v0.14.0
v0.14.0 brings changes to the render runtime and setState
API
- Adds diffing to batched computations to improve update performance
- Supports support for mutable(TypeScript safe)
setState
API inspired by Immer. Function setters in Solid now pass a mutable version of state. Modifying will schedule updates. This form must not return a value. It can still be used immutably simply by returning the new value. - Changes how
force
andreconcile
helpers work. They can now be used on nested paths. - Removes support for multi-path
setState
.