Skip to content

Commit da3067f

Browse files
authored
Merge pull request #2280 from AzureAD/swagup/merge_release_1.4.1_into_dev
Merge release 1.4.1 into dev
2 parents 5401eb0 + bb6a50e commit da3067f

File tree

8 files changed

+12
-27
lines changed

8 files changed

+12
-27
lines changed

CHANGELOG.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
1-
## [TBD]:
2-
* Update common core submodule with changes related to upgrade registration.
3-
* Add a new flag MSALThrottlingCacheHitKey for error returned from client's throttling #2257
4-
* Update common core submodule with device register action with token protection hint.
5-
* Native Auth logs are appropriately masked to ensure sensitive information is protected.
6-
7-
## [1.4.1]:
8-
* Update Native Auth logging levels for improved clarity and consistency. #2184
1+
## [1.4.1]
2+
* Update Native Auth logging levels for improved clarity and consistency. (#2184)
3+
* Update common core submodule with changes related to upgrade registration. (#2180)
4+
* Add a new flag MSALThrottlingCacheHitKey for error returned from client's throttling. (#2257)
5+
* Update common core submodule with device register action with token protection hint. (#2244)
6+
* Native Auth logs are appropriately masked to ensure sensitive information is protected. (#2253)
97

108
## [1.4.0]:
119
* Add platform sequence param. #2192

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.4.0"
3+
s.version = "1.4.1"
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/IdentityCore

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.4.0</string>
18+
<string>1.4.1</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.4.0</string>
18+
<string>1.4.1</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 4
30-
#define MSAL_VER_PATCH 0
30+
#define MSAL_VER_PATCH 1
3131

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

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ let package = Package(
1313
targets: ["MSAL"]),
1414
],
1515
targets: [
16-
.binaryTarget(name: "MSAL", url: "https://github.com/AzureAD/microsoft-authentication-library-for-objc/releases/download/1.4.0/MSAL.zip", checksum: "0bd52aa02ef94ec39ce7912fb66c5388b48cfd89c43ee3040b2d242505014fc8")
16+
.binaryTarget(name: "MSAL", url: "https://github.com/AzureAD/microsoft-authentication-library-for-objc/releases/download/1.4.1/MSAL.zip", checksum: "af332afce9499adc9c80604d6a98a00266345d5df651382dd068688939c078c7")
1717
]
1818
)

azure_pipelines/automation.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -79,19 +79,6 @@ jobs:
7979
issue_body = '''@AzureAD/appleidentity \nAutomation failed for [$(repositoryName)]({0}) ran against commit : {1} \n Pipeline URL : [{2}]({2})'''.format('$(Build.Repository.Uri)', git_commit, pipeline_uri)
8080
github.create_issue(github_org, repo, issue_title, issue_body, labels=['automation failure'])
8181
82-
- job: e2e_test_native_auth
83-
displayName: 'Run MSAL E2E tests for native auth'
84-
timeoutInMinutes: 30
85-
cancelTimeoutInMinutes: 5
86-
workspace:
87-
clean: all
88-
89-
steps:
90-
- template: templates/tests-with-conf-file.yml
91-
parameters:
92-
schema: 'MSAL iOS Native Auth E2E Tests'
93-
build: 'MSAL iOS Native Auth E2E Tests_MSAL iOS Native Auth E2E Tests'
94-
9582
- job: cocoapods_lib_lint
9683
displayName: Run Cocoapods lib lint
9784
timeoutInMinutes: 30

0 commit comments

Comments
 (0)