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)
2
2
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)
4
7
5
8
* Added the option to use the data protection keychain on macOS. ([ #151 ] ( https://github.com/google/GTMAppAuth/pull/151 ) )
6
9
* Unified the keychain access layer, moving macOS to the modern SecItem API. ([ #150 ] ( https://github.com/google/GTMAppAuth/pull/150 ) )
7
10
* Added Swift Package Manager projects for the example apps. ([ #153 ] ( https://github.com/google/GTMAppAuth/pull/153 ) )
8
11
9
- ## 1.2.3 (2022-03-22)
12
+ # 1.2.3 (2022-03-22)
10
13
11
14
* Fixed Keychain duplicate entry error on macOS. ([ #138 ] ( https://github.com/google/GTMAppAuth/pull/138 ) )
12
15
* Match GTMSessionFetcher's min macOS version to avoid warnings. ([ #142 ] ( https://github.com/google/GTMAppAuth/pull/142 ) )
13
16
14
- ## 1.2.2 (2021-05-04)
17
+ # 1.2.2 (2021-05-04)
15
18
16
19
* Fixed Swift Package Manager issue with Xcode 12.5.
17
20
18
- ## 1.2.1 (2021-04-02)
21
+ # 1.2.1 (2021-04-02)
19
22
20
23
* Address CocoaPod packaging issue in the 1.2.0 release.
21
24
22
- ## 1.2.0 (2021-03-31)
25
+ # 1.2.0 (2021-03-31)
23
26
24
27
* Addressed several Swift Package Manager issues.
25
28
* Restructured the project for cleaner Swift Package Manager support.
26
29
27
- ## 1.1.0 (2020-09-29)
30
+ # 1.1.0 (2020-09-29)
28
31
29
32
* Added Swift Package Manager support.
30
33
* Added watchOS support.
31
34
32
- ## 1.0.0 (2019-08-13)
35
+ # 1.0.0 (2019-08-13)
33
36
34
37
* Moved tvOS authorization support out to a branch.
35
38
36
- ## 0.8.0 (2019-08-01)
39
+ # 0.8.0 (2019-08-01)
37
40
38
41
* Added ` tokenRefreshDelegate ` to ` GTMAppAuthFetcherAuthorization ` .
39
42
* Updated to depend on AppAuth/Core 1.0.
Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |s |
2
2
3
3
s . name = "GTMAppAuth"
4
- s . version = "1.3.0 "
4
+ s . version = "1.3.1 "
5
5
s . summary = "Authorize GTM Session Fetcher requests with AppAuth via GTMAppAuth"
6
6
7
7
s . description = <<-DESC
@@ -34,5 +34,5 @@ requests with AppAuth.
34
34
35
35
s . framework = 'Security'
36
36
s . dependency 'GTMSessionFetcher/Core' , '>= 1.5' , '< 3.0'
37
- s . dependency 'AppAuth/Core' , '~> 1.4 '
37
+ s . dependency 'AppAuth/Core' , '~> 1.6 '
38
38
end
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ let package = Package(
33
33
] ,
34
34
dependencies: [
35
35
. 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 " )
37
37
] ,
38
38
targets: [
39
39
. target(
You can’t perform that action at this time.
0 commit comments