From 1bc028c6c5b4efa12827c2914d0a179661fd1f53 Mon Sep 17 00:00:00 2001 From: Michael Bui <25263378+MaikuB@users.noreply.github.com> Date: Sun, 20 Feb 2022 23:32:58 +1100 Subject: [PATCH] [flutter_appauth][flutter_appauth_platform_interface] bump for 2.4.0 release (#302) * bump platform interface * bump cross-platform facing plugin to 2.4.0 --- flutter_appauth/CHANGELOG.md | 5 +++++ flutter_appauth/pubspec.yaml | 4 ++-- flutter_appauth_platform_interface/CHANGELOG.md | 4 ++++ flutter_appauth_platform_interface/pubspec.yaml | 6 +++--- 4 files changed, 14 insertions(+), 5 deletions(-) diff --git a/flutter_appauth/CHANGELOG.md b/flutter_appauth/CHANGELOG.md index 042c8fba..2da590cc 100644 --- a/flutter_appauth/CHANGELOG.md +++ b/flutter_appauth/CHANGELOG.md @@ -1,3 +1,8 @@ +## 2.4.0 + +* Added `scopes` property to `TokenResponse` class and `AuthorizationTokenResponse` class that inherits from it. Thanks to PR from [leoshusar](https://github.com/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](https://github.com/jpuerto) + ## 2.3.0 * [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](https://github.com/garry-jeromson) diff --git a/flutter_appauth/pubspec.yaml b/flutter_appauth/pubspec.yaml index f54600d3..ab964602 100644 --- a/flutter_appauth/pubspec.yaml +++ b/flutter_appauth/pubspec.yaml @@ -1,6 +1,6 @@ name: flutter_appauth description: This plugin provides an abstraction around the Android and iOS AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID Connect providers -version: 2.3.0 +version: 2.4.0 homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth environment: @@ -10,7 +10,7 @@ environment: dependencies: flutter: sdk: flutter - flutter_appauth_platform_interface: ^4.0.0 + flutter_appauth_platform_interface: ^4.1.0 flutter: plugin: diff --git a/flutter_appauth_platform_interface/CHANGELOG.md b/flutter_appauth_platform_interface/CHANGELOG.md index aad2f24d..a9a4aa03 100644 --- a/flutter_appauth_platform_interface/CHANGELOG.md +++ b/flutter_appauth_platform_interface/CHANGELOG.md @@ -1,3 +1,7 @@ +## [4.1.0] + +* Added `scopes` property to `TokenResponse` class and `AuthorizationTokenResponse` class that inherits from it. Thanks to PR from [leoshusar](https://github.com/leoshusar) + ## [4.0.0] * **Breaking change** `AuthorizationServiceConfiguration` constructor has changed to take named parameters diff --git a/flutter_appauth_platform_interface/pubspec.yaml b/flutter_appauth_platform_interface/pubspec.yaml index 7fdf5a85..8fde44df 100644 --- a/flutter_appauth_platform_interface/pubspec.yaml +++ b/flutter_appauth_platform_interface/pubspec.yaml @@ -1,11 +1,11 @@ name: flutter_appauth_platform_interface description: A common platform interface for the flutter_appauth plugin. -version: 4.0.0 +version: 4.1.0 homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth_platform_interface environment: - sdk: '>=2.12.0 <3.0.0' - flutter: '>=1.10.0' + sdk: ">=2.12.0 <3.0.0" + flutter: ">=1.10.0" dependencies: flutter: