Skip to content

Commit

Permalink
Hotfix for consuming common 16.1.1 (#1946)
Browse files Browse the repository at this point in the history
Why this hotfix?
We have to give an MSAL build to Samsung for testing broker changes with
LTW. Samsung also needs to consume MSAL lib. Prev month's release of
MSAL does not consume common 16.1.1 which has some important bug fixes
in broker discovery/election logic. Hence cutting this hotfix to just
consume common 16.1.1.

NOTE : This is based on 4.9.1 MSAL version which also has this fix :
#1927 (comment)
  • Loading branch information
somalaya committed Nov 9, 2023
1 parent 35e2346 commit f131561
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki
Version 4.9.2
----------
- [PATCH] Update common @16.1.1

Version 4.9.1
----------
- [PATCH] Fix NPE in SingleAccountPublicClientApplication.getPersistedCurrentAccount (#1933)
Expand Down
2 changes: 1 addition & 1 deletion 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 : "16.1.0"
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "16.1.1"

dependencies {
//Please leave this in... desugaring is currently disabled by default; however it's required for running some tests
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=4.9.1
versionName=4.9.2
versionCode=0

0 comments on commit f131561

Please sign in to comment.