cherry-pick: set Azure login status to signed in after token retrieval (PR #15958 → dev)#16001
Draft
Copilot wants to merge 1 commit into
Draft
cherry-pick: set Azure login status to signed in after token retrieval (PR #15958 → dev)#16001Copilot wants to merge 1 commit into
Copilot wants to merge 1 commit into
Conversation
Copilot
AI
changed the title
[WIP] Cherry pick changes from PR 15958 to dev
cherry-pick: set Azure login status to signed in after token retrieval (PR #15958 → dev)
May 21, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## dev #16001 +/- ##
=======================================
Coverage 93.35% 93.35%
=======================================
Files 597 597
Lines 37412 37412
Branches 6987 6997 +10
=======================================
+ Hits 34926 34927 +1
+ Misses 1837 1836 -1
Partials 649 649 🚀 New features to boost your workflow:
|
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.
After a successful Azure login,
AzureAccountManager.currentStatuswas not being updated tologgedInand listeners were not notified, leaving the extension UI and dependent features in a stale unauthenticated state.Changes
azureLogin.ts: After building theTokenCredentialon successful login, immediately setAzureAccountManager.currentStatus = loggedInand callvoid this.notifyStatus()before returning the credential.Notes
Both changes from PR #15958 were already present in
dev:azureLogin.tsfix (lines 174–175)6.10.0, ahead of the6.10.0-rc.0bump that was release-branch-specificNo code modifications were required; this PR confirms the cherry-pick is complete.