Releases: remix-run/react-router
Releases · remix-run/react-router
v0.5.1
- 08f5a69 [fixed] location="history" fallback
- 87b1c2a [fixed] Navigation to root URL can fail
- 760f021 [fixed] infinite loop in RouteStore.unregisterRoute
- 5fea685 [added] Router.AsyncState mixin
- 395a590 [changed] fallback to window.location for history
- 2a3582e [changed] make URLStore.push idempotent
- 4c4f87b [fixed] alt click on Link should count as modified
- 97c02f1 [fixed] middle click on
<Link/>
v0.5.0
We brought back <Routes/>
.
// 0.4.x
var routes = (
<Route handler={App} location="history">
<Route name="about" handler="about"/>
</Route>
);
// 0.5.x
var routes = (
<Routes location="history">
<Route handler={App}>
<Route name="about" handler="about"/>
</Route>
</Routes>
);
Changes
- 5af49d4 [changed] Split
<Routes>
component from<Route>