Skip to content

Commit 30c8999

Browse files
committed
prep for release
1 parent 1bb1068 commit 30c8999

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

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

3+
## 0.15.0 - 2019-12-16
4+
A lot fixes and new features:
5+
* Suspense improvements: `SuspenseList`, `useTransition`, trigger on read. Update API, and added `reload` and retry capability. Removed need for `awaitSuspense` by making `Show` and `Switch` control flows `Susepnse` aware.
6+
* Sample all Components. No more fear of nesting Components in JSX expressions. Top level in a Component will always be inert now.
7+
* Support for safe boolean and logical operators. This allows for the same optimization as the `Show` control flow for simple inline JSX conditionals like `<div>{state.count > 5 && <MyComp />}</div>`.
8+
* Removed `transform` from control flow. `selectWhen` and `selectEach` have been updated to more generalized `select` and `selectAll`, used off `forwardRef`.
9+
* Support for non-curried operator forms. All operators now support an accessor first form as well as the functional curried form. Ex `map(() => state.list, item => item)`
10+
* Fix issues with spreading over `children` props.
11+
* Better Type Definitions.
12+
313
## 0.14.0 - 2019-11-16
414
v0.14.0 brings changes to the render runtime and `setState` API
515

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "solid-js",
33
"description": "A declarative JavaScript library for building user interfaces.",
4-
"version": "0.14.10",
4+
"version": "0.15.0",
55
"author": "Ryan Carniato",
66
"license": "MIT",
77
"repository": {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export {
1313
getContextOwner
1414
} from "./signal";
1515

16-
export { createState, unwrap, force, mutate } from "./state";
16+
export { createState, unwrap, force } from "./state";
1717

1818
export { reconcile } from "./reconcile";
1919

0 commit comments

Comments
 (0)