From f427a8ef07353de724686e90949616feaf8737ec Mon Sep 17 00:00:00 2001 From: Juan Arias Roldan <1686668+juan-arias@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:22:06 -0800 Subject: [PATCH 1/2] Fix issue with legacy keychain on macOS. --- CHANGELOG.md | 3 +++ MSAL/IdentityCore | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22385a746..11d57b48a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## [2.4.3] +* Fix issue with legacy keychain on macOS. + ## [2.4.2] * Bug fix to prevent crash when deallocating STK SecKeyRef diff --git a/MSAL/IdentityCore b/MSAL/IdentityCore index 5ead67660..50f3c1aff 160000 --- a/MSAL/IdentityCore +++ b/MSAL/IdentityCore @@ -1 +1 @@ -Subproject commit 5ead67660cce7e863468c548cfd3f86e79adede3 +Subproject commit 50f3c1affd4b726c0a3277ace1d7231b5f414c9a From db635d2a5392f7dc9d3e0ef43a402342b0ec5d9b Mon Sep 17 00:00:00 2001 From: Juan Arias Roldan <1686668+juan-arias@users.noreply.github.com> Date: Wed, 19 Nov 2025 16:52:11 -0800 Subject: [PATCH 2/2] Update MSAL version --- MSAL.podspec | 2 +- MSAL/resources/ios/Info.plist | 2 +- MSAL/resources/mac/Info.plist | 2 +- MSAL/src/MSAL_Internal.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MSAL.podspec b/MSAL.podspec index 21f1cbc91..123a7b789 100644 --- a/MSAL.podspec +++ b/MSAL.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "MSAL" - s.version = "2.4.1" + s.version = "2.4.3" s.summary = "Microsoft Authentication Library (MSAL) for iOS" s.description = <<-DESC 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. diff --git a/MSAL/resources/ios/Info.plist b/MSAL/resources/ios/Info.plist index 55bd619cd..f41f1bd75 100644 --- a/MSAL/resources/ios/Info.plist +++ b/MSAL/resources/ios/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.4.1 + 2.4.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSPrincipalClass diff --git a/MSAL/resources/mac/Info.plist b/MSAL/resources/mac/Info.plist index 4d28e60ab..d9a526407 100644 --- a/MSAL/resources/mac/Info.plist +++ b/MSAL/resources/mac/Info.plist @@ -15,7 +15,7 @@ CFBundlePackageType FMWK CFBundleShortVersionString - 2.4.1 + 2.4.3 CFBundleVersion $(CURRENT_PROJECT_VERSION) NSHumanReadableCopyright diff --git a/MSAL/src/MSAL_Internal.h b/MSAL/src/MSAL_Internal.h index 8e0b96760..f3c3e311e 100644 --- a/MSAL/src/MSAL_Internal.h +++ b/MSAL/src/MSAL_Internal.h @@ -27,7 +27,7 @@ #define MSAL_VER_HIGH 2 #define MSAL_VER_LOW 4 -#define MSAL_VER_PATCH 1 +#define MSAL_VER_PATCH 3 #define STR_HELPER(x) #x #define STR(x) STR_HELPER(x)