Skip to content

Commit c4fd388

Browse files
authored
Merge pull request #801 from AzureAD/release/1.0.5
Release MSAL 1.0.5
2 parents dd25fe3 + 9468c7f commit c4fd388

File tree

10 files changed

+17
-9
lines changed

10 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.0.5] - 2019-12-13
2+
### Fixed
3+
- Account lookup fix when no refresh tokens present (#799)
4+
15
## [1.0.4] - 2019-11-26
26
### Fixed
37
- Fixed external account matching when identifier is not present (#787)

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 = "1.0.4"
3+
s.version = "1.0.5"
44
s.summary = "Microsoft Authentication Library (MSAL) Preview for iOS"
55

66
s.description = <<-DESC

MSAL/IdentityCore

Submodule IdentityCore updated 47 files

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>1.0.4</string>
18+
<string>1.0.5</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>1.0.4</string>
18+
<string>1.0.5</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

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 1
2929
#define MSAL_VER_LOW 0
30-
#define MSAL_VER_PATCH 4
30+
#define MSAL_VER_PATCH 5
3131

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

MSAL/src/instance/oauth2/MSALOauth2Provider.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ @implementation MSALOauth2Provider
4242

4343
- (instancetype)initWithClientId:(NSString *)clientId
4444
tokenCache:(MSIDDefaultTokenCacheAccessor *)tokenCache
45-
accountMetadataCache:(MSIDAccountMetadataCacheAccessor *)accountMetadataCache;
45+
accountMetadataCache:(MSIDAccountMetadataCacheAccessor *)accountMetadataCache
4646

4747
{
4848
self = [super init];

MSAL/test/app/ios/MSALTestAppSettingsViewController.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger
169169
return 0;
170170
}
171171

172-
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView;
172+
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
173173
{
174174
(void)tableView;
175175
return 2;

MSAL/test/app/ios/MSALTestAppUserViewController.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
#import "MSALTestAppSettings.h"
3131
#import "MSALAccountId.h"
3232
#import "MSALAccount.h"
33+
#import "MSALAccountEnumerationParameters.h"
3334

3435
@interface MSALTestAppUserViewController ()
3536

@@ -84,7 +85,10 @@ - (void)refresh
8485
return;
8586
}
8687

87-
_accounts = [application allAccounts:nil];
88+
MSALAccountEnumerationParameters *parameters = [MSALAccountEnumerationParameters new];
89+
parameters.returnOnlySignedInAccounts = YES;
90+
91+
_accounts = [application accountsForParameters:parameters error:nil];
8892
dispatch_async(dispatch_get_main_queue(), ^{
8993
[super refresh];
9094
});

MSAL/test/unit/utils/MSALTestURLSessionDataTask.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ @implementation MSALTestURLSessionDataTask
4242

4343
- (id)initWithRequest:(NSURLRequest *)request
4444
session:(MSIDTestURLSession *)session
45-
completionHandler:(MSALTestHttpCompletionBlock)completionHandler;
45+
completionHandler:(MSALTestHttpCompletionBlock)completionHandler
4646
{
4747
(void)completionHandler;
4848

0 commit comments

Comments
 (0)