Skip to content

Releases: MaikuB/flutter_appauth

flutter_appauth-v4.1.0

14 Jul 10:39
Compare
Choose a tag to compare
  • Added ability to specify the nonce as part of requests

flutter_appauth-v4.0.1

31 May 10:10
Compare
Choose a tag to compare

flutter_appauth-v4.0.0

19 May 01:32
Compare
Choose a tag to compare
  • Added support for macOS. Thanks to the PR from Jordy Langen

flutter_appauth-v3.0.1

17 May 12:39
b602242
Compare
Choose a tag to compare
  • [iOS] fix nonce not being returned correctly on iOS

flutter_appauth-v3.0.0

17 May 11:02
Compare
Choose a tag to compare
  • Breaking change AuthorizationResponse's constructor now includes nonce and has changed to take positional parameters
  • nonce can now be specified for TokenRequest class. This is especially useful on Android as the AppAuth Android SKD had turned on ID token validation that results in nonce mismatch errors. These errors should no longer appear when using the nonce value returned by the AuthorizationResponse object after calling authorize() and passing the value to the TokenRequest when calling the token() method
  • Bumped AppAuth Android SDK to 0.11.1 where the SDK reports that it has fixed an issue where rotating device could lead to the SDK reporting that the user cancelled login flow

flutter_appauth-v2.4.2

09 May 12:17
1b45c1e
Compare
Choose a tag to compare
  • Added const constructor to FlutterAppAuth

flutter_appauth-v2.4.1+1

01 May 06:03
bdcc702
Compare
Choose a tag to compare
  • Example app has been updated to point to the new demo IdentityServer instance

flutter_appauth-v2.4.1

27 Feb 04:19
e83135d
Compare
Choose a tag to compare
  • [iOS] fixed issue with scopes not being sent correctly as they should've been space-delimited instead of comma-delimited. Thanks to the PR from Angle Wang

flutter_appauth-v2.4.0

20 Feb 12:36
1bc028c
Compare
Choose a tag to compare
  • Added scopes property to TokenResponse class and AuthorizationTokenResponse class that inherits from it. Thanks to PR from leoshusar
  • [Android] applied fix to a scenario where skipping https check on the issuer wasn't done for refreshing tokens. Thanks to the PR from Javier Puerto

flutter_appauth-v2.3.0

08 Feb 11:54
Compare
Choose a tag to compare
  • [Android] claims can now be passed as part of the additionalParameters included with requests without triggering an exception by the AppAuth Android SDK. Thanks to the PR from Garry Jeromson