Releases: SkygearIO/skygear-SDK-JS
Releases · SkygearIO/skygear-SDK-JS
v0.10.1
v0.10.0
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
tosetReadWriteAccess
andsetReadOnlyAcces
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)
v0.9.0
v0.8.0
v0.7.0
v0.6.0
v0.5.0
v0.4.0
v0.3.0
v0.2.0
Bug Fixes
- Check if file exists before uploading asset oursky/skygear#454
- Fix error when AsyncStorage not available in web browser
- Use console.log instead of console.debug for React Native
- Fix bug on platform detection in react-native for iOS
- Use the pass in value to resolve the store promise in container
- Fix store not usable in react-native