Skip to content

Commit 6459e42

Browse files
merging alias branch in release (#2100)
Co-authored-by: Sowmya Malayanur <[email protected]>
1 parent b984d89 commit 6459e42

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

azure-pipelines/pull-request-validation/pr-msal.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ jobs:
4545
clean: true
4646
submodules: recursive
4747
persistCredentials: True
48+
- template: azure-pipelines/templates/steps/automation-cert.yml@common
4849
- task: JavaToolInstaller@0
4950
displayName: Use Java 11
5051
inputs:
@@ -66,7 +67,7 @@ jobs:
6667
- task: Gradle@2
6768
displayName: Run Unit tests
6869
inputs:
69-
tasks: msal:testLocalDebugUnitTest -Plabtest -PlabSecret=$(LabVaultAppSecret) -ProbolectricSdkVersion=${{variables.robolectricSdkVersion}}
70+
tasks: msal:testLocalDebugUnitTest -Plabtest -PlabSecret=$(LabVaultAppCert) -ProbolectricSdkVersion=${{variables.robolectricSdkVersion}}
7071
javaHomeSelection: $(BuildParameters.javaHomeSelection)
7172
jdkVersion: 1.11
7273
- job: spotbugs

changelog

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-andr
22

33
vNext
44
----------
5+
6+
Version 5.3.1
7+
---------
58
- [PATCH] Safe logging of Kotlin data classes through ILoggable interface (#2081)
69
- [PATCH] Update nimbus-jose-jwt 9.37.3 and junit 4.13.2 (#2084)
710

msal/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,12 +188,12 @@ task sourcesJar(type: Jar) {
188188

189189
// In dev, we want to keep the dependencies (common4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
190190
// In release/*, we change these to specific versions being consumed.
191-
def commonVersion = "1.0.+"
191+
def commonVersion = "17.4.0"
192192
if (project.hasProperty("distCommonVersion")) {
193193
commonVersion = project.distCommonVersion
194194
}
195195
// Used for testfixtures
196-
def common4jVersion = "1.0.+"
196+
def common4jVersion = "14.4.0"
197197
if (project.hasProperty("distCommon4jVersion")) {
198198
distCommon4jVersion = project.distCommon4jVersion
199199
}

msal/src/test/java/com/microsoft/identity/client/e2e/tests/network/AcquireTokenCIAMTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
import com.microsoft.identity.internal.testutils.labutils.LabUserQuery;
3333

3434
import org.junit.Assert;
35+
import org.junit.Ignore;
3536
import org.junit.Test;
3637

3738
import java.util.Arrays;
@@ -91,6 +92,7 @@ public void onCancel() {
9192
};
9293
}
9394

95+
@Ignore
9496
public static class CiamTenantGUID extends AcquireTokenCIAMTest {
9597
@Override
9698
public String getConfigFilePath() {
@@ -112,6 +114,7 @@ public void testAcquireTokenSuccessVerifyIssuer() {
112114
}
113115
}
114116

117+
@Ignore
115118
public static class CiamTenantDomain extends AcquireTokenCIAMTest {
116119
@Override
117120
public String getConfigFilePath() {
@@ -133,6 +136,7 @@ public void testAcquireTokenSuccessVerifyIssuer() {
133136
}
134137
}
135138

139+
@Ignore
136140
public static class CiamTenantNoPath extends AcquireTokenCIAMTest {
137141
@Override
138142
public String getConfigFilePath() {

msal/versioning/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#Wed Aug 01 15:24:11 PDT 2018
2-
versionName=5.3.0
2+
versionName=5.3.1
33
versionCode=0

msalautomationapp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

4-
def msalVersion = "5.3.0"
4+
def msalVersion = "5.+"
55

66
if (project.hasProperty("distMsalVersion")) {
77
msalVersion = distMsalVersion

0 commit comments

Comments
 (0)