Skip to content

Commit

Permalink
Data: Use turbo-combine-reducers in place of Redux (#11255)
Browse files Browse the repository at this point in the history
* Data: Use turbo-combine-reducers in place of Redux

* Data: Update package-lock.json for turbo-combine-reducers
  • Loading branch information
aduth committed Oct 30, 2018
1 parent 9d46788 commit 0f11300
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
8 changes: 7 additions & 1 deletion package-lock.json

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

10 changes: 8 additions & 2 deletions packages/data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 3.0.1 (Unreleased)

### Internal

- Replace Redux implementation of `combineReducers` with in-place-compatible `turbo-combine-reducers`.

## 3.0.0 (2018-10-29)

### Breaking Changes
Expand All @@ -10,7 +16,7 @@

## 2.1.0 (2018-09-30)

## New Features
### New Features

- Adding support for using controls in resolvers using the controls plugin.

Expand All @@ -22,7 +28,7 @@

- Writing resolvers as async generators has been deprecated. Use the controls plugin instead.

## Bug Fixes
### Bug Fixes

- Fix the promise middleware in Firefox.

Expand Down
3 changes: 2 additions & 1 deletion packages/data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
"equivalent-key-map": "^0.2.2",
"is-promise": "^2.1.0",
"lodash": "^4.17.10",
"redux": "^4.0.0"
"redux": "^4.0.0",
"turbo-combine-reducers": "^1.0.2"
},
"devDependencies": {
"deep-freeze": "^0.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/data/src/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
import { combineReducers } from 'redux';
import combineReducers from 'turbo-combine-reducers';

/**
* Internal dependencies
Expand Down

0 comments on commit 0f11300

Please sign in to comment.