Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

2.1.0

Compare
Choose a tag to compare
@wtrocki wtrocki released this 18 Feb 15:25
· 407 commits to master since this release
6e7bd57

Release notes

  • FEAT: Sync SDK
    Please follow Sync SDK documentation for more information
  • FEAT: Auth SDK provides now method to refresh tokens.
    See auth.getAuthContextProvider method for more details
  • BREAKING: New way to initialize SDK and work with config.
    Configuration is now passed directly to each individual SDK.
    For example:
const init  = require("@aerogear/app");
const app = init(config);
const Auth = require('@aerogear/auth').Auth;
const authService = new Auth(app.config);

Init method returns now app object that contains config:
https://docs.aerogear.org/api/cordova/latest/app/classes/aerogearapp.html
Please follow new initialization guides for individual SDK's

Changes

https://github.com/aerogear/aerogear-js-sdk/compare/2.0.0...2.1.0?expand=1