Skip to content
Closed
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
5 changes: 3 additions & 2 deletions IdentityCore/src/cache/mac/MSIDMacKeychainTokenCache.m
Original file line number Diff line number Diff line change
Expand Up @@ -557,14 +557,15 @@ - (BOOL)removeAccountsWithKey:(MSIDCacheKey *)key

- (NSArray<MSIDJsonObject *> *)jsonObjectsWithKey:(__unused MSIDCacheKey *)key serializer:(__unused id<MSIDExtendedCacheItemSerializing>)serializer context:(id<MSIDRequestContext>)context error:(NSError *__autoreleasing *)error
{
[self createUnimplementedError:error context:context];
MSID_LOG_WITH_CTX(MSIDLogLevelInfo, context, @"Skipping jsonObjectsWithKey:serializer:context:error: in MSIDMacKeychainTokenCache.");
return nil;
}


- (BOOL)saveJsonObject:(__unused MSIDJsonObject *)jsonObject serializer:(__unused id<MSIDExtendedCacheItemSerializing>)serializer key:(__unused MSIDCacheKey *)key context:(id<MSIDRequestContext>)context error:(NSError *__autoreleasing *)error
{
[self createUnimplementedError:error context:context];
MSID_LOG_WITH_CTX(MSIDLogLevelInfo, context, @"Skipping saveJsonObject:serializer:key:context:error: in MSIDMacKeychainTokenCache.");

return NO;
}

Expand Down
6 changes: 6 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
Version 1.16.2
* Update with changes from 1.15.3

Version 1.16.1
* Allow duna external idp on MacOs #1593

Version 1.16.0
* Filter based Flighting capabilities (#1580)
* Filter based Flighting for DUNA feature (#1580)

Version 1.15.3
* Fix issue with legacy keychain on macOS.

Version 1.15.2
* Feature flag gating STK querying and getting rid of category for its setter. (#1586)

Expand Down