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
6 changes: 5 additions & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
vNext
----------
- [MINOR] changes accommodating the WrappedKeyAlgoIdentifier module (#2667)

Version 21.2.0
----------
- [MINOR] Implement a WebView handler to facilitate broker app installation via the Play Store (#2643)
- [MINOR] Add Get AAD device ID API for resource account (#2644)
- [MINOR] Expose a JavaScript API in brokered Webviews to facilitate Improved Same Device NumberMatch (#2617)
Expand All @@ -8,7 +12,7 @@ vNext

Version 21.1.0
----------
- [PATCH] Allow generating wrapping key without PURPOSE_WRAP_KEY with Flight (#2633))
- [PATCH] Allow generating wrapping key without PURPOSE_WRAP_KEY with Flight (#2633)
- [MINOR] Adding a state parameter to prevent phish attacks, in “switch_browser” flow. (#2631)
- [MINOR] Move camera logic to CameraPermissionRequestHandler and add SdmQrPinManager (#2630)
- [MINOR] Pass Work Profile existence, OS Version, and Manufacturer to ESTS (#2627)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,11 @@ public class ClientException extends BaseException {
*/
public static final String NO_BROWSERS_AVAILABLE = "no_browsers_available";

/**
* The device doesn't support hardware wrapped key import.
*/
public static final String DEVICE_NOT_SUPPORT_HARDWARE_WRAPPED_KEY_IMPORT = "device_not_supported_hardware_wrapped_key_import";

/**
* Constructor of ClientException.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,5 @@ public enum SpanName {
ProcessCrossCloudRedirect,
SwitchBrowserResume,
SwitchBrowserProcess,
WrappedKeyAlgorithmIdentifier
}