Skip to content

Releases: STRML/react-router-component

0.15.1

08 Dec 01:11
Compare
Choose a tag to compare
  • Bump react-async to 0.8.0.
  • Fixes to environments, now they properly unsubscribe event listeners.

0.15.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Update react dep to 0.10.0. Fix few warnings in test suite.

0.14.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Expose environment and environment implementations.

0.13.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Contextual routers are only can be in context of other routers if they share
    the same environment.
  • If contextual routers isn't given an environment (via hash or
    environment prop) then it is default to an environment from parent's
    router if any.

0.12.1

08 Dec 01:11
Compare
Choose a tag to compare
  • Do not set key prop on handler, this fixes a bug when the same handler
    component will make DOM to be resetted with innerHTML which is neither nice
    nor performant. Also that didn't work with async components.

0.12.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Link.props.onClick now can prevent navigation by calling
    event.preventDefault(). Thanks to Matthew Dapena-Tretter
    (@matthewwithanm on GitHub).

0.11.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Add onNavigation and onBeforeNavigation callbacks. Thanks to Dave Mac
    (@DveMac in GitHub).

0.10.2

08 Dec 01:11
Compare
Choose a tag to compare
  • Use envify transform for browserify

0.10.1

08 Dec 01:11
Compare
Choose a tag to compare
  • Fix bug with router unregistration.

0.10.0

08 Dec 01:11
Compare
Choose a tag to compare
  • Handle Router.navigate(path, {replace: true) and <Link replace /> by
    replacing the current history record instead creating a new one.