Skip to content

Commit 8831420

Browse files
committed
# v0.1.5 process
1 parent 234e80e commit 8831420

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
44

55
# 0.1.4
66

7+
# 0.1.5
8+
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)
9+
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)
10+
Improve documentation
11+
Improve examples, add new example
12+
Add code sandbox examples
13+
Add new badges
14+
15+
# 0.1.4
16+
17+
# 0.1.5
18+
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)
19+
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)
20+
Improve documentation
21+
Improve examples, add new example
22+
Add code sandbox examples
23+
Add new badges
24+
25+
# 0.1.4
26+
727
# 0.1.3
828
Fix critical bug in method `Action.empty`
929
small refactoring action.js, selector.js files

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "redux-tide",
33
"description": "tiny factory for redux crud normalize",
4-
"version": "0.1.3",
4+
"version": "0.1.5",
55
"main": "./lib/index.js",
66
"files": [
77
"lib",
@@ -82,7 +82,7 @@
8282
"jsdoc": "^3.5.5",
8383
"json-server": "^0.12.1",
8484
"minami": "^1.2.3",
85-
"mocha": "^4.1.0",
85+
"mocha": "^5.0.0",
8686
"prettier": "^1.9.2",
8787
"raw-loader": "^0.5.1",
8888
"react": "^16.2.0",

test/selector.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ it('selector getActionData', function() {
4646
}
4747

4848
const result = getActionData(action)(state)
49+
result.payload = result.payload.toJS()
4950

5051
result.should.be.deepEqual({
5152
status: '',

0 commit comments

Comments
 (0)