Skip to content

Commit f67a0a0

Browse files
authored
Merge pull request #1581 from AzureAD/release/6.0.0
Release ADAL 6.0.0
2 parents 6d6b225 + 70c6503 commit f67a0a0

File tree

203 files changed

+4687
-4667
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

203 files changed

+4687
-4667
lines changed

.travis.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

ADAL.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22
s.name = "ADAL"
33
s.module_name = "ADAL"
4-
s.version = "5.0.0"
4+
s.version = "6.0.0"
55
s.summary = "The ADAL SDK for iOS gives you the ability to add Azure Identity authentication to your application"
66

77
s.description = <<-DESC
@@ -49,10 +49,10 @@ Pod::Spec.new do |s|
4949
# This is a hack because one of the headers is public on mac but private on ios
5050
s.subspec 'tokencacheheader' do |ph|
5151
ph.platform = :ios
52-
ph.ios.source_files = "ADAL/src/public/mac/ADTokenCache.h"
53-
# This extra nonsense is so that it doesn't make ADTokenCache.h a public header on iOS
52+
ph.ios.source_files = "ADAL/src/public/mac/ADALTokenCache.h"
53+
# This extra nonsense is so that it doesn't make ADALTokenCache.h a public header on iOS
5454
# And also doesn't generate a podspec warning
55-
ph.ios.private_header_files = "ADAL/src/public/mac/ADTokenCache.h"
55+
ph.ios.private_header_files = "ADAL/src/public/mac/ADALTokenCache.h"
5656
end
5757

5858
# Note, ADAL has limited support for running in app extensions.

ADAL/ADAL.xcodeproj/project.pbxproj

Lines changed: 780 additions & 804 deletions
Large diffs are not rendered by default.

ADAL/automation/ADAutoBaseViewController.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
@class ADAutoRequestViewController;
2727
@class ADAutoPassedInWebViewController;
28-
@class ADAuthenticationContext;
29-
@protocol ADTokenCacheDataSource;
28+
@class ADALAuthenticationContext;
29+
@protocol ADALTokenCacheDataSource;
3030

3131
@interface ADAutoBaseViewController: ADAutoViewController
3232

@@ -35,8 +35,8 @@
3535

3636
- (void)showRequestDataViewWithCompletionHandler:(ADAutoParamBlock)completionHandler;
3737
- (void)showResultViewWithResult:(NSString *)resultJson logs:(NSString *)resultLogs;
38-
- (void)showPassedInWebViewControllerWithContext:(ADAuthenticationContext *)context;
39-
- (id<ADTokenCacheDataSource>)cacheDatasource;
38+
- (void)showPassedInWebViewControllerWithContext:(ADALAuthenticationContext *)context;
39+
- (id<ADALTokenCacheDataSource>)cacheDatasource;
4040
- (void)clearCache;
4141
- (void)clearKeychain;
4242
- (void)openURL:(NSURL *)url;

ADAL/automation/ADAutoMainViewController.m

Lines changed: 42 additions & 42 deletions
Large diffs are not rendered by default.

ADAL/automation/ios/ADAutoBaseViewController.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
#import "ADAutoResultViewController.h"
2727
#import "ADAutoPassedInWebViewController.h"
2828
#import "ADAL.h"
29-
#import "ADTokenCacheDataSource.h"
30-
#import "ADKeychainTokenCache+Internal.h"
29+
#import "ADALTokenCacheDataSource.h"
30+
#import "ADALKeychainTokenCache+Internal.h"
3131
#import "MSIDKeychainTokenCache.h"
3232
#import <WebKit/WebKit.h>
3333

@@ -88,7 +88,7 @@ - (void)presentResults:(NSString *)resultJson logs:(NSString *)resultLogs
8888
@"resultLogs":resultLogs ? resultLogs : @""}];
8989
}
9090

91-
- (void)showPassedInWebViewControllerWithContext:(ADAuthenticationContext *)context
91+
- (void)showPassedInWebViewControllerWithContext:(ADALAuthenticationContext *)context
9292
{
9393
context.webView = self.webView;
9494

@@ -107,9 +107,9 @@ - (void)viewDidLoad
107107

108108
}
109109

