-
Notifications
You must be signed in to change notification settings - Fork 593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support React-Redux v6. #176
Comments
Same issue here! There is a problem with how to bring |
That'll require a breaking change / major version. connected-react-router needs to look into react-redu x's context but it's been moved from old context to new context. |
Pulling up a fix for my own usage that here may refer to |
Thanks for the awesome work! |
thows hands up... damnit!... i just got the notice from greenskeeper on the boilerplate i grabbed and cleaned up. it's too big to go through and update to redux 6, and i just spent 40 hours on a new boilerplate centered on connected-react-router and redux 5. there goes all that work. any viable redux 6 ready alternatives, someone let me know, please. |
connected-react-router 6.0.0-beta.1 works for me with react-redux 6.0.0 |
oh! lovely.. thanks.
|
this problem been bug me for a while, finally find the solution, thanks! |
Worked for me as well! Thanks! |
I tried setting this up with
but still seeing the error: Is there another step that's missing here other than passing the context to |
I upgraded to react-redux v6 and connected-react-router v6 and everything worked. |
i've got this >
wrapped around this >>>
wrapped around this..
wroking. ihave a couple things turned off, in super dev mode right now... took 6 different starters and boilerplates and mashed them together with 10 different tutorials.. it's getting pretty savage... when done, it'll be the scaffolding for super-projects.... like... really really ambitious builds.. code splitting, SSR, loadable components and hot reducer reloading, tons of dev tools, local and cloud noSQL, socket.io api client.. thios router is just right and tight and appears to work with nesting.. going to be important when i set up sub routers... but yes... it Works. |
Connected React Router v6.0.0 has been released! |
React-Redux v6 will use React's ( new ) context api which is not compatible with the legacy context API. By accessing store from context ( reference ) it causes the app to break when it tries to dispatch the
LOCATION_CHANGE
action.As @timdoor has described in its breaking changes:
Related React-Redux links:
The text was updated successfully, but these errors were encountered: