File tree Expand file tree Collapse file tree 3 files changed +15
-12
lines changed
Expand file tree Collapse file tree 3 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 1- # GTMAppAuth Changelog
1+ # 1.3.1 (2022-09-13)
22
3- ## 1.3.0 (2022-05-06)
3+ * Updated the GTMSessionFetcher dependency to allow 2.x versions. ([ #155 ] ( https://github.com/google/GTMAppAuth/pull/155 ) , [ #175 ] ( https://github.com/google/GTMAppAuth/pull/175 ) )
4+ * Use secure coding with ` NSKeyedArchiver ` when available. ([ #151 ] ( https://github.com/google/GTMAppAuth/pull/145 ) )
5+
6+ # 1.3.0 (2022-05-06)
47
58* Added the option to use the data protection keychain on macOS. ([ #151 ] ( https://github.com/google/GTMAppAuth/pull/151 ) )
69* Unified the keychain access layer, moving macOS to the modern SecItem API. ([ #150 ] ( https://github.com/google/GTMAppAuth/pull/150 ) )
710* Added Swift Package Manager projects for the example apps. ([ #153 ] ( https://github.com/google/GTMAppAuth/pull/153 ) )
811
9- ## 1.2.3 (2022-03-22)
12+ # 1.2.3 (2022-03-22)
1013
1114* Fixed Keychain duplicate entry error on macOS. ([ #138 ] ( https://github.com/google/GTMAppAuth/pull/138 ) )
1215* Match GTMSessionFetcher's min macOS version to avoid warnings. ([ #142 ] ( https://github.com/google/GTMAppAuth/pull/142 ) )
1316
14- ## 1.2.2 (2021-05-04)
17+ # 1.2.2 (2021-05-04)
1518
1619* Fixed Swift Package Manager issue with Xcode 12.5.
1720
18- ## 1.2.1 (2021-04-02)
21+ # 1.2.1 (2021-04-02)
1922
2023* Address CocoaPod packaging issue in the 1.2.0 release.
2124
22- ## 1.2.0 (2021-03-31)
25+ # 1.2.0 (2021-03-31)
2326
2427* Addressed several Swift Package Manager issues.
2528* Restructured the project for cleaner Swift Package Manager support.
2629
27- ## 1.1.0 (2020-09-29)
30+ # 1.1.0 (2020-09-29)
2831
2932* Added Swift Package Manager support.
3033* Added watchOS support.
3134
32- ## 1.0.0 (2019-08-13)
35+ # 1.0.0 (2019-08-13)
3336
3437* Moved tvOS authorization support out to a branch.
3538
36- ## 0.8.0 (2019-08-01)
39+ # 0.8.0 (2019-08-01)
3740
3841* Added ` tokenRefreshDelegate ` to ` GTMAppAuthFetcherAuthorization ` .
3942* Updated to depend on AppAuth/Core 1.0.
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22
33 s . name = "GTMAppAuth"
4- s . version = "1.3.0 "
4+ s . version = "1.3.1 "
55 s . summary = "Authorize GTM Session Fetcher requests with AppAuth via GTMAppAuth"
66
77 s . description = <<-DESC
@@ -34,5 +34,5 @@ requests with AppAuth.
3434
3535 s . framework = 'Security'
3636 s . dependency 'GTMSessionFetcher/Core' , '>= 1.5' , '< 3.0'
37- s . dependency 'AppAuth/Core' , '~> 1.4 '
37+ s . dependency 'AppAuth/Core' , '~> 1.6 '
3838end
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ let package = Package(
3333 ] ,
3434 dependencies: [
3535 . package ( url: " https://github.com/google/gtm-session-fetcher.git " , " 1.5.0 " ..< " 3.0.0 " ) ,
36- . package ( url: " https://github.com/openid/AppAuth-iOS.git " , " 1.4 .0 " ..< " 2.0.0 " )
36+ . package ( url: " https://github.com/openid/AppAuth-iOS.git " , " 1.6 .0 " ..< " 2.0.0 " )
3737 ] ,
3838 targets: [
3939 . target(
You can’t perform that action at this time.
0 commit comments