Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge release/4.8.16 to dev #1814

Merged
merged 2 commits into from
Nov 15, 2024
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
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.15
versionName=4.8.16
versionCode=1
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
vNext
---------

Version 4.8.16
---------
- [PATCH] Update common @18.2.0
- [PATCH] Migrate Base64 away from Msebera


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 userappwithbroker/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ allprojects {
}
}

def adalVersion = "4.8.15"
def commonVersion = "18.1.0"
def adalVersion = "4.8.16"
def commonVersion = "18.2.0"

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