This repository has been archived by the owner on Jul 18, 2020. It is now read-only.
0.3.0
Fixed
- User profile was returning empty
userMetadata
after authentication in iOS #56 (hzalaz) - User profile was not returning
userMetadata
after authentication #64 (hzalaz)
Added
- Disable change password & sign up buttons #59 (deepaksisodiya)
- Added Authentication & Users API clients from react-native-auth0. These can be obtained from the
Lock
instance. #63 (hzalaz)
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