You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge branch 'master' of github.com:log-oscon/redux-wpapi into feature/integrations
* 'master' of github.com:log-oscon/redux-wpapi:
Changes the filename pattern to camelcase
Correct link in README.md
Apply changes suggested by the linter
Defers the RequestStatus change to another PullRequest
Cleans up reducer tests, covered the happy path. Enhances CACHE_HIT
Adds npm badge
Add links to PR and Commit references
Add changelog entry for this future PR
Add CHANGELOG.md
README.md Contributions Section
The following highlights the changes that have been rolled with each new release.
4
+
5
+
Some guidelines in reading this document:
6
+
7
+
* The `[new release]` section corresponds to all the changes that have been merged into master, but have not yet been packaged and released.
8
+
* Every other release as it's section hose title is the tag of the release.
9
+
* The changes on each release are a list of Pull Requests (PRs) which were merged into master. For every PR we have the short summary followed by a link to the actual merged PR page. Inside the PR are the detailed changes.
10
+
* Being that these are the early days of the repository, we have some code changes that were added directly and without much detail, for these we have a link to the commit instead of the PR.
* Fix documentation render function ([b0bb5f4](https://github.com/log-oscon/redux-wpapi/commit/b0bb5f417d6943c981346cf74b912efa67a7c9b6))
23
+
24
+
## 0.1.1
25
+
26
+
* Include current page in the merge of selectQuery ([ca2c03c](https://github.com/log-oscon/redux-wpapi/commit/ca2c03cd4e337a58ef61e9e154223ff95acbd0de))
27
+
28
+
## 0.1.0
29
+
30
+
First version of redux-wpapi, already functional, but poorly documented.
31
+
32
+
Includes the reducer tests for the actions:
33
+
34
+
*`REDUX_WP_API_REQUEST` (get, create, update and delete)
Copy file name to clipboardExpand all lines: README.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,3 +69,21 @@ export default connect({
69
69
request:selectQuery('HomePagePosts'),
70
70
}, { wp })(HomePage);
71
71
```
72
+
73
+
## Contributions
74
+
75
+
All contributions are welcome, and very much appreciated.
76
+
77
+
We are preparing some helper [documents](https://github.com/log-oscon/redux-wpapi/issues/4) to facilitate the process (hopefully), but for now we're following the these guidelines:
78
+
79
+
* Be reasonable
80
+
* Give as much detailed information as you can
81
+
* Keep it as short as possible
82
+
* Let the code talk
83
+
84
+
### Must have's
85
+
86
+
Every Pull Request must have the following:
87
+
88
+
* Unit tests for any functionality that's exposed to the end user.
89
+
* An entry in the [CHANGELOG.md](https://github.com/log-oscon/redux-wpapi/master/CHANGELOG.md) file.
0 commit comments