Skip to content

Commit

Permalink
Bump redux and redux-thunk (#325)
Browse files Browse the repository at this point in the history
* Bump redux and redux-thunk

Bumps [redux](https://github.com/reduxjs/redux) and [redux-thunk](https://github.com/reduxjs/redux-thunk). These dependencies needed to be updated together.

Updates `redux` from 4.2.1 to 5.0.0
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.0)

Updates `redux-thunk` from 2.4.2 to 3.0.1
- [Release notes](https://github.com/reduxjs/redux-thunk/releases)
- [Commits](reduxjs/redux-thunk@v2.4.2...v3.0.1)

---
updated-dependencies:
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: redux-thunk
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* fixed import

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Deepak Prabhakara <deepak@boxyhq.com>
  • Loading branch information
dependabot[bot] and deepakprabhakara authored Dec 13, 2023
1 parent 32caf6a commit a90e0f5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
21 changes: 9 additions & 12 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@
"react-markdown": "9.0.1",
"react-modal": "3.16.1",
"react-redux": "8.1.3",
"redux": "4.2.1",
"redux": "5.0.0",
"redux-actions": "3.0.0",
"redux-thunk": "2.4.2",
"redux-thunk": "3.0.1",
"search-query-parser": "1.6.0"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/redux/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { createStore, combineReducers, applyMiddleware, compose } from "redux";
import thunk from "redux-thunk";
import { thunk } from "redux-thunk";

import data from "./data";
import ui from "./ui";
Expand Down

0 comments on commit a90e0f5

Please sign in to comment.