Skip to content

Commit 1943838

Browse files
committed
2 parents 8a59eb1 + 73c232e commit 1943838

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

changelog.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ vNext
44
- [MINOR] Determine whether broker app opts out from battery optimization (#2819)
55
- [MINOR] Cache Active Broker In Memory (BrokerDiscoveryClient) (#2817)
66
- [MINOR] Enable Broker Discovery by default in MSAL/Broker API (#2818)
7-
- [MINOR] Share SharedPreferencesInMemoryCache across instances of BrokerOAuth2TokenCache
8-
- [MINOR] Use SharedPreferencesInMemoryCache implementation in Broker (#2802)
97
- [MINOR] Fix for SDL violation in device pop scenarios, Fixes AB#3284510 (#2744)
108

9+
Version 23.1.1
10+
-----------
11+
- [PATCH] Share SharedPreferencesInMemoryCache across instances of BrokerOAuth2TokenCache (#2813)
12+
- [PATCH] Use SharedPreferencesInMemoryCache implementation in Broker (#2802)
13+
1114
Version 23.1.0
1215
----------
1316
- [MINOR] Add OpenTelemetry support for passkey operations (#2795)

common4j/src/main/com/microsoft/identity/common/java/cache/BrokerOAuth2TokenCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1649,7 +1649,7 @@ private static MicrosoftFamilyOAuth2TokenCache initializeFociCache(@NonNull fina
16491649

16501650
final String storeName = SharedPreferencesAccountCredentialCache.BROKER_FOCI_ACCOUNT_CREDENTIAL_SHARED_PREFERENCES;
16511651

1652-
return getTokenCache(components, storeName,true);
1652+
return getTokenCache(components, storeName, true);
16531653
}
16541654

16551655
@SuppressWarnings(UNCHECKED)

common4j/src/main/com/microsoft/identity/common/java/opentelemetry/AttributeName.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ public enum AttributeName {
493493
* Indicates whether or not in memory cache is used for accounts and credentials.
494494
*/
495495
in_memory_cache_used_for_accounts_and_credentials,
496-
497-
/**
496+
497+
/**
498498
* Passkey operation type (e.g., registration, authentication).
499499
*/
500500
passkey_operation_type,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Wed May 12 20:08:39 UTC 2021
2-
versionName=23.1.0
2+
versionName=23.1.1
33
versionCode=1
44
latestPatchVersion=227

versioning/version.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Tue Apr 06 22:55:08 UTC 2021
2-
versionName=23.1.0
2+
versionName=23.1.1
33
versionCode=1
44
latestPatchVersion=234

0 commit comments

Comments
 (0)