File tree
4 files changed
+26
-14
lines changed- gradle
- msal/src/main/java/com/microsoft/identity/client
4 files changed
+26
-14
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
3 | 3 |
| |
4 | 4 |
| |
5 | 5 |
| |
| 6 | + | |
6 | 7 |
| |
7 | 8 |
| |
8 | 9 |
| |
|
- changelog.txt+12
- common/build.gradle+1-1
- common/src/main/java/com/microsoft/identity/common/adal/internal/AuthenticationConstants.java+1-1
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/CurrentTaskAuthorizationActivity.java+18-6
- common/src/main/java/com/microsoft/identity/common/internal/providers/oauth2/WebViewAuthorizationFragment.java+14-4
- common/src/main/java/com/microsoft/identity/common/internal/ui/browser/CustomTabsManager.java+1
- common/src/main/java/com/microsoft/identity/common/internal/ui/webview/AzureActiveDirectoryWebViewClient.java+1-2
- common/src/main/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/DialogHolder.java+159-60
- common/src/main/java/com/microsoft/identity/common/internal/ui/webview/switchbrowser/SwitchBrowserUriHelper.kt+55
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/AzureActiveDirectoryWebViewClientTest.java+1
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/DialogHolderTest.java+225
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowExceptionSmartcardDialog.java+44
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardCertPickerDialog.java+41
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardErrorDialog.java+42
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardNfcLoadingDialog.java+41
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardNfcPromptDialog.java+41
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardNfcReminderDialog.java+41
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardPinDialog.java+48
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardPromptDialog.java+42
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowSmartcardRemovalPromptDialog.java+42
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/certbasedauth/ShadowUserChoiceDialog.java+41
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/challengehandlers/SwitchBrowserRequestHandlerTest.kt+4-4
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/switchbrowser/SwitchBrowserProtocolCoordinatorTest.kt+80-3
- common/src/test/java/com/microsoft/identity/common/internal/ui/webview/switchbrowser/SwitchBrowserUriHelperTest.kt+9
- common4j/src/main/com/microsoft/identity/common/java/commands/parameters/BrokerSilentTokenCommandParameters.java+6
- common4j/src/main/com/microsoft/identity/common/java/controllers/BaseController.java+8
- common4j/src/main/com/microsoft/identity/common/java/controllers/ExceptionAdapter.java+45-25
- common4j/src/main/com/microsoft/identity/common/java/eststelemetry/EstsTelemetry.java+95-1
- common4j/src/main/com/microsoft/identity/common/java/flighting/CommonFlight.java+12-2
- common4j/src/main/com/microsoft/identity/common/java/jwt/JwtKeyUseTypes.kt+3
- common4j/src/main/com/microsoft/identity/common/java/opentelemetry/AttributeName.java+7-1
- common4j/src/test/com/microsoft/identity/common/java/controllers/ExceptionAdapterTests.java+135-10
- gradle/versions.gradle+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
25 | 25 |
| |
26 | 26 |
| |
27 | 27 |
| |
28 |
| - | |
| 28 | + | |
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
|
Lines changed: 23 additions & 12 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
22 | 22 |
| |
23 | 23 |
| |
24 | 24 |
| |
| 25 | + | |
25 | 26 |
| |
26 | 27 |
| |
27 | 28 |
| |
| |||
34 | 35 |
| |
35 | 36 |
| |
36 | 37 |
| |
37 |
| - | |
38 |
| - | |
39 | 38 |
| |
40 | 39 |
| |
41 | 40 |
| |
| |||
58 | 57 |
| |
59 | 58 |
| |
60 | 59 |
| |
61 |
| - | |
| 60 | + | |
62 | 61 |
| |
63 | 62 |
| |
64 | 63 |
| |
| |||
73 | 72 |
| |
74 | 73 |
| |
75 | 74 |
| |
76 |
| - | |
77 | 75 |
| |
78 | 76 |
| |
79 | 77 |
| |
| |||
98 | 96 |
| |
99 | 97 |
| |
100 | 98 |
| |
| 99 | + | |
101 | 100 |
| |
102 | 101 |
| |
103 | 102 |
| |
104 | 103 |
| |
105 | 104 |
| |
106 | 105 |
| |
107 | 106 |
| |
108 |
| - | |
109 |
| - | |
| 107 | + | |
110 | 108 |
| |
111 |
| - | |
| 109 | + | |
| 110 | + | |
112 | 111 |
| |
113 | 112 |
| |
114 | 113 |
| |
| |||
135 | 134 |
| |
136 | 135 |
| |
137 | 136 |
| |
138 |
| - | |
139 |
| - | |
140 |
| - | |
141 |
| - | |
| 137 | + | |
| 138 | + | |
| 139 | + | |
| 140 | + | |
| 141 | + | |
| 142 | + | |
| 143 | + | |
| 144 | + | |
| 145 | + | |
142 | 146 |
| |
143 | 147 |
| |
144 | 148 |
| |
145 | 149 |
| |
146 | 150 |
| |
147 |
| - | |
| 151 | + | |
| 152 | + | |
| 153 | + | |
| 154 | + | |
| 155 | + | |
| 156 | + | |
| 157 | + | |
| 158 | + | |
148 | 159 |
| |
149 | 160 |
| |
150 | 161 |
| |
|
0 commit comments