Releases: auth0/auth0-flutter
v1.0.2
v1.0.1
v1.0.0
This is the General Availability release of the Auth0 Flutter SDK! 🎉
This release marks the first stable release of the SDK and is fully supported for use in production environments.
⚠️ Breaking changes
There are a small number of breaking changes from 1.0.0-fa.0
in this release:
Renamed properties
The following properties were renamed to comply with Dart's API guidelines.
See #146
UserProfile.profileURL
toUserProfile.profileUrl
UserProfile.pictureURL
toUserProfile.pictureUrl
UserProfile.websiteURL
toUserProfile.websiteUrl
ApiException.isInvalidAuthorizeURL
toApiException.isInvalidAuthorizeUrl
ApiException.isPKCENotAvailable
toApiException.isPkceNotAvailable
Scheme registration
The scheme
option of webAuthentication().login
and webAuthentication().logout()
was moved up a level to become an option of webAuthentication()
instead.
Before:
auth0.webAuthentication().login(scheme: 'custom-scheme');
auth0.webAuthentication().logout(scheme: 'custom-scheme');
After:
auth0.webAuthentication(scheme: 'custom-scheme').login();
auth0.webAuthentication(scheme: 'custom-scheme').logout();
See #150
Renamed LocalAuthenticationOptions
LocalAuthenticationOptions
was renamed to LocalAuthentication
to fix up some confusion about how the class was to be used.
See #152 for details.
1.0.0-fa.0
This is a First Availability release of the Auth0 Flutter SDK! 🎉
This release includes the addition of a Credentials Manager: a mechanism to manage the tokens returned from Auth0, including the ability to automatically renew the access token when expired (web authentication only). Read more about the credentials manager in the readme.
See also:
API documentation: https://pub.dev/documentation/auth0_flutter/latest/
New Auth0 Flutter quickstart: https://auth0.com/docs/quickstart/native/flutter
Quickstart sample app: https://github.com/auth0-samples/auth0-flutter-samples/tree/main/sample
1.0.0-beta.1
This is the first public beta release of the Auth0 Flutter SDK! 🎉
⚠️ This release is not yet suitable for use in production
The Auth0 Flutter SDK is a new SDK designed to make it quick and easy to integrate Auth0 into Flutter applications. Today, the SDK offers the following features:
- Support for iOS and Android
- Integration with Auth0 Universal Login
- Integration with the Auth0 Authentication API for:
- username and password login
- signup
- refreshing access tokens
- password reset
- fetching user profile
Check out the Readme for a more detailed run through of the capabilities and API.
1.0.0-beta.0
Added
- Web Auth login
- Web Auth logout
- Authenticaiton API login
- Authentication API signup
- Authentication API user profile
- Authentication API renew credentials
- Authentication API reset password