Skip to content

Releases: Baqend/js-sdk

v2.2.0

02 Aug 14:51
Compare
Choose a tag to compare

Bug Fixes

  • Improved es6 shimming for better compatibility with angular 2

Features

  • Added Typescript support and typings
  • File and bucket listining is now supported

v2.1.0

23 Jun 18:18
Compare
Choose a tag to compare

Bug Fixes

  • Many jsdoc errors are fixed

Features

  • Introduce a File API client (IE 10+)
  • Enable client caching and complete the BloomFilter based cache invalidations

v2.0.1

26 Apr 15:48
Compare
Choose a tag to compare

Bug Fixes

  • Handle logout of cookie-based sessions correctly
  • Better peerdependency handling of the websocket node module

v2.0.0

19 Apr 10:37
Compare
Choose a tag to compare

Bug Fixes

  • Improved collection handling and type casting

Features

  • The sdk is ported to a es6 and is transpiled with babel to es5. But there are no breaking API changes therefore you can silently upgrade in most cases.
  • If you like to use the es6 code base and want to transpile the es6 code by yourself, require the lib/baqend.js directly.

Breaking changes

  • DB.List is now a native Array
    • therefore the new Array(<iterable>) constructor is gone and should be replaced with Array.from(<iterable>)
    • list.get/add/delete/size must be replaced by the corresponding native array functions and you can use the index based access of lists, i.e. list[0] = 'val'

v1.1.1

05 Apr 15:54
Compare
Choose a tag to compare

Bug Fixes

  • Add missing login option for OAuth login

v1.1.0

01 Apr 13:38
Compare
Choose a tag to compare

Bug Fixes

  • Keep session active after reload in safari and ie
  • Handle connection errors correctly

Features

  • Use WebStorage instead of Cookies to persist session tokens
  • Implement resource tokens for a one time resource based authorization

Notes

  • This version works only with the Baqend Server 1.1+

v1.0.0

09 Mar 13:28
Compare
Choose a tag to compare

Features

  • First release
  • Introduce a CRUD, Query, User/Role/ACL, Schema and Logging API