Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

0.3.0

Compare
Choose a tag to compare
@hzalaz hzalaz released this 15 Jun 20:20
· 34 commits to master since this release
ade8c3a

Full Changelog

Fixed

  • User profile was returning empty userMetadata after authentication in iOS #56 (hzalaz)
  • User profile was not returning userMetadata after authentication #64 (hzalaz)

Added

Breaking changes

Lock object no longer has delegation(options) or refreshToken(options) methods, if you need to perform these operations you can do it from the Authentication API client like this:

    lock
      .authenticationAPI()
      .refreshToken(refreshToken)
      .then(response => console.log(response))
      .catch(error => console.log(error));

For more info check https://github.com/auth0/react-native-auth0