Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-android/wiki

vNext
Version 5.8.0
----------
-[PATCH] Update common @18.2.0
-[MINOR] Migrate Base64 away from Msebera (#2210)

Version 5.7.0
Expand Down
2 changes: 1 addition & 1 deletion common
Submodule common updated 19 files
+5 −1 changelog.txt
+1 −1 common/build.gradle
+57 −0 common/src/main/java/com/microsoft/identity/common/adal/internal/PowerManagerWrapper.java
+9 −0 common/src/main/java/com/microsoft/identity/common/internal/broker/BrokerRequest.java
+1 −1 common/src/main/java/com/microsoft/identity/common/internal/platform/AndroidPlatformUtil.java
+100 −0 common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/CameraPermissionRequest.kt
+25 −79 common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/WebViewAuthorizationFragment.java
+1 −0 common/src/main/java/com/microsoft/identity/common/internal/request/MsalBrokerRequestAdapter.java
+76 −10 common/src/test/java/com/microsoft/identity/common/internal/request/MsalBrokerRequestAdapterTests.java
+5 −0 ...on4j/src/main/com/microsoft/identity/common/java/commands/parameters/InteractiveTokenCommandParameters.java
+36 −1 common4j/src/main/com/microsoft/identity/common/java/controllers/ExceptionAdapter.java
+1 −1 common4j/src/main/com/microsoft/identity/common/java/interfaces/PlatformComponents.java
+11 −0 ...src/main/com/microsoft/identity/common/java/nativeauth/providers/responses/signin/SignInTokenApiResponse.kt
+3 −0 common4j/src/main/com/microsoft/identity/common/java/nativeauth/util/ApiErrorResponseUtil.kt
+2 −1 common4j/src/main/com/microsoft/identity/common/java/opentelemetry/SpanName.java
+23 −0 common4j/src/test/com/microsoft/identity/common/java/nativeauth/providers/NativeAuthResponseHandlerTest.kt
+0 −3 common4j/src/testFixtures/java/com/microsoft/identity/common/components/MockPlatformComponentsFactory.java
+1 −1 common4j/versioning/version.properties
+1 −1 versioning/version.properties
4 changes: 2 additions & 2 deletions msal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -188,12 +188,12 @@ 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 = "18.2.0"
if (project.hasProperty("distCommonVersion")) {
commonVersion = project.distCommonVersion
}
// Used for testfixtures
def common4jVersion = "1.0.+"
def common4jVersion = "15.2.0"
if (project.hasProperty("distCommon4jVersion")) {
distCommon4jVersion = project.distCommon4jVersion
}
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.7.0
versionName=5.8.0
versionCode=0
2 changes: 1 addition & 1 deletion msalautomationapp/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

def msalVersion = "5.7.0"
def msalVersion = "5.8.0"

if (project.hasProperty("distMsalVersion")) {
msalVersion = distMsalVersion
Expand Down
2 changes: 1 addition & 1 deletion testapps/testapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

def msalVersion = "5.7.0"
def msalVersion = "5.8.0"

if (project.hasProperty("distMsalVersion")) {
msalVersion = distMsalVersion
Expand Down