Skip to content

Commit

Permalink
Bump redux and redux-thunk
Browse files Browse the repository at this point in the history
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.1.0
- [Release notes](https://github.com/reduxjs/redux-thunk/releases)
- [Commits](reduxjs/redux-thunk@v2.4.2...v3.1.0)

---
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] <[email protected]>
  • Loading branch information
dependabot[bot] authored and GitHub Workflow committed Dec 4, 2023
1 parent 29d4565 commit fb4f5fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion node_modules
Submodule node_modules updated 76 files
+28 −31 .package-lock.json
+2 −2 .package.json
+2 −2 @babel/code-frame/package.json
+108 −145 @babel/runtime/helpers/applyDecs2305.js
+108 −145 @babel/runtime/helpers/esm/applyDecs2305.js
+1 −1 @babel/runtime/package.json
+13 −2 @eslint/eslintrc/dist/eslintrc.cjs
+1 −1 @eslint/eslintrc/dist/eslintrc.cjs.map
+2 −0 @eslint/eslintrc/lib/config-array-factory.js
+10 −1 @eslint/eslintrc/lib/config-array/config-dependency.js
+1 −1 @eslint/eslintrc/lib/flat-compat.js
+1 −1 @eslint/eslintrc/package.json
+2 −0 eslint-plugin-es-x/lib/configs/no-new-in-esnext.js
+2 −0 eslint-plugin-es-x/lib/index.js
+46 −0 eslint-plugin-es-x/lib/rules/no-object-map-groupby.js
+42 −0 eslint-plugin-es-x/lib/rules/no-promise-withresolvers.js
+1 −1 eslint-plugin-es-x/package.json
+8 −0 object.assign/CHANGELOG.md
+263 −66 object.assign/dist/browser.js
+10 −10 object.assign/package.json
+0 −18,458 object.assign/test.html
+2 −2 object.assign/test/tests.js
+1 −1 postcss/README.md
+1 −1 postcss/lib/postcss.d.ts
+1 −1 postcss/lib/processor.js
+2 −2 postcss/package.json
+3 −6 redux-thunk/README.md
+42 −0 redux-thunk/dist/cjs/redux-thunk.cjs
+60 −50 redux-thunk/dist/redux-thunk.d.ts
+0 −41 redux-thunk/dist/redux-thunk.js
+16 −0 redux-thunk/dist/redux-thunk.legacy-esm.js
+0 −1 redux-thunk/dist/redux-thunk.min.js
+16 −0 redux-thunk/dist/redux-thunk.mjs
+0 −7 redux-thunk/es/index.d.ts
+0 −32 redux-thunk/es/index.js
+0 −42 redux-thunk/extend-redux.d.ts
+0 −40 redux-thunk/lib/index.js
+27 −41 redux-thunk/package.json
+3 −13 redux-thunk/src/index.ts
+2 −2 redux-thunk/src/types.ts
+94 −259 redux/README.md
+432 −0 redux/dist/cjs/redux.cjs
+1 −0 redux/dist/cjs/redux.cjs.map
+2 −0 redux/dist/redux.browser.mjs
+1 −0 redux/dist/redux.browser.mjs.map
+284 −473 redux/dist/redux.d.ts
+0 −757 redux/dist/redux.js
+397 −0 redux/dist/redux.legacy-esm.js
+0 −1 redux/dist/redux.min.js
+397 −0 redux/dist/redux.mjs
+1 −0 redux/dist/redux.mjs.map
+0 −705 redux/es/redux.js
+0 −1 redux/es/redux.mjs
+0 −719 redux/lib/redux.js
+52 −73 redux/package.json
+0 −41 redux/src/applyMiddleware.js
+77 −0 redux/src/applyMiddleware.ts
+36 −9 redux/src/bindActionCreators.ts
+50 −24 redux/src/combineReducers.ts
+0 −22 redux/src/compose.js
+61 −0 redux/src/compose.ts
+190 −48 redux/src/createStore.ts
+0 −16 redux/src/index.js
+50 −0 redux/src/index.ts
+74 −0 redux/src/types/actions.ts
+30 −0 redux/src/types/middleware.ts
+115 −0 redux/src/types/reducers.ts
+230 −0 redux/src/types/store.ts
+3 −3 redux/src/utils/actionTypes.ts
+1 −3 redux/src/utils/formatProdErrorMessage.ts
+10 −0 redux/src/utils/isAction.ts
+3 −3 redux/src/utils/isPlainObject.ts
+11 −11 redux/src/utils/kindOf.ts
+0 −3 redux/src/utils/symbol-observable.js
+10 −0 redux/src/utils/symbol-observable.ts
+2 −3 redux/src/utils/warning.ts
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
"prop-types": "15.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"redux": "4.2.1",
"redux-thunk": "2.4.2",
"redux": "5.0.0",
"redux-thunk": "3.1.0",
"throttle-debounce": "5.0.0",
"xterm": "5.1.0",
"xterm-addon-canvas": "0.4.0"
Expand Down

0 comments on commit fb4f5fc

Please sign in to comment.