Skip to content

Commit

Permalink
Pedroro/release/5.1.0 (#2036)
Browse files Browse the repository at this point in the history
Co-authored-by: fadidurah <[email protected]>
  • Loading branch information
p3dr0rv and fadidurah authored Feb 12, 2024
1 parent 85846da commit 5ea8c7e
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/label.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:

jobs:
label:
permissions:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/labeler@v2
Expand Down
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ MSAL Wiki : https://github.com/AzureAD/microsoft-authentication-library-for-andr

vNext
----------

Version 5.1.0
----------
- [PATCH] Update common @17.1.0
- [PATCH] Fix MSAL Issue #1864 (#2003)
- [MINOR] Add isQRPinAvailable API to MSAL IPublicClientApplication (#1931)
- [MINOR] Add PreferredAuthMethod to interactive token flow (#1964)
Expand Down
2 changes: 1 addition & 1 deletion common
Submodule common updated 28 files
+10 −0 changelog.txt
+1 −1 common/build.gradle
+2 −1 common/src/main/java/com/microsoft/identity/common/exception/BrokerCommunicationException.kt
+4 −4 .../microsoft/identity/common/internal/broker/ipc/AccountManagerBackupIpcStrategyTargetingSpecificBrokerApp.kt
+68 −0 common/src/main/java/com/microsoft/identity/common/internal/broker/ipc/IpcStrategyWithBackup.kt
+2 −39 common/src/main/java/com/microsoft/identity/common/internal/controllers/BrokerMsalController.java
+45 −26 common/src/main/java/com/microsoft/identity/common/internal/controllers/LocalMSALController.java
+11 −1 common/src/main/java/com/microsoft/identity/common/internal/fido/WebAuthnJsonUtil.kt
+1 −3 common/src/main/java/com/microsoft/identity/common/internal/ui/browser/BrowserAuthorizationStrategy.java
+2 −2 ...n/src/main/java/com/microsoft/identity/common/internal/ui/webview/EmbeddedWebViewAuthorizationStrategy.java
+13 −2 common/src/main/java/com/microsoft/identity/common/internal/util/AccountManagerUtil.java
+84 −0 common/src/main/java/com/microsoft/identity/common/sharedwithoneauth/OneAuthSharedFunctions.kt
+2 −2 ...rosoft/identity/common/internal/broker/ipc/AccountManagerBackupIpcStrategyTargetingSpecificBrokerAppTest.kt
+157 −0 common/src/test/java/com/microsoft/identity/common/internal/broker/ipc/IpcStrategyWithBackupTests.kt
+30 −3 common/src/test/java/com/microsoft/identity/common/internal/fido/WebAuthnJsonUtilTest.kt
+19 −6 common4j/src/main/com/microsoft/identity/common/java/controllers/CommandDispatcher.java
+9 −1 common4j/src/main/com/microsoft/identity/common/java/flighting/CommonFlight.java
+14 −0 common4j/src/main/com/microsoft/identity/common/java/flighting/CommonFlightManager.java
+20 −5 common4j/src/main/com/microsoft/identity/common/java/flighting/IFlightsProvider.java
+11 −1 common4j/src/main/com/microsoft/identity/common/java/opentelemetry/AttributeName.java
+40 −0 common4j/src/main/com/microsoft/identity/common/java/opentelemetry/OTelUtility.java
+2 −3 common4j/src/main/com/microsoft/identity/common/java/providers/oauth2/OAuth2Strategy.java
+9 −0 common4j/src/test/com/microsoft/identity/common/java/flighting/MockFlightsProvider.java
+1 −1 common4j/versioning/version.properties
+1 −1 .../src/main/java/com/microsoft/identity/internal/testutils/strategies/MockStrategyWithMockedHttpResponse.java
+1 −2 testutils/src/main/java/com/microsoft/identity/internal/testutils/strategies/MockTestStrategy.java
+1 −1 ...java/com/microsoft/identity/internal/testutils/strategies/ResourceOwnerPasswordCredentialsTestStrategy.java
+1 −1 versioning/version.properties
6 changes: 4 additions & 2 deletions msal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,10 @@ 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 : "1.0.+"

def commonVersion = "17.1.0"
if (project.hasProperty("distCommonVersion")) {
commonVersion = project.distCommonVersion
}
dependencies {
//Please leave this in... desugaring is currently disabled by default; however it's required for running some tests
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$rootProject.ext.coreLibraryDesugaringVersion"
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.1
versionName=5.1.0
versionCode=0
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.+"
def msalVersion = "5.1.0"

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

0 comments on commit 5ea8c7e

Please sign in to comment.