-
-
Notifications
You must be signed in to change notification settings - Fork 302
fix(deps): update dependency connected-react-router to v6 #69
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
Conversation
This pull request is being automatically deployed with Vercel (learn more). |
241cfce
to
658529e
Compare
658529e
to
59a80d8
Compare
2b284ac
to
e9bbc9f
Compare
e9bbc9f
to
578ee24
Compare
578ee24
to
95f0c07
Compare
95f0c07
to
0079f4c
Compare
0079f4c
to
cf86e5c
Compare
cf86e5c
to
c203aa5
Compare
c203aa5
to
4823558
Compare
4823558
to
a33f66e
Compare
a33f66e
to
b219f62
Compare
b219f62
to
09176c2
Compare
09176c2
to
7fbeeea
Compare
7fbeeea
to
e9f75ee
Compare
e9f75ee
to
18ad0d0
Compare
18ad0d0
to
ebdc97b
Compare
1d6162e
to
7e97288
Compare
7e97288
to
4241da7
Compare
4241da7
to
c588962
Compare
c588962
to
da12bd5
Compare
da12bd5
to
5485eb1
Compare
5485eb1
to
ff2467d
Compare
ff2467d
to
c37ec52
Compare
c37ec52
to
a5654dc
Compare
a5654dc
to
8322042
Compare
8322042
to
f9af356
Compare
f9af356
to
6d9f7eb
Compare
6d9f7eb
to
987c301
Compare
987c301
to
bf5f28b
Compare
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
4.5.0
->6.8.0
Release Notes
supasate/connected-react-router
v6.8.0
Compare Source
Enhancement
Fix
Security
v6.7.0
Compare Source
Feature
Enhancements
Security
v6.6.1
Compare Source
Fix
v6.6.0
Compare Source
Enhancements
Fixes
Security issues
Docs
v6.5.2
Compare Source
Security
v6.5.1
Compare Source
Security
v6.5.0
Compare Source
Enhancement
Documentation
v6.4.0
Compare Source
Enhancement
Fixes
Documentation
v6.3.2
Compare Source
Fixes
v6.3.1
Compare Source
Fix
v6.3.0
Compare Source
Enhancements
Fix
v6.2.2
Compare Source
Fixes
getRouter
andcreateMatchSelector
(@metsavaht in #235)v6.2.1
Compare Source
Fix
v6.2.0
Compare Source
Fixes
Enhancements
Doc
v6.1.0
Compare Source
Fixes
These fixes are significantly contributed by @Annatsu, @SergeyPoluektov, @jakewies, @firec0der, @madsmadsen, and @supasate.
Feature
v6.0.0
Compare Source
This is a major version upgrade to support React Redux v6 that uses the new Context API. So, it requires React v16.4 and React Redux v6.0 or later. No need to change anything in your codebase besides upgrading these packages.
Breaking Change
Enhancement
Docs
Misc
v5.0.1
Compare Source
Fixes
v5.0.0
Compare Source
Breaking Change
Align public API with react-router-redux and allow various integrations (redux-loop, rematch, etc.) (@sgal in #150)
In your reducer file, instead of exporting a root reducer, we need to export a function accepting
history
and returning a root reducer with arouter
key that uses connectRouter(history). Note: The key MUST berouter
.// reducers.js
import { combineReducers } from 'redux'
import { connectRouter } from 'connected-react-router'
export default (history) => combineReducers({
router: connectRouter(history),
... // rest of your reducers
})
In store configuration,
// configureStore.js
import { createBrowserHistory } from 'history'
import { applyMiddleware, compose, createStore } from 'redux'
import { routerMiddleware } from 'connected-react-router'
import createRootReducer from './reducers'
const history = createBrowserHistory()
const store = createStore(
createRootReducer(history), // root reducer with router state
initialState,
compose(
applyMiddleware(
routerMiddleware(history), // for dispatching history actions
// ... other middlewares ...
),
),
)
Enhancement
Bug fix
Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.