Skip to content

Commit

Permalink
# v0.1.5 process
Browse files Browse the repository at this point in the history
  • Loading branch information
edtoken committed Jan 27, 2018
1 parent 234e80e commit 8831420
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 2 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,26 @@

# 0.1.4

# 0.1.5
Change selector payload type of data, now it's *Immutable JSON or unndefined* please see [test-source](https://github.com/edtoken/redux-tide/blob/master/test/selector.spec.js#L48)
Implement `action.delete` functionality, for details please see [source](https://github.com/edtoken/redux-tide/blob/master/src/action.js#L464) and [example](https://edtoken.github.io/redux-tide/?ex=delete-entity-from-state) and [example-source](https://github.com/edtoken/redux-tide/blob/master/website/src/delete-entity-from-state/index.js#L1)
Improve documentation
Improve examples, add new example
Add code sandbox examples
Add new badges

# 0.1.4

# 0.1.5
Change selector payload type of data, now it's *Immutable JSON or unndefined* please see [test-source](https://github.com/edtoken/redux-tide/blob/master/test/selector.spec.js#L48)
Implement `action.delete` functionality, for details please see [source](https://github.com/edtoken/redux-tide/blob/master/src/action.js#L464) and [example](https://edtoken.github.io/redux-tide/?ex=delete-entity-from-state) and [example-source](https://github.com/edtoken/redux-tide/blob/master/website/src/delete-entity-from-state/index.js#L1)
Improve documentation
Improve examples, add new example
Add code sandbox examples
Add new badges

# 0.1.4

# 0.1.3
Fix critical bug in method `Action.empty`
small refactoring action.js, selector.js files
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "redux-tide",
"description": "tiny factory for redux crud normalize",
"version": "0.1.3",
"version": "0.1.5",
"main": "./lib/index.js",
"files": [
"lib",
Expand Down Expand Up @@ -82,7 +82,7 @@
"jsdoc": "^3.5.5",
"json-server": "^0.12.1",
"minami": "^1.2.3",
"mocha": "^4.1.0",
"mocha": "^5.0.0",
"prettier": "^1.9.2",
"raw-loader": "^0.5.1",
"react": "^16.2.0",
Expand Down
1 change: 1 addition & 0 deletions test/selector.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ it('selector getActionData', function() {
}

const result = getActionData(action)(state)
result.payload = result.payload.toJS()

result.should.be.deepEqual({
status: '',
Expand Down

0 comments on commit 8831420

Please sign in to comment.