Skip to content

Commit 5ea8c7e

Browse files
p3dr0rvfadidurah
andauthored
Pedroro/release/5.1.0 (#2036)
Co-authored-by: fadidurah <[email protected]>
1 parent 85846da commit 5ea8c7e

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.github/workflows/label.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111

1212
jobs:
1313
label:
14+
permissions:
15+
pull-requests: write
1416
runs-on: ubuntu-latest
1517
steps:
1618
- uses: actions/labeler@v2

changelog

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

33
vNext
44
----------
5+
6+
Version 5.1.0
7+
----------
8+
- [PATCH] Update common @17.1.0
59
- [PATCH] Fix MSAL Issue #1864 (#2003)
610
- [MINOR] Add isQRPinAvailable API to MSAL IPublicClientApplication (#1931)
711
- [MINOR] Add PreferredAuthMethod to interactive token flow (#1964)

common

Submodule common updated 28 files

msal/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,10 @@ 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-
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "1.0.+"
192-
191+
def commonVersion = "17.1.0"
192+
if (project.hasProperty("distCommonVersion")) {
193+
commonVersion = project.distCommonVersion
194+
}
193195
dependencies {
194196
//Please leave this in... desugaring is currently disabled by default; however it's required for running some tests
195197
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$rootProject.ext.coreLibraryDesugaringVersion"

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.0.1
2+
versionName=5.1.0
33
versionCode=0

testapps/testapp/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ apply plugin: 'kotlin-android'
2929

3030
apply plugin: 'kotlin-android-extensions'
3131

32-
def msalVersion = "5.+"
32+
def msalVersion = "5.1.0"
3333

3434
if (project.hasProperty("distMsalVersion")) {
3535
msalVersion = distMsalVersion

0 commit comments

Comments
 (0)