Skip to content

Commit 76393b0

Browse files
authored
Merge pull request #1486 from AzureAD/release/4.0.4
Release ADAL 4.0.4
2 parents 15f0dcf + 8cdf7c8 commit 76393b0

File tree

9 files changed

+20
-7
lines changed

9 files changed

+20
-7
lines changed

ADAL.podspec

+1-1
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 = "4.0.3"
4+
s.version = "4.0.4"
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

ADAL/resources/ios/Framework/Info.plist

+1-1
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>4.0.3</string>
18+
<string>4.0.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

ADAL/resources/mac/Info.plist

+1-1
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>4.0.3</string>
18+
<string>4.0.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

ADAL/src/ADAL_Internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#define ADAL_VER_HIGH 4
3030
#define ADAL_VER_LOW 0
31-
#define ADAL_VER_PATCH 3
31+
#define ADAL_VER_PATCH 4
3232

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

ADAL/tests/app/resources/ios/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>4.0.3</string>
18+
<string>4.0.4</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleURLTypes</key>

ADAL/tests/integration/ADAcquireTokenTests.m

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
#import "ADTokenCacheKey.h"
4545
#import "MSIDBaseToken.h"
4646
#import "MSIDAADV1Oauth2Factory.h"
47+
#import "MSIDRefreshToken.h"
4748
#import "ADEnrollmentGateway+TestUtil.h"
4849

4950
#import "ADTestWebAuthController.h"

build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
script_start_time = timer()
3737

38-
ios_sim_device = "iPhone 6"
38+
ios_sim_device = "iPhone 8"
3939
ios_sim_dest = "-destination 'platform=iOS Simulator,name=" + ios_sim_device + ",OS=latest'"
4040
ios_sim_flags = "-sdk iphonesimulator CODE_SIGN_IDENTITY=\"\" CODE_SIGNING_REQUIRED=NO"
4141

changelog.txt

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Version 4.0.4 (10.23.2019)
2+
-------
3+
* Fix ADAL failure on PkeyAuth request when there's no WPJ entitlement
4+
* Prevent auth controller dismissal by swiping down on iOS 13
5+
* Support removing RT from other accessors
6+
17
Version 4.0.3 (09.18.2019)
28
--------
39
* Added support brokered authentication with UISceneDelegate on iOS 13
@@ -25,6 +31,12 @@ Version 4.0.0 (12.21.2018)
2531
* ADAL now supports iOS 10+ and macOS 10.11+ only
2632
* WKWebView drops network connection if device got locked on iOS 12. It is by design and not configurable.
2733

34+
Version 2.7.16 (10.18.2019)
35+
-------
36+
* Fix ADAL failure on PkeyAuth request when there's no WPJ entitlement
37+
* Prevent auth controller dismissal by swiping down on iOS 13
38+
* Support removing RT from other accessors
39+
2840
Version 2.7.15 (09.17.2019)
2941
--------
3042
* Added support brokered authentication with UISceneDelegate on iOS 13

0 commit comments

Comments
 (0)