Skip to content

Releases: SkygearIO/skygear-SDK-JS

v0.10.1

20 Apr 09:24
Compare
Choose a tag to compare
v0.10.1 Pre-release
Pre-release

Bug fixes

  • fix asset upload batch save

v0.10.0

14 Apr 10:31
Compare
Choose a tag to compare
v0.10.0 Pre-release
Pre-release

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)

v0.9.0

16 Mar 08:27
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release

Feature

  • Add NOT operation and deserializer for query #148
  • Implement batch save / delete records #153

v0.8.0

09 Mar 08:11
v0.8.0
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release

Other Notes

  • Update endpoint and payload for set record creationg access

v0.7.0

02 Mar 08:24
v0.7.0
Compare
Choose a tag to compare
v0.7.0 Pre-release
Pre-release

No change since last release

v0.6.0

24 Feb 09:30
Compare
Choose a tag to compare
v0.6.0 Pre-release
Pre-release

Features

Bug Fixes

  • Fix unable to reset cache when log out
  • Fix unable to logout user in React Native

v0.5.0

17 Feb 09:54
v0.5.0
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release

Bug Fixes

  • Reconfigure pubsub after login #135
  • Don't call cached query if remote query returned first #133

v0.4.0

13 Jan 11:47
Compare
Choose a tag to compare
v0.4.0 Pre-release
Pre-release

Features

  • Allow client to listen to pubsub open/close events. #132

v0.3.0

06 Jan 08:56
v0.3.0
Compare
Choose a tag to compare
v0.3.0 Pre-release
Pre-release

Features

  • Automatically logout user when access token is not accepted #129

Bug Fixes

  • Prevent uploaded asset from being uploaded again #109
  • Fix not able to register device if the existing device ID is not found #125

v0.2.0

23 Dec 07:57
v0.2.0
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release

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