diff --git a/changelog b/changelog index ffce4fae2..d42d9cb6e 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 85b2e6c24..e228b8ff0 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 85b2e6c24c4e5da5876a4e51f062c45508ed5f23 +Subproject commit e228b8ff030d219464a584c402315df058d292d1 diff --git a/msal/build.gradle b/msal/build.gradle index 67dc36ec3..e6c7af1f9 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 caa5c25ac..2d9503da5 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 9b5dc64c6..447043d48 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