Skip to content

Commit

Permalink
Pedroro/release/4.8.6 (#1779)
Browse files Browse the repository at this point in the history
* update changelog. common, build.gradle and version.properties

* fix rc1

* update common

* update to rc2

* update common

* update changelog

* rc3

* update to rc5

* remove rc

* update adal test app

---------

Co-authored-by: fadidurah <[email protected]>
  • Loading branch information
p3dr0rv and fadidurah authored Feb 12, 2024
1 parent 7da6ba5 commit 861e7e7
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion adal/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ android {
}

// In dev, we want to keep the dependencies(common4j, broker4j, common) to 1.0.+ to be able to be consumed by daily dev pipeline.
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "1.0.+"
String commonVersion = project.hasProperty("distCommonVersion") ? project.distCommonVersion : "17.1.0"

dependencies {
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:$rootProject.ext.coreLibraryDesugaringVersion"
Expand Down
2 changes: 1 addition & 1 deletion adal/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.8.5
versionName=4.8.6
versionCode=1
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Version Next
-------------

Version 4.8.6
-------------
- [PATCH] Update common @17.1.0

Version 4.8.5
-------------
- [PATCH] Update common @17.0.1
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
4 changes: 2 additions & 2 deletions userappwithbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ allprojects {
}
}

def adalVersion = "4.8.4"
def commonVersion = "17.0.0"
def adalVersion = "4.8.6"
def commonVersion = "17.1.0"

if (project.hasProperty("distAdalVersion")) {
println "Overriding adal version to dist property " + distAdalVersion
Expand Down

0 comments on commit 861e7e7

Please sign in to comment.