Skip to content

Commit e68a764

Browse files
author
Kanishk Panwar
committed
Merge pull request #320 from AzureAD/Release-1.2.x
Release 1.2.4
2 parents 6f061c4 + 263f402 commit e68a764

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

ADALiOS.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 = "ADALiOS"
3-
s.version = "1.2.3"
3+
s.version = "1.2.4"
44
s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application"
55

66
s.description = <<-DESC

ADALiOS/ADALiOS/ADALiOS.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
//version in static define until we identify a better place:
2121
#define ADAL_VER_HIGH 1
2222
#define ADAL_VER_LOW 2
23-
#define ADAL_VER_PATCH 3
23+
#define ADAL_VER_PATCH 4
2424

2525
#import "ADLogger.h"
2626
#import "ADErrorCodes.h"

ADALiOS/ADALiOS/ADAuthenticationBroker.m

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,13 @@ - (void)start:(NSURL *)startURL
226226
// Save the completion block
227227
_completionBlock = [completionBlock copy];
228228
ADAuthenticationError* error = nil;
229-
229+
230+
_ntlmSession = [ADNTLMHandler startWebViewNTLMHandlerWithError:nil];
231+
if (_ntlmSession)
232+
{
233+
AD_LOG_INFO(@"Authorization UI", @"NTLM support enabled.");
234+
}
235+
230236
if (webView)
231237
{
232238
AD_LOG_INFO(@"Authorization UI", @"Use the application provided WebView.");
@@ -257,12 +263,6 @@ - (void)start:(NSURL *)startURL
257263

258264
if (parent)
259265
{
260-
_ntlmSession = [ADNTLMHandler startWebViewNTLMHandlerWithError:nil];
261-
if (_ntlmSession)
262-
{
263-
AD_LOG_INFO(@"Authorization UI", @"NTLM support enabled.");
264-
}
265-
266266
parentController = parent;
267267
// Load our resource bundle, find the navigation controller for the authentication view, and then the authentication view
268268
UINavigationController *navigationController = [[self.class storyboard:&error] instantiateViewControllerWithIdentifier:@"LogonNavigator"];

ADALiOS/ADALiOSBundle/ADALiOSBundle-Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>BNDL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.2.3</string>
20+
<string>1.2.4</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>1.2.3</string>
24+
<string>1.2.4</string>
2525
<key>NSHumanReadableCopyright</key>
2626
<string>Copyright © 2013 MS Open Tech. All rights reserved.</string>
2727
<key>NSPrincipalClass</key>

changelog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 1.2.4
2+
-------------
3+
* Support NTLM for developers who provide custom webview.
4+
15
Version 1.2.3
26
-------------
37
* Fix a bug (#316) where non-ASCII input would result in a nil base64 value.

0 commit comments

Comments
 (0)