Releases: MaikuB/flutter_appauth
Releases · MaikuB/flutter_appauth
flutter_appauth-v4.0.0
- Added support for macOS. Thanks to the PR from Jordy Langen
flutter_appauth-v3.0.1
- [iOS] fix
nonce
not being returned correctly on iOS
flutter_appauth-v3.0.0
- Breaking change
AuthorizationResponse
's constructor now includesnonce
and has changed to take positional parameters nonce
can now be specified forTokenRequest
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 thenonce
value returned by theAuthorizationResponse
object after callingauthorize()
and passing the value to theTokenRequest
when calling thetoken()
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
- Added const constructor to
FlutterAppAuth
flutter_appauth-v2.4.1+1
- Example app has been updated to point to the new demo IdentityServer instance
flutter_appauth-v2.4.1
- [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
- Added
scopes
property toTokenResponse
class andAuthorizationTokenResponse
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
- [Android]
claims
can now be passed as part of theadditionalParameters
included with requests without triggering an exception by the AppAuth Android SDK. Thanks to the PR from Garry Jeromson
flutter_appauth-v2.2.0
- [Android] updated error handling so more details are returned. Thanks to Andreas Kägi for originally starting on the PR
flutter_appauth-v2.1.0+1
- Fix grammar in 2.1.0 changelog entry