Nothing to do.
Important:
- If you are seeing the error "Uncaught Invariant Violation: You have provided a history object created with
history v3.x. This version of React Router is not compatible with v3 history objects. Please use history
v2.x instead." you need to double-check your dependencies and if you are using the
history
module, you need to set that to use version2.1.2
. This is because ReactRouter is incompatible withhistory
versions >=3.x.x
and2.1.2
is the latest2.x.x
release.
Nothing to do.
Nothing to do.
Important:
- Due to React's new "Unkonwn Prop" warning (see https://facebook.github.io/react/warnings/unknown-prop.html) all
spIf
andspBind
element attributes should be prefixed withdata-
. I.e.spIf
should bedata-spIf
andspBind
should bedata-spBind
. Adding thedata-
prefix will remove the the "Unkonwn Prop" warnings and guarantee future compatibility.
Nothing to do.
Nothing to do.
Important:
- We've updated to React v15 and React-Router v2. So when upgrading, please see the React v15 upgrade guide and the React-Router v2 upgrade guide.
Nothing to do.
Nothing to do.
Notice:
- The UserComponent and UserField components have been deprecated and will be removed in the future. So if you are using these, please take a look at our new context support instead (see docs). It makes integrating user data into your components much easier.
Breaking:
- The logout request has changed from doing a GET to a POST request. So if you're
using the
express-stormpath
module you'll have to assure that you're running at leastexpress-stormpath
version3.0.0
.
Notice:
- The
LogoutLink
previously redirected the user to the path of theLogoutRoute
. This has changed. TheLogoutRoute
is in fact no longer needed. So instead of redirecting to theLogoutRoute
path, theLogoutLink
will take care of doing the logout itself.