Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/1.6.1 #2369

Merged
merged 44 commits into from
Oct 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
0be12ff
Adding task to trigger pipeline in ADO
ameyapat Sep 16, 2024
14c020c
Update pr-validation.yml for Azure Pipelines
ameyapat Sep 16, 2024
843a355
Correcting project and org
ameyapat Sep 16, 2024
6347c0a
trigger
ameyapat Sep 17, 2024
0890aef
Update pr-validation.yml for Azure Pipelines
ameyapat Sep 17, 2024
cbb7b47
trigger
ameyapat Sep 17, 2024
9d84fb2
Update pr-validation.yml for Azure Pipelines
ameyapat Sep 17, 2024
490458a
Allow passing query parameters in signout
Sep 19, 2024
b467874
Revert PPE change
Sep 19, 2024
2120ac8
Updated changelog
Sep 19, 2024
cf0e0ee
Fix changelog in common
Sep 19, 2024
fbceed9
Updating pipeline id for pr assitant
ameyapat Sep 20, 2024
c57d8e8
reduce timeout
ameyapat Sep 20, 2024
6dc003d
Add a poorly written method to test AI
ameyapat Sep 20, 2024
a023d28
Adding index out of bounds
ameyapat Sep 21, 2024
7c708ce
test
ameyapat Sep 21, 2024
1b57d92
reverting
ameyapat Sep 21, 2024
7d56214
trigger
ameyapat Sep 21, 2024
f40aff4
MacOS increase version to 10.15 (#2343)
spetrescu84 Sep 23, 2024
c229499
Correct typo
ameyapat Sep 23, 2024
b7fa7ef
Adding poor code
ameyapat Sep 23, 2024
643c437
Adding comment
ameyapat Sep 23, 2024
0fcd3cc
Update common core
Sep 23, 2024
0bb0e3d
Reverting change for poor code
ameyapat Sep 24, 2024
d871dea
Merge pull request #2339 from AzureAD/oldalton/extra_query_params_sig…
oldalton Sep 24, 2024
23cf489
Final check
ameyapat Sep 24, 2024
daaaa67
Merge pull request #2336 from AzureAD/ameyapat/trigger-pr-to-clone-in…
ameyapat Sep 24, 2024
51ea00f
Updating MSAL framework checksum & url for 1.5.1 [skip ci] (#2348)
spetrescu84 Sep 26, 2024
5f5979c
Native authentication email OTP MFA (#2341)
nilo-ms Sep 30, 2024
e873724
[iOS SDK] Update current user account result with latest account and …
spetrescu84 Oct 3, 2024
5c6c291
Support caller app info for browser SSO flows (#2347)
antrix1989 Oct 4, 2024
8f11fa7
Add specific minimum version to match downloaded visionOS simulator's…
juan-arias Oct 4, 2024
797f935
Trigger Build
juan-arias Oct 5, 2024
254dc5d
Merge pull request #2358 from AzureAD/jarias/fix-visionos-build-errors
juan-arias Oct 5, 2024
09d8b55
Update common submodule
jasoncoolmax Oct 7, 2024
358f25a
Update common submodule
jasoncoolmax Oct 7, 2024
6a21cf5
Remove duplicated test, use proper name for test and skip test for ma…
nilo-ms Oct 7, 2024
bd5e6b3
Update submodule
jasoncoolmax Oct 8, 2024
62fe561
Update common core submodule
jasoncoolmax Oct 9, 2024
59e1403
Merge pull request #2361 from AzureAD/zeyong/WebviewCrossDomainPrtAttach
jasoncoolmax Oct 9, 2024
1687c06
Updating common-core submodule to release/1.7.42
Oct 10, 2024
db5ec3a
Updating submodule to common-core main
ameyapat Oct 15, 2024
9be505b
Updating changelog version
ameyapat Oct 15, 2024
6d65d00
Merge branch 'main' into release/1.6.1
ameyapat Oct 15, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [1.6.1]:
* Support extra query parameters on logout endpoint (#2339)
* Add support functions to help broker improve cross cloud experience (#2361)

## [1.6.0]:
* Support extra query parameters on logout endpoint (#2339)

Expand Down
2 changes: 1 addition & 1 deletion MSAL/IdentityCore
Submodule IdentityCore updated 32 files
+16 −0 IdentityCore/IdentityCore.xcodeproj/project.pbxproj
+5 −0 IdentityCore/src/cache/accessor/MSIDDefaultTokenCacheAccessor.h
+9 −0 IdentityCore/src/cache/accessor/MSIDDefaultTokenCacheAccessor.m
+2 −0 IdentityCore/src/configuration/webview/MSIDBaseWebRequestConfiguration.h
+9 −3 IdentityCore/src/controllers/MSIDSilentController.m
+2 −0 IdentityCore/src/network/error_handler/MSIDAADRequestErrorHandler.h
+2 −2 IdentityCore/src/network/error_handler/MSIDAADRequestErrorHandler.m
+1 −0 IdentityCore/src/oauth2/MSIDWebviewFactory.m
+1 −0 IdentityCore/src/oauth2/aad_base/MSIDAADWebviewFactory.m
+2 −0 IdentityCore/src/parameters/MSIDInteractiveTokenRequestParameters.h
+10 −1 IdentityCore/src/util/ios/MSIDAppExtensionUtil.m
+2 −0 IdentityCore/src/validation/MSIDAADAuthority.h
+5 −0 IdentityCore/src/validation/MSIDAADAuthority.m
+2 −0 IdentityCore/src/validation/MSIDAadAuthorityCache.h
+8 −0 IdentityCore/src/validation/MSIDAadAuthorityCache.m
+2 −0 IdentityCore/src/webview/embeddedWebview/MSIDOAuth2EmbeddedWebviewController.h
+35 −1 IdentityCore/src/webview/embeddedWebview/MSIDOAuth2EmbeddedWebviewController.m
+34 −0 IdentityCore/src/webview/embeddedWebview/customHeaderProviding/MSIDCustomHeaderProviding.h
+32 −0 IdentityCore/tests/MSIDAadAuthorityCacheTests.m
+1 −0 IdentityCore/tests/MSIDRequestControllerFactoryTests.m
+327 −352 IdentityCore/tests/MSIDThrottlingServiceIntegrationTests.m
+1 −0 IdentityCore/tests/MSIDWorkPlaceJoinUtilTests.m
+1 −1 IdentityCore/tests/integration/MSIDAuthorityIntegrationTests.m
+1 −0 IdentityCore/tests/integration/MSIDOIDCSignoutRequestTests.m
+47 −0 IdentityCore/tests/integration/MSIDSilentControllerIntegrationTests.m
+3 −19 IdentityCore/tests/integration/ios/MSIDBrokerInteractiveControllerIntegrationTests.m
+1 −0 IdentityCore/tests/integration/ios/MSIDDefaultInteractiveTokenRequestTests.m
+6 −24 IdentityCore/tests/throttling/MSIDThrottlingModel429Test.m
+9 −30 IdentityCore/tests/throttling/MSIDThrottlingModelNonRecoverableServerError.m
+1 −1 IdentityCore/tests/util/swizzle/MSIDTestSwizzle.h
+12 −0 IdentityCore/tests/util/swizzle/MSIDTestSwizzle.m
+3 −2 changelog.txt
Loading