diff --git a/CHANGELOG.md b/CHANGELOG.md index dc89e3d1..fcf1f370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package.json b/package.json index 24139b37..76fd231d 100644 --- a/package.json +++ b/package.json @@ -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": {