From 7f4365dbcc371f5ff13b217af1688723881af3dd Mon Sep 17 00:00:00 2001 From: Sowmya Malayanur <69237821+somalaya@users.noreply.github.com> Date: Thu, 14 Mar 2024 10:33:05 -0700 Subject: [PATCH] Change for March 2024 release (#2057) Co-authored-by: melissaahn --- changelog | 4 ++++ common | 2 +- msal/build.gradle | 4 ++-- msal/versioning/version.properties | 2 +- testapps/testapp/build.gradle | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/changelog b/changelog index ffce4fae28..d42d9cb6e1 100644 --- a/changelog +++ b/changelog @@ -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 ---------- diff --git a/common b/common index 85b2e6c24c..e228b8ff03 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 85b2e6c24c4e5da5876a4e51f062c45508ed5f23 +Subproject commit e228b8ff030d219464a584c402315df058d292d1 diff --git a/msal/build.gradle b/msal/build.gradle index 67dc36ec36..e6c7af1f9c 100644 --- a/msal/build.gradle +++ b/msal/build.gradle @@ -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 } @@ -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" diff --git a/msal/versioning/version.properties b/msal/versioning/version.properties index caa5c25acc..2d9503da57 100644 --- a/msal/versioning/version.properties +++ b/msal/versioning/version.properties @@ -1,3 +1,3 @@ #Wed Aug 01 15:24:11 PDT 2018 -versionName=5.1.0 +versionName=5.2.0 versionCode=0 diff --git a/testapps/testapp/build.gradle b/testapps/testapp/build.gradle index 9b5dc64c63..447043d489 100644 --- a/testapps/testapp/build.gradle +++ b/testapps/testapp/build.gradle @@ -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