This repository was archived by the owner on Dec 15, 2018. It is now read-only.
Breaking Changes Are Hard to Do
Breaking
- The library no longer enhances the reducer. Instead, a factory function returns the prepared middleware, enhancer, and reducer. This is to allow for easier compatibility with special reducer types in the ecosystem (e.g.
immutable
andredux-loop
). See the new instructions for setting up the Redux boilerplate. - Removed
<AbsoluteFragment>
and made<RelativeFragment>
the default export for<Fragment>
. <Fragment>
no longer wraps children in an extraneous<div>
. This requires<Fragment>
to accept only single children.
Minor
- Added action creators for navigation to the official API. Resolves #99.
- Flow definitions enhanced for accuracy.