110-
- (id<ADTokenCacheDataSource>)cacheDatasource
110+
- (id<ADALTokenCacheDataSource>)cacheDatasource
111111
{
112-
return [ADKeychainTokenCache new];
112+
return [ADALKeychainTokenCache new];
113113
}
114114

115115
- (void)clearCache

ADAL/automation/ios/ADAutoPassedInWebViewController.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
// THE SOFTWARE.
2323

2424
#import "ADAutoPassedInWebViewController.h"
25-
#import "ADWebAuthController.h"
25+
#import "ADALWebAuthController.h"
2626
#import <WebKit/WebKit.h>
2727

2828
@interface ADAutoPassedInWebViewController ()
@@ -47,7 +47,7 @@ - (void)viewWillAppear:(BOOL)animated
4747
- (IBAction)cancelTapped:(id)sender {
4848

4949
[self dismissViewControllerAnimated:YES completion:^{
50-
[ADWebAuthController cancelCurrentWebAuthSession];
50+
[ADALWebAuthController cancelCurrentWebAuthSession];
5151
}];
5252
}
5353

ADAL/automation/macos/ADAutoBaseViewController.m

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
#import "ADAutoRequestViewController.h"
2626
#import "ADAutoResultViewController.h"
2727
#import "ADAL.h"
28-
#import "ADTokenCacheDataSource.h"
29-
#import "ADTokenCache.h"
30-
#import "ADTokenCache+Internal.h"
28+
#import "ADALTokenCacheDataSource.h"
29+
#import "ADALTokenCache.h"
30+
#import "ADALTokenCache+Internal.h"
3131
#import "ADTestAppCache.h"
3232
#import "ADAutoPassedInWebViewController.h"
3333

@@ -70,28 +70,28 @@ - (NSViewController *)viewControllerAtIndex:(NSUInteger)index
7070
return tabViewController.tabViewItems[index].viewController;
7171
}
7272

73-
- (void)showPassedInWebViewControllerWithContext:(ADAuthenticationContext *)context
73+
- (void)showPassedInWebViewControllerWithContext:(ADALAuthenticationContext *)context
7474
{
7575
[self selectTabViewAtIndex:3];
7676
ADAutoPassedInWebViewController *webViewController = (ADAutoPassedInWebViewController *) [self viewControllerAtIndex:3];
7777
[context setWebView:webViewController.passedInWebview];
7878
}
7979

8080

81-
- (id<ADTokenCacheDataSource>)cacheDatasource
81+
- (id<ADALTokenCacheDataSource>)cacheDatasource
8282
{
83-
return [ADTokenCache defaultCache];
83+
return [ADALTokenCache defaultCache];
8484
}
8585

8686
- (void)clearCache
8787
{
88-
[[ADTokenCache defaultCache].macTokenCache clear];
88+
[[ADALTokenCache defaultCache].macTokenCache clear];
8989
[[ADTestAppCache sharedCache] clearCacheWithError:nil];
9090
}
9191

9292
- (void)clearKeychain
9393
{
94-
[[ADTokenCache defaultCache].macTokenCache clear];
94+
[[ADALTokenCache defaultCache].macTokenCache clear];
9595
[[ADTestAppCache sharedCache] clearCacheWithError:nil];
9696
}
9797

ADAL/automation/tests/interactive/ADALAADLoginTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ - (void)testAADLogin_withPromptAlways_LoginHint_loginMultipleAccounts
440440
[self assertAccessTokenNotNil];
441441
}
442442

443-
// #296758: Different ADUserIdentifierType settings
443+
// #296758: Different ADALUserIdentifierType settings
444444
- (void)testAADLogin_withPromptAlways_LoginHint_differentUserTypeSettings
445445
{
446446
MSIDTestAutomationConfigurationRequest *configurationRequest = [MSIDTestAutomationConfigurationRequest new];

0 commit comments

Comments
 (0)