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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
TBD
* Update IdentityCore submodule to pull in DI foundation (common core #1810 WPJ, #1838 hardening, #1809 throttling)
* Add Delos and GovSG sovereign cloud environments in `MSALAADAuthority`. (#2984)
* Adding Get Device Token API for shared device mode #2980
* Improve UI tests performance #2981
Expand Down
2 changes: 1 addition & 1 deletion MSAL/IdentityCore
Submodule IdentityCore updated 44 files
+43 −6 IdentityCore/IdentityCore.xcodeproj/project.pbxproj
+2 −1 IdentityCore/src/JWEResponse/MSIDAesGcmDecryptor.swift
+2 −0 IdentityCore/src/JWEResponse/MSIDJweResponse+EcdhAesGcm.h
+7 −0 IdentityCore/src/JWEResponse/MSIDJweResponse+EcdhAesGcm.m
+6 −0 IdentityCore/src/MSIDSwiftBridgingHeader.h
+9 −0 ...yCore/src/broker_operation/request/browser_native_message_request/MSIDBrowserNativeMessageGetTokenRequest.m
+3 −3 IdentityCore/src/controllers/MSIDLocalInteractiveController.m
+1 −1 IdentityCore/src/controllers/broker/MSIDSSOExtensionInteractiveTokenRequestController.m
+1 −1 IdentityCore/src/controllers/broker/ios/MSIDBrokerInteractiveController.m
+1 −1 IdentityCore/src/controllers/broker/mac/MSIDXpcInteractiveTokenRequestController.m
+17 −1 IdentityCore/src/network/response_serializer/preprocessor/MSIDJweResponseDecryptPreProcessor.m
+6 −0 IdentityCore/src/requests/sdk/msal/MSIDDefaultBrokerResponseHandler.m
+47 −0 IdentityCore/src/throttling/MSIDThrottlingRefreshing.h
+21 −1 IdentityCore/src/throttling/MSIDThrottlingService.h
+9 −0 IdentityCore/src/throttling/MSIDThrottlingService.m
+19 −1 IdentityCore/src/throttling/metadata/MSIDThrottlingMetaDataCache.h
+9 −0 IdentityCore/src/throttling/metadata/MSIDThrottlingMetaDataCache.m
+47 −0 IdentityCore/src/throttling/metadata/MSIDThrottlingMetaDataReading.h
+1 −1 IdentityCore/src/throttling/model/MSIDThrottlingModelNonRecoverableServerError.m
+6 −1 IdentityCore/src/util/MSIDConcatKdfProvider.swift
+42 −2 IdentityCore/src/util/MSIDDIContainer.m
+3 −0 IdentityCore/src/webview/MSIDWebviewConstants.h
+3 −0 IdentityCore/src/webview/MSIDWebviewConstants.m
+3 −0 IdentityCore/src/webview/embeddedWebview/MSIDOAuth2EmbeddedWebviewController.h
+123 −0 IdentityCore/src/webview/embeddedWebview/MSIDWebviewNavigationDecision.h
+109 −0 IdentityCore/src/webview/embeddedWebview/MSIDWebviewNavigationDecision.m
+77 −0 IdentityCore/src/webview/embeddedWebview/MSIDWebviewNavigationDecisionResolver.h
+518 −0 IdentityCore/src/webview/embeddedWebview/MSIDWebviewNavigationDecisionResolver.m
+1 −1 IdentityCore/src/webview/systemWebview/session/MSIDASWebAuthenticationSessionHandler.h
+3 −3 IdentityCore/src/webview/systemWebview/session/MSIDASWebAuthenticationSessionHandler.m
+4 −2 IdentityCore/src/webview/systemWebview/session/MSIDSystemWebViewControllerFactory.m
+13 −1 IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtilBase+Internal.h
+24 −14 IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtilBase.m
+64 −0 IdentityCore/src/workplacejoin/MSIDWorkPlaceJoinUtilProviding.h
+82 −8 IdentityCore/tests/MSIDBrowserNativeMessageGetTokenRequestTests.m
+225 −0 IdentityCore/tests/MSIDDIContainerTests.m
+20 −1 IdentityCore/tests/MSIDJweResponseDecryptionTests.m
+42 −20 IdentityCore/tests/MSIDThrottlingServiceIntegrationTests.m
+663 −0 IdentityCore/tests/MSIDWebviewNavigationDecisionResolverTests.m
+102 −74 IdentityCore/tests/MSIDWorkPlaceJoinUtilTests.m
+36 −11 IdentityCore/tests/integration/ios/MSIDBrokerInteractiveControllerIntegrationTests.m
+128 −0 IdentityCore/tests/integration/ios/MSIDDefaultBrokerResponseHandlerTests.m
+39 −30 IdentityCore/tests/throttling/MSIDThrottlingModelNonRecoverableServerError.m
+3 −0 changelog.txt