Skip to content

Commit

Permalink
Update CHANGELOG for v0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Lei committed Apr 14, 2016
1 parent ffb5e77 commit 239f600
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
## 0.10.0 (2016-04-14)

### Incompatible Changes
- Correct the representation of public access and read/write level (oursky/skygear-SDK-JS#156)

The correct representation of public access serve want is:
`{ "level": "read", "public": true }`

The previous `addWriteAccess` interface imply write and read is separate access
entity. Which a record can be write, not not read (Something like Dropbox).
This is misleading and not align with our implementation. So we change the API
to `setReadWriteAccess` and `setReadOnlyAcces` to clear the ambiguity.

- Expose Query as constructor

`skygear.Query` returns the query constructor.

To create a query, use `new skygear.Query(Note)`, instead of
`skygear.Query(Note)`

### Bug fixes
- Clear currentUser after logout (oursky/skygear-SDK-JS#162)
- support auth provider signup and login (oursky/skygear-SDK-JS#155)


## 0.9.0 (2016-03-16)

### Feature
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "skygear",
"version": "0.9.0",
"version": "0.10.0",
"description": "JS SDK of Skygear services",
"homepage": "https://github.com/SkygearIO/skygear-SDK-JS",
"repository": {
Expand Down

0 comments on commit 239f600

Please sign in to comment.