Add AzureFranceSov to AzureCloudInstance enum, Fixes AB#3536002#2484
Merged
Add AzureFranceSov to AzureCloudInstance enum, Fixes AB#3536002#2484
Conversation
added 2 commits
March 17, 2026 15:03
- Add AzureFranceSov enum value for France sovereign cloud (login.sovcloud-identity.fr) - Add test coverage in TokenParametersAuthorityTest and TokenParametersAuthorityMyOrgTest
|
❌ Work item link check failed. Description does not contain AB#{ID}. Click here to Learn more. |
Contributor
There was a problem hiding this comment.
Pull request overview
Adds support for the Bleu (France sovereign) cloud by introducing AzureFranceSov in the AzureCloudInstance enum and extending authority-construction tests to cover the new cloud host.
Changes:
- Add
AzureFranceSov("https://login.sovcloud-identity.fr")toAzureCloudInstance. - Extend parameterized tests to validate authority URLs for
AzureFranceSov(common/organizations + my-org tenant). - Update changelog and bump the
commonsubmodule pointer.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| msal/src/main/java/com/microsoft/identity/client/AzureCloudInstance.java | Adds the new cloud instance enum value and associated host. |
| msal/src/test/java/com/microsoft/identity/client/TokenParametersAuthorityTest.java | Adds parameterized test cases for AzureFranceSov authority generation. |
| msal/src/test/java/com/microsoft/identity/client/TokenParametersAuthorityMyOrgTest.java | Adds tenant-specific authority test coverage for AzureFranceSov. |
| common | Updates submodule commit to pick up corresponding common-layer changes. |
| changelog | Documents the new cloud instance support in vNext notes. |
You can also share your feedback on Copilot code review. Take the survey.
msal/src/test/java/com/microsoft/identity/client/TokenParametersAuthorityTest.java
Show resolved
Hide resolved
msal/src/main/java/com/microsoft/identity/client/AzureCloudInstance.java
Outdated
Show resolved
Hide resolved
added 2 commits
March 19, 2026 14:49
shahzaibj
approved these changes
Mar 20, 2026
rpdome
approved these changes
Mar 20, 2026
Member
rpdome
left a comment
There was a problem hiding this comment.
Do we want to add delos and sovsg here? or not yet?
added 7 commits
March 20, 2026 10:50
p3dr0rv
approved these changes
Mar 21, 2026
darasok85az-lang
approved these changes
Mar 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new
AzureFranceSovvalue to theAzureCloudInstanceenum, enabling app developers to target the Bleu sovereign cloud (France) using the type-safe builder pattern:Points to changes in AzureAD/microsoft-authentication-library-common-for-android#3027
Fixes AB#3536002