Skip to content
7 changes: 5 additions & 2 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@ vNext
- [MINOR] Determine whether broker app opts out from battery optimization (#2819)
- [MINOR] Cache Active Broker In Memory (BrokerDiscoveryClient) (#2817)
- [MINOR] Enable Broker Discovery by default in MSAL/Broker API (#2818)
- [MINOR] Share SharedPreferencesInMemoryCache across instances of BrokerOAuth2TokenCache
- [MINOR] Use SharedPreferencesInMemoryCache implementation in Broker (#2802)
- [MINOR] Fix for SDL violation in device pop scenarios, Fixes AB#3284510 (#2744)

Version 23.1.1
----------
- [PATCH] Share SharedPreferencesInMemoryCache across instances of BrokerOAuth2TokenCache (#2813)
- [PATCH] Use SharedPreferencesInMemoryCache implementation in Broker (#2802)

Version 23.1.0
----------
- [MINOR] Add OpenTelemetry support for passkey operations (#2795)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ private static MicrosoftFamilyOAuth2TokenCache initializeFociCache(@NonNull fina

final String storeName = SharedPreferencesAccountCredentialCache.BROKER_FOCI_ACCOUNT_CREDENTIAL_SHARED_PREFERENCES;

return getTokenCache(components, storeName,true);
return getTokenCache(components, storeName, true);
}

@SuppressWarnings(UNCHECKED)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,8 +493,8 @@ public enum AttributeName {
* Indicates whether or not in memory cache is used for accounts and credentials.
*/
in_memory_cache_used_for_accounts_and_credentials,
/**

/**
* Passkey operation type (e.g., registration, authentication).
*/
passkey_operation_type,
Expand Down
2 changes: 1 addition & 1 deletion common4j/versioning/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Wed May 12 20:08:39 UTC 2021
versionName=23.1.0
versionName=23.1.1
versionCode=1
latestPatchVersion=227
2 changes: 1 addition & 1 deletion versioning/version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Tue Apr 06 22:55:08 UTC 2021
versionName=23.1.0
versionName=23.1.1
versionCode=1
latestPatchVersion=234
Loading