Skip to content

Commit 3d36a58

Browse files
authored
Prep for 1.6.0 release (#722)
* Reformat changelog. * Update changelog for 1.6.0 release. * Bump the podspec version for the 1.6.0 release.
1 parent c687980 commit 3d36a58

File tree

2 files changed

+37
-35
lines changed

2 files changed

+37
-35
lines changed

AppAuth.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "AppAuth"
4-
s.version = "1.5.0"
4+
s.version = "1.6.0"
55
s.summary = "AppAuth for iOS and macOS is a client SDK for communicating with OAuth 2.0 and OpenID Connect providers."
66

77
s.description = <<-DESC

CHANGELOG.md

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,53 @@
1-
# AppAuth for iOS and macOS Changelog
1+
# 1.6.0
2+
- Added a `prefersEphemeralSession` parameter for external user-agents. ([#645](https://github.com/openid/AppAuth-iOS/pull/645))
3+
- Fixed errors encountered when using secure coding to decode `OIDAuthState`. ([#656](https://github.com/openid/AppAuth-iOS/pull/656), [#721](https://github.com/openid/AppAuth-iOS/pull/721))
24

3-
## 1.5.0
5+
# 1.5.0
46
- Improved tvOS support. ([#111](https://github.com/openid/AppAuth-iOS/issues/111))
57
- ASWebAuthenticationSession on macOS. ([#675](https://github.com/openid/AppAuth-iOS/pull/675))
68

7-
## 1.4.0
9+
# 1.4.0
810

9-
### Added
11+
## Added
1012

1113
1. Support for Swift Package Manager
1214

13-
## 1.3.1
15+
# 1.3.1
1416

15-
### Fixes
17+
## Fixes
1618

1719
1. Removed `UIWebView` reference in comment
1820

19-
## 1.3.0
21+
# 1.3.0
2022

21-
### Notable Changes
23+
## Notable Changes
2224

2325
1. Support for Mac Catalyst
2426

25-
## 1.2.0
27+
# 1.2.0
2628

27-
### Notable Changes
29+
## Notable Changes
2830

2931
1. Support for iOS 13
3032

31-
## 1.1.0
33+
# 1.1.0
3234

33-
### Notable Changes
35+
## Notable Changes
3436

3537
1. [OpenID Connect RP-Initiated Logout](http://openid.net/specs/openid-connect-session-1_0.html#RPLogout) implemented
3638
2. Added logic for the `azp` claim
3739

38-
### Fixes
40+
## Fixes
3941

4042
1. Scheme comparison for redirects is now case insensitive
4143
2. Improved error handling during discovery when a non-JSON document
4244
is encountered.
4345

44-
## 1.0.0
46+
# 1.0.0
4547

4648
1.0.0! 🎉
4749

48-
### Notable Changes
50+
## Notable Changes
4951

5052
1. **All deprecated APIs removed.** Please ensure your code builds on
5153
version 0.95.0 with no deprecation warnings before upgrading!
@@ -62,20 +64,20 @@
6264
4. `AppAuth/Core` subspec, and AppAuthCore Framework added to support
6365
iOS extensions.
6466

65-
## 1.0.0.beta2 (2018-09-27)
67+
# 1.0.0.beta2 (2018-09-27)
6668

67-
### Notable Changes
69+
## Notable Changes
6870

6971
1. `AppAuth/Core` subspec, and AppAuthCore Framework added to support
7072
iOS extensions.
7173

72-
## 1.0.0.beta1 (2018-09-27)
74+
# 1.0.0.beta1 (2018-09-27)
7375

7476
First 1.0.0 beta! HEAD is now tracking changes for the 1.0.0 release.
7577
The `pre-1.0` branch was cut prior to the breaking changes for 1.0.0,
7678
bug fixes for critical issues may be backported for a time.
7779

78-
### Notable Changes
80+
## Notable Changes
7981

8082
1. **All deprecated APIs removed.** Please ensure your code builds on
8183
version 0.95.0 with no deprecation warnings before upgrading!
@@ -90,13 +92,13 @@ bug fixes for critical issues may be backported for a time.
9092
3. macOS 32-bit support removed. If you need this support, stay on the
9193
pre-1.0 releases.
9294

93-
### Fixes
95+
## Fixes
9496

9597
1. All fixes in the 0.95.0 release are incorporated in this release.
9698

97-
## 0.95.0 (2018-09-27)
99+
# 0.95.0 (2018-09-27)
98100

99-
### Fixes
101+
## Fixes
100102

101103
1. `x-www-form-urlencoded` encoding and decoding should be 100%
102104
spec compliant now, previously the `+` character was not decoded as
@@ -105,19 +107,19 @@ bug fixes for critical issues may be backported for a time.
105107
2. `scope` no longer sent during token refresh (was redundant)
106108
https://github.com/openid/AppAuth-iOS/pull/301
107109

108-
## 0.94.0 (2018-07-13)
110+
# 0.94.0 (2018-07-13)
109111

110-
### Fixes
112+
## Fixes
111113
1. `form-urlencode` client ID and client secret in Authorization header
112114

113-
### Added
115+
## Added
114116

115117
1. Samples have icons now!
116118
2. Output trace logs by defining `_APPAUTHTRACE`
117119

118-
## 0.93.0 (2018-06-26)
120+
# 0.93.0 (2018-06-26)
119121

120-
### Notable Changes
122+
## Notable Changes
121123

122124
1. Implements OpenID Connect (ID Token handling) and the OpenID Connect
123125
RP Certification test suite.
@@ -142,7 +144,7 @@ bug fixes for critical issues may be backported for a time.
142144
https://github.com/openid/AppAuth-iOS/issues/200
143145
https://github.com/openid/AppAuth-iOS/pull/201
144146

145-
### Upgrading to 0.93.0
147+
## Upgrading to 0.93.0
146148

147149
0.93.0 deprecates several methods. To update your code to avoid the
148150
deprecated methods (which will be required for the 1.0.0 release),
@@ -156,7 +158,7 @@ for the new methods to use in those cases.
156158
Most users who are using the convenience methods of AppAuth will only
157159
need to make the following 3 minor changes to their AppDelegate:
158160

159-
#### Import:
161+
### Import:
160162

161163
Change
162164
```objc
@@ -167,7 +169,7 @@ to
167169
@protocol OIDExternalUserAgentSession;
168170
```
169171

170-
#### Property:
172+
### Property:
171173

172174
Change
173175
```objc
@@ -178,7 +180,7 @@ to
178180
@property(nonatomic, strong, nullable) id<OIDExternalUserAgentSession>currentAuthorizationFlow;
179181
```
180182

181-
#### Implementation of `-(BOOL)application:openURL:options:`
183+
### Implementation of `-(BOOL)application:openURL:options:`
182184
Change
183185
```objc
184186
if ([_currentAuthorizationFlow resumeAuthorizationFlowWithURL:url]) {
@@ -192,14 +194,14 @@ See also the changes made to the sample which you can copy:
192194
https://github.com/openid/AppAuth-iOS/commit/619bb7c7d5f83cc2ed19380d425ca8afa279644c?diff=unified
193195

194196

195-
## 0.92.0 (2018-01-05)
197+
# 0.92.0 (2018-01-05)
196198

197-
### Improvements
199+
## Improvements
198200

199201
1. Added an official Swift sample, and included Swift testing in the
200202
continuous integration tests.
201203

202-
## Pre 0.92.0
204+
# Pre 0.92.0
203205

204206
No changelog entries exist for changes prior to 2018, please review the
205207
[git history](https://github.com/openid/AppAuth-iOS/commits/0.91.0).

0 commit comments

Comments
 (0)