Skip to content

Commit 111cc5a

Browse files
p3dr0rvCopilot
andauthored
Enable passkey registration feature in CommonFlight, Fixes AB#3121984 (#3132)
This pull request makes a small but important configuration change to the `CommonFlight` enum. The default value for the `ENABLE_PASSKEY_REGISTRATION` flight has been changed from `false` to `true`, enabling the passkey registration feature by default. * The `ENABLE_PASSKEY_REGISTRATION` feature flag is now enabled by default in `CommonFlight.java`. [AB#3121984](https://identitydivision.visualstudio.com/fac9d424-53d2-45c0-91b5-ef6ba7a6bf26/_workitems/edit/3121984) --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent 242da8c commit 111cc5a

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
vNext
22
----------
33
- [PATCH] Fix Token Endpoint Server Telemetry Parsing (#3128)
4+
- [MINOR] Enable passkey registration by default in CommonFlight (ENABLE_PASSKEY_REGISTRATION) (#3132)
45
- [PATCH] Emit ipc_strategy telemetry attribute for successful device registration IPC strategy and refactor execute flow to pack protocol request once before strategy retries (#3124)
56
- [PATCH] Fix Edge browser selection on devices where Microsoft Edge is the default browser: add the rotated Edge signing certificate hash to the Edge BrowserDescriptor and accept multi-signer browsers when any signature intersects the safelist, instead of requiring strict set-equality (resolves MSAL #2414)
67
- [MINOR] Refactor Auth Tab integration to use provider-based strategy selection. Adds AuthTabStrategyProvider and BrowserLaunchStrategy with Custom Tabs fallback. Compatible with androidx.browser:browser:1.7.0.

common4j/src/main/com/microsoft/identity/common/java/flighting/CommonFlight.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public enum CommonFlight implements IFlightConfig {
5757
/**
5858
* Flight to enable passkey registration feature.
5959
*/
60-
ENABLE_PASSKEY_REGISTRATION("EnablePasskeyRegistration", false),
60+
ENABLE_PASSKEY_REGISTRATION("EnablePasskeyRegistration", true),
6161

6262
/**
6363
* Flight to control the timeout duration for UrlConnection connect timeout.

0 commit comments

Comments
 (0)