Skip to content

Releases: auth0/auth0-flutter

v1.0.2

07 Nov 14:27
c96a840
Compare
Choose a tag to compare

auth0_flutter

Changed

Security

v1.0.1

14 Sep 14:43
03bbc7a
Compare
Choose a tag to compare

Full changelog

Fixed

  • Fix timezone issue in Android Credentials Manager handler #162 (widcket)

v1.0.0

30 Aug 17:07
e047bca
Compare
Choose a tag to compare

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 to UserProfile.profileUrl
  • UserProfile.pictureURL to UserProfile.pictureUrl
  • UserProfile.websiteURL to UserProfile.websiteUrl
  • ApiException.isInvalidAuthorizeURL to ApiException.isInvalidAuthorizeUrl
  • ApiException.isPKCENotAvailable to ApiException.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

22 Jul 17:49
aa2ac6f
Compare
Choose a tag to compare
1.0.0-fa.0 Pre-release
Pre-release

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

30 Jun 13:03
29750be
Compare
Choose a tag to compare
1.0.0-beta.1 Pre-release
Pre-release

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:

Check out the Readme for a more detailed run through of the capabilities and API.

1.0.0-beta.0

05 May 13:38
045e272
Compare
Choose a tag to compare
1.0.0-beta.0 Pre-release
Pre-release

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