Skip to content

Releases: remix-run/react-router

v0.12.3

10 Nov 17:11

Choose a tag to compare

v0.12.3 Pre-release
Pre-release
  • aef0dce [fixed] DefaultRoute/NotFoundRoute name regression

v0.12.2

10 Nov 17:11

Choose a tag to compare

v0.12.2 Pre-release
Pre-release
  • 196390f [fixed] Make s global, again

v0.12.1

10 Nov 17:09

Choose a tag to compare

v0.12.1 Pre-release
Pre-release
  • 3d8a883 [fixed] Ignore extraneous popstate events in WebKit
  • db2607d [fixed] Double-encoding of URLs
  • c5a24a5 [added] Route/Match classes
  • ae6fcda [changed] Rename Scrolling => ScrollHistory
  • f975bdf [fixed] allow a StaticLocation to be passed directly when creating a router
  • 7d52d55 [changed] TestLocation is a constructor
  • 193222e [added] StaticLocation, for server-side rendering
  • e05e229 [added] Transition#cancel
  • 04ba639 [added] Link activeStyle property
  • 585d8ec [fixed] Use more correct children invariant
  • 62c49d2 [changed] Change Navigation to return the result of goBack()
  • 83c8f59 [fixed] Allow special characters in query

v0.12.0

10 Nov 17:10

Choose a tag to compare

v0.12.0 Pre-release
Pre-release

transition.wait was removed, you now use a callback instead:

// 0.11.x
var SomeHandler = React.createClass({
  statics: {
    willTransitionTo (transition) {
      transition.wait(somePromise());
    }
  }
});

// 0.12.0
var SomeHandler = React.createClass({
  statics: {
    willTransitionTo (transition, params, query, callback) {
      somePromise().then(callback);
    }
  }
});

Changes

  • cd2087d [added] default handler to routes
  • 848361e [fixed] Clean up mounted route component on unmount so we don't leak references
  • 5bcf653 [fixed] Double slash in href when parent route has optional trailing slash
  • e280efd [changed] Don't restore scroll position on Forward
  • 20c2c9b [fixed] Do not decode + in pathname
  • fe5ec39 [fixed] Double-encoding of query strings
  • df38294 [fixed] Allow comments in JSX config
  • 84056ba [fixed] Ignore falsy routes
  • 4a770e8 [fixed] Using TestLocation without DOM
  • 2ac2510 [added] router.replaceRoutes(children)
  • 1f81286 [fixed] Ignore stale transitions
  • c6ed6fa [removed] transition.wait, use callbacks instead
  • 75c6206 [added] router.stop()
  • 4e96256 [fixed] Preserve original query with HashLocation
  • 2f19e63 [changed] Bump qs dependency version

v0.11.6

10 Nov 17:08

Choose a tag to compare

v0.11.6 Pre-release
Pre-release
  • 90cd750 [fixed] Call all transition hooks on query changes

v0.11.5

10 Nov 17:08

Choose a tag to compare

v0.11.5 Pre-release
Pre-release
  • 31e1eb2 [fixed] supportsHistory false negatives on WP 8.1
  • 6417285 [fixed] tearing down location listeners
  • 457d944 [added] Router.History
  • a07003e [fixed] URL hash consistency across browsers
  • c6aa4d3 [fixed] Now execute willTransition* hooks even if only query part was changed

v0.11.4

10 Nov 17:08

Choose a tag to compare

v0.11.4 Pre-release
Pre-release
  • b9079c9 [added] getPathname to Router.State
  • 91d4380 [fixed] Abort pending transition on user navigation
  • 5fe6c08 [changed] Don't update scroll if only query has changed

v0.11.3

10 Nov 17:08

Choose a tag to compare

v0.11.3 Pre-release
Pre-release
  • 91d4380 [fixed] Abort pending transition on user navigation
  • 5fe6c08 [changed] Don't update scroll if only query has changed

v0.11.2

10 Nov 17:07

Choose a tag to compare

v0.11.2 Pre-release
Pre-release
  • 017363d [fixed] default redirect path to '*'
  • 187eb0e [fixed] Added missing require statement
  • 5a1ed33 [fixed] Path.decode/encode with query string

v0.11.1

10 Nov 17:07

Choose a tag to compare

v0.11.1 Pre-release
Pre-release
  • b75f648 [fixed] rendering current handlers before rendering root