Skip to content

Commit eaa108b

Browse files
authored
Merge pull request #2388 from AzureAD/release/1.6.2
MSAL Release 1.6.2
2 parents b0ef73f + 2807143 commit eaa108b

26 files changed

+305
-142
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [1.6.2]:
2+
* Add native auth instructions to error description when reset password required is returned (#2582)
3+
* Save error received from ESTS, and return it to the client on silent broker calls (#2379)
4+
* Support web_page_uri (#2384)
5+
16
## [1.6.1]:
27
* Support extra query parameters on logout endpoint (#2339)
38
* Add support functions to help broker improve cross cloud experience (#2361)

CODEOWNERS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# Unless a later match takes precedence, these users will be requested
33
# for review whenever someone opens a pull request.
44
* @AzureAD/AppleIdentityTeam
5-
# @AzureAD/AppleIdentityTeam and @AzureAD/MSAL-ObjC-CIAM will be the co-owners of MSAL.project and CHANGELOG.md files
5+
# @AzureAD/AppleIdentityTeam and @AzureAD/MSAL-ObjC-CIAM will be the co-owners of MSAL.project, CHANGELOG.md and all files under azure_pipelines
66
/MSAL/MSAL.xcodeproj/project.pbxproj @AzureAD/AppleIdentityTeam @AzureAD/MSAL-ObjC-CIAM
77
CHANGELOG.md @AzureAD/AppleIdentityTeam @AzureAD/MSAL-ObjC-CIAM
8+
/azure_pipelines/ @AzureAD/AppleIdentityTeam @AzureAD/MSAL-ObjC-CIAM
89
# @AzureAD/MSAL-ObjC-CIAM owns any files in the */native_auth
910
# directories, subdirectories and other files related to native auth.
1011
/MSAL/module.modulemap @AzureAD/MSAL-ObjC-CIAM

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.6.1"
3+
s.version = "1.6.2"
44
s.summary = "Microsoft Authentication Library (MSAL) for iOS"
55
s.description = <<-DESC
66
The MSAL library for iOS gives your app the ability to begin using the Microsoft Cloud by supporting Microsoft Azure Active Directory and Microsoft Accounts in a converged experience using industry standard OAuth2 and OpenID Connect. The library also supports Microsoft Azure B2C for those using our hosted identity management service.

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.6.1</string>
18+
<string>1.6.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>1.6.1</string>
18+
<string>1.6.2</string>
1919
<key>CFBundleVersion</key>
2020
<string>$(CURRENT_PROJECT_VERSION)</string>
2121
<key>NSHumanReadableCopyright</key>

MSAL/src/MSALError.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
NSString *MSALErrorDomain = @"MSALErrorDomain";
3131
NSString *MSALOAuthErrorKey = @"MSALOAuthErrorKey";
3232
NSString *MSALOAuthSubErrorKey = @"MSALOAuthSubErrorKey";
33+
NSString *MSALOAuthSubErrorDescriptionKey = @"MSALOAuthSubErrorDescriptionKey";
3334
NSString *MSALErrorDescriptionKey = @"MSALErrorDescriptionKey";
3435
NSString *MSALSTSErrorCodesKey = @"MSALSTSErrorCodesKey";
3536
NSString *MSALInternalErrorCodeKey = @"MSALInternalErrorCodeKey";

MSAL/src/MSALErrorConverter.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ + (void)initialize
142142
MSIDSTSErrorCodesKey : MSALSTSErrorCodesKey,
143143
MSIDOAuthErrorKey: MSALOAuthErrorKey,
144144
MSIDOAuthSubErrorKey: MSALOAuthSubErrorKey,
145+
MSIDOAuthSubErrorDescriptionKey: MSALOAuthSubErrorDescriptionKey,
145146
MSIDDeclinedScopesKey: MSALDeclinedScopesKey,
146147
MSIDGrantedScopesKey: MSALGrantedScopesKey,
147148
MSIDUserDisplayableIdkey: MSALDisplayableUserIdKey,

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 6
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)

MSAL/src/native_auth/network/errors/MSALNativeAuthESTSApiErrorCodes.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ enum MSALNativeAuthESTSApiErrorCodes: Int {
2828
case invalidCredentials = 50126
2929
case userNotHaveAPassword = 500222
3030
case invalidRequestParameter = 90100
31+
case resetPasswordRequired = 50142
3132
}

0 commit comments

Comments
 (0)