Skip to content

Commit 82dd92d

Browse files
authored
bumped AppAuth iOS dependency to 2.0.0 (#615)
1 parent 51f0b22 commit 82dd92d

File tree

8 files changed

+13
-7
lines changed

8 files changed

+13
-7
lines changed

flutter_appauth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [9.0.1]
2+
3+
* [iOS][macOS] bumped AppAuth iOS dependency to 2.0.0
4+
15
## [9.0.0]
26

37
* **Breaking change** updated minimum supported SDK version to Flutter 3.19/Dart 3.3

flutter_appauth/example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
ignoresPersistentStateOnLaunch = "NO"
6060
debugDocumentVersioning = "YES"
6161
debugServiceExtension = "internal"
62+
enableGPUValidationMode = "1"
6263
allowLocationSimulation = "YES">
6364
<BuildableProductRunnable
6465
runnableDebuggingMode = "0">

flutter_appauth/example/macos/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@
5959
ignoresPersistentStateOnLaunch = "NO"
6060
debugDocumentVersioning = "YES"
6161
debugServiceExtension = "internal"
62+
enableGPUValidationMode = "1"
6263
allowLocationSimulation = "YES">
6364
<BuildableProductRunnable
6465
runnableDebuggingMode = "0">

flutter_appauth/ios/flutter_appauth.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ A new flutter plugin project.
1515
s.source_files = 'flutter_appauth/Sources/flutter_appauth/**/*.{h,m}'
1616
s.public_header_files = 'flutter_appauth/Sources/flutter_appauth/include/**/*.h'
1717
s.dependency 'Flutter'
18-
s.dependency 'AppAuth', '1.7.6'
19-
s.ios.deployment_target = '11.0'
18+
s.dependency 'AppAuth', '2.0.0'
19+
s.ios.deployment_target = '12.0'
2020
s.resource_bundles = {'flutter_appauth_privacy' => ['flutter_appauth/Sources/flutter_appauth/PrivacyInfo.xcprivacy']}
2121
end
2222

flutter_appauth/ios/flutter_appauth/Package.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import PackageDescription
66
let package = Package(
77
name: "flutter_appauth",
88
platforms: [
9-
.iOS("11.0")
9+
.iOS("12.0")
1010
],
1111
products: [
1212
.library(name: "flutter-appauth", targets: ["flutter_appauth"])
1313
],
14-
dependencies: [.package(url: "https://github.com/openid/AppAuth-iOS", exact: "1.7.6")],
14+
dependencies: [.package(url: "https://github.com/openid/AppAuth-iOS", exact: "2.0.0")],
1515
targets: [
1616
.target(
1717
name: "flutter_appauth",

flutter_appauth/macos/flutter_appauth.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ A new flutter plugin project.
1515
s.source_files = 'flutter_appauth/Sources/flutter_appauth/**/*.{h,m}'
1616
s.public_header_files = 'flutter_appauth/Sources/flutter_appauth/include/**/*.h'
1717
s.dependency 'FlutterMacOS'
18-
s.dependency 'AppAuth', '1.7.6'
18+
s.dependency 'AppAuth', '2.0.0'
1919
s.platform = :osx, '10.14'
2020
s.osx.deployment_target = "10.14"
2121
s.resource_bundles = {'flutter_appauth_privacy' => ['flutter_appauth/Sources/flutter_appauth/PrivacyInfo.xcprivacy']}

flutter_appauth/macos/flutter_appauth/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let package = Package(
1111
products: [
1212
.library(name: "flutter-appauth", targets: ["flutter_appauth"])
1313
],
14-
dependencies: [.package(url: "https://github.com/openid/AppAuth-iOS", exact: "1.7.6")],
14+
dependencies: [.package(url: "https://github.com/openid/AppAuth-iOS", exact: "2.0.0")],
1515
targets: [
1616
.target(
1717
name: "flutter_appauth",

flutter_appauth/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: flutter_appauth
22
description: This plugin provides an abstraction around the Android and iOS
33
AppAuth SDKs so it can be used to communicate with OAuth 2.0 and OpenID
44
Connect providers
5-
version: 9.0.0
5+
version: 9.0.1
66
homepage: https://github.com/MaikuB/flutter_appauth/tree/master/flutter_appauth
77

88
environment:

0 commit comments

Comments
 (0)