Skip to content

Commit d1add85

Browse files
committed
# v0.1.5 process
1 parent a5a8850 commit d1add85

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Changelog
22

33
# 0.1.5
4+
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)
5+
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)
6+
Improve documentation
7+
Improve examples, add new example
8+
Add code sandbox examples
9+
Add new badges
10+
11+
# 0.1.4
12+
13+
# 0.1.5
14+
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)
15+
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)
16+
Improve documentation
17+
Improve examples, add new example
18+
Add code sandbox examples
19+
Add new badges
420

521
# 0.1.4
622

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ActionCreator + ActionSelector, reducers are created automatically
2929
[![Maintainability](https://api.codeclimate.com/v1/badges/5952e9edfa038e49658f/maintainability)](https://codeclimate.com/github/edtoken/redux-tide/maintainability)
3030
[![npm downloads](https://img.shields.io/npm/dm/redux-tide.svg?style=flat-square)](https://www.npmjs.com/package/redux-tide)
3131
[![Coverage Status](https://coveralls.io/repos/github/edtoken/redux-tide/badge.svg?branch=master)](https://coveralls.io/github/edtoken/redux-tide?branch=master)
32-
[![Inline docs](https://inch-ci.org/github/edtoken/redux-tide.svg?branch=master)](https://inch-ci.org/github/edtoken/redux-tide)
32+
[![Inline docs](https://inch-ci.org/github/edtoken/redux-tide.svg?branch=master)](https://inch-ci.org/github/edtoken/redux-tide)
3333
[![dependencies Status](https://david-dm.org/edtoken/redux-tide/status.svg)](https://david-dm.org/edtoken/redux-tide)
3434
[![devDependencies Status](https://david-dm.org/edtoken/redux-tide/dev-status.svg)](https://david-dm.org/edtoken/redux-tide?type=dev)
3535
[![HitCount](http://hits.dwyl.com/edtoken/redux-tide.svg)](http://hits.dwyl.com/edtoken/redux-tide)

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)