Skip to content

Commit ce5ca1a

Browse files
authored
Merge pull request #551 from AzureAD/oldalton/merge_0.3.1_into_master
Merge 0.3.1 hot fix into 0.4.x based master (0.4.2)
2 parents 2066f07 + ee275e9 commit ce5ca1a

File tree

7 files changed

+15
-6
lines changed

7 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.4.2] - 2019-05-06
2+
### Fixed
3+
- Applying 0.3.1 hotfix changes to latest 0.4.x release
4+
15
## [0.4.1] - 2019-05-02
26
### Fixed
37
- Removed linked frameworks from static library targets
@@ -8,6 +12,11 @@
812
- Added support for custom B2C domains
913
- Improved MSAL error handling
1014

15+
## [0.3.1] - 2019-05-06
16+
### Fixed
17+
- Better error handling in CBA cancellation flows
18+
- Don't read corrupted refresh tokens from cache
19+
1120
## [0.3.0] - 2019-04-22
1221
### Added
1322
- Added broker support to MSAL iOS SDK

MSAL.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "MSAL"
3-
s.version = "0.4.1"
3+
s.version = "0.4.2"
44
s.summary = "Microsoft Authentication Library (MSAL) Preview for iOS"
55

66
s.description = <<-DESC

MSAL/resources/ios/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.4.1</string>
18+
<string>0.4.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSPrincipalClass</key>

MSAL/resources/mac/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>0.4.1</string>
18+
<string>0.4.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

MSAL/src/MSALPublicClientApplication.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ + (BOOL)handleMSALResponse:(NSURL *)response
340340
return YES;
341341
}
342342

343-
if ([MSIDCertAuthHandler completeCertAuthChallenge:response])
343+
if ([MSIDCertAuthHandler completeCertAuthChallenge:response error:nil])
344344
{
345345
return YES;
346346
}

MSAL/src/MSAL_Internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#define MSAL_VER_HIGH 0
2929
#define MSAL_VER_LOW 4
30-
#define MSAL_VER_PATCH 1
30+
#define MSAL_VER_PATCH 2
3131

3232
#define STR_HELPER(x) #x
3333
#define STR(x) STR_HELPER(x)

0 commit comments

Comments
 (0)