All Versions
17
Latest Version
Avg Release Cycle
40 days
Latest Release
2425 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v2.0.4 Changes
- โ Remove
history
module published within the tarball. #133 - ๐ Make actions conform to Flux Standard Action. #208
- โ Remove
-
v2.0.2 Changes
๐ Versions 2.0.0 and 2.0.1 were test releases for the 2.* series. 2.0.2 is the first public release.
A whole new API, with many breaking changes:
- ๐
syncReduxAndRouter
is gone. Instead, callsyncHistory
with just thehistory
object, which returns a middleware that you need to apply. (#141) - ๐ If you use redux devtools, you need to call
middleware.listenForReplays(store)
on the middleware returned fromsyncHistory
. Create the store first with the middleware, then call this function with the store. - Action creators are now contained in a single object called
routeActions
.go
,goBack
, andgoForward
action creators have been added. - โก๏ธ
UPDATE_PATH
is nowUPDATE_LOCATION
. - ๐ The fully parsed location object is now stored in the state instead of a URL string. To access the path, use
state.routing.location.pathname
instead ofstate.routing.path
.
๐ View the new docs
- ๐
-
v1.0.2 Changes
- Only publish relevant files to npm
-
v1.0.1 Changes
- Solve problem with
basename
causing infinite redirects (#103) - Switched to ES6 imports/exports internally, but should not affect outside users
- Solve problem with
-
v1.0.0 Changes
2015-12-09
๐ This release changes quite a bit so you'll have to update your code.
๐ฅ Breaking Changes:
- โก๏ธ The
updatePath
action creator has been removed in favor ofpushPath
andreplacePath
. UsepushPath
to get the same behavior as before. (#38) - ๐ We have added support for routing state (#38)
- โก๏ธ Our actions are now FSA compliant. This means if you are listening for the
UPDATE_PATH
action in a reducer you should get properties off thepayload
property. (#63)
๐ Other fixes:
- Redux DevTools should now work as expected (#73)
- As we no longer depend on
window.location
,<base href="...">
should now work (#62) - โก๏ธ We've done lots of work on finding the right way to stop cycles, so hopefully we shouldn't have any unnecessary location or store updates (#50)
- โก๏ธ The