Skip to content

Commit

Permalink
Change for March 2024 release (#2057)
Browse files Browse the repository at this point in the history
Co-authored-by: melissaahn <melissaahn@microsoft.com>
  • Loading branch information
somalaya and melissaahn committed Mar 14, 2024
1 parent 2d74f93 commit 7f4365d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,13 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-andr

vNext
----------

Version 5.2.0
----------
- [MINOR] Rename "is QR + PIN available" API to "get preferred auth method". (#2012)
- [MINOR] Add support for CIAM custom domain (#2029)
- [MINOR] Removing passkey feature flag (#2044)
- [MINOR] Update common @17.2.0

Version 5.1.0
----------
Expand Down
2 changes: 1 addition & 1 deletion common
Submodule common updated 26 files
+5 −1 changelog.txt
+1 −1 common/build.gradle
+3 −1 common/src/main/java/com/microsoft/identity/common/internal/activebrokerdiscovery/BrokerDiscoveryClient.kt
+4 −1 .../src/main/java/com/microsoft/identity/common/internal/activebrokerdiscovery/BrokerDiscoveryClientFactory.kt
+104 −0 common/src/main/java/com/microsoft/identity/common/internal/broker/ipc/ContentProviderStatusLoader.kt
+8 −22 common/src/main/java/com/microsoft/identity/common/internal/broker/ipc/ContentProviderStrategy.java
+34 −0 common/src/main/java/com/microsoft/identity/common/internal/broker/ipc/IContentProviderStatusLoader.kt
+43 −6 common/src/main/java/com/microsoft/identity/common/internal/cache/BaseActiveBrokerCache.kt
+0 −50 common/src/main/java/com/microsoft/identity/common/internal/cache/ClientActiveBrokerCache.kt
+12 −0 common/src/main/java/com/microsoft/identity/common/internal/cache/IActiveBrokerCache.kt
+0 −16 common/src/main/java/com/microsoft/identity/common/internal/cache/IClientActiveBrokerCache.kt
+37 −19 common/src/main/java/com/microsoft/identity/common/internal/controllers/BrokerMsalController.java
+26 −1 common/src/main/java/com/microsoft/identity/common/internal/fido/AuthFidoChallengeHandler.kt
+19 −7 common/src/main/java/com/microsoft/identity/common/internal/fido/WebAuthnJsonUtil.kt
+23 −1 common/src/main/java/com/microsoft/identity/common/sharedwithoneauth/OneAuthSharedFunctions.kt
+1 −1 common/src/test/java/com/microsoft/identity/common/internal/activebrokerdiscovery/InMemoryActiveBrokerCache.kt
+129 −0 common/src/test/java/com/microsoft/identity/common/internal/broker/ipc/ContentProviderStatusLoaderTest.kt
+13 −1 common/src/test/java/com/microsoft/identity/common/internal/broker/ipc/ContentProviderStrategyTests.java
+56 −0 common/src/test/java/com/microsoft/identity/common/internal/cache/ActiveBrokerCacheTest.kt
+0 −66 common/src/test/java/com/microsoft/identity/common/internal/cache/ClientActiveBrokerCacheTest.kt
+5 −9 common/src/test/java/com/microsoft/identity/common/internal/fido/TestFidoManager.kt
+5 −14 common/src/test/java/com/microsoft/identity/common/internal/fido/WebAuthnJsonUtilTest.kt
+25 −0 common4j/src/main/com/microsoft/identity/common/java/constants/FidoConstants.kt
+1 −1 common4j/versioning/version.properties
+4 −4 ...mationutilities/src/main/java/com/microsoft/identity/client/ui/automation/device/settings/BaseSettings.java
+1 −1 versioning/version.properties
4 changes: 2 additions & 2 deletions msal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ task sourcesJar(type: Jar) {

// In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
// In release/*, we change these to specific versions being consumed.
def commonVersion = "1.0.+"
def commonVersion = "17.2.0"
if (project.hasProperty("distCommonVersion")) {
commonVersion = project.distCommonVersion
}
Expand Down Expand Up @@ -258,7 +258,7 @@ dependencies {
}

testLocalImplementation(testFixtures(project(":common4j")))
String common4jVersion = project.hasProperty("distCommon4jVersion") ? project.distCommon4jVersion : "1.0.+"
String common4jVersion = project.hasProperty("distCommon4jVersion") ? project.distCommon4jVersion : "14.2.0"
testDistImplementation(testFixtures("com.microsoft.identity:common4j:${common4jVersion}"))

implementation "io.opentelemetry:opentelemetry-api:$rootProject.ext.openTelemetryVersion"
Expand Down
2 changes: 1 addition & 1 deletion msal/versioning/version.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#Wed Aug 01 15:24:11 PDT 2018
versionName=5.1.0
versionName=5.2.0
versionCode=0
2 changes: 1 addition & 1 deletion testapps/testapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

def msalVersion = "5.+"
def msalVersion = "5.2.0"

if (project.hasProperty("distMsalVersion")) {
msalVersion = distMsalVersion
Expand Down

0 comments on commit 7f4365d

Please sign in to comment.