Skip to content

Commit

Permalink
[Hotfix] Removed credman dependencies (#2019)
Browse files Browse the repository at this point in the history
Updated common version which has the changes to remove credman
dependencies
Also made robolectric sdk upgrade to run the UTs in monthly pipeline
smoothly

---------

Co-authored-by: melissaahn <melissaahn@microsoft.com>
Co-authored-by: pedro romero vargas <pedroro@microsoft.com>
  • Loading branch information
3 people committed Jan 25, 2024
1 parent 70efb25 commit 562d44d
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki

Version 5.0.1
----------
- [PATCH] Update robolectricVersion 4.11.1 (#2015)
- [PATCH] Update common @17.0.1

Version 5.0.0
----------
- [MINOR] Update common @17.0.0
Expand Down
2 changes: 1 addition & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ ext {
powerMockVersion = "2.0.9"
runnerVersion = "1.2.0"
rulesVersion = "1.2.0"
robolectricVersion = "4.9.2"
robolectricVersion = "4.11.1"
uiAutomatorVersion = "2.2.0"
daggerVersion = "2.31.2"
daggerCompilerVersion = "2.31.2"
Expand Down
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.
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "17.0.0"
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "17.0.1"

dependencies {
//Please leave this in... desugaring is currently disabled by default; however it's required for running some tests
Expand Down Expand Up @@ -256,7 +256,7 @@ dependencies {
}

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

implementation platform("io.opentelemetry:opentelemetry-bom:$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.0.0
versionName=5.0.1
versionCode=0

0 comments on commit 562d44d

Please sign in to comment.