Upgrade @microsoft/vscode-azext-azureauth to 6.0.0-alpha.8#1417
Merged
alexweininger merged 1 commit intomainfrom Mar 26, 2026
Merged
Upgrade @microsoft/vscode-azext-azureauth to 6.0.0-alpha.8#1417alexweininger merged 1 commit intomainfrom
alexweininger merged 1 commit intomainfrom
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
nturinski
approved these changes
Mar 26, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Upgrades the extension’s authentication dependency to pick up upstream fixes in @microsoft/vscode-azext-azureauth, improving refresh behavior around subscription filter changes, MFA step-up challenges, and auth/cloud-change refresh signaling.
Changes:
- Bump
@microsoft/vscode-azext-azureauthfrom6.0.0-alpha.5to6.0.0-alpha.8. - Update
package-lock.jsonto lock the new azureauth version and its updated dependency graph (including@azure/core-rest-pipeline).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Updates the azureauth dependency range to require 6.0.0-alpha.8. |
| package-lock.json | Locks @microsoft/vscode-azext-azureauth@6.0.0-alpha.8 and records dependency graph updates. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Updates
@microsoft/vscode-azext-azureauthfrom6.0.0-alpha.5to6.0.0-alpha.8.Bug fixes included in this upgrade
Fix subscription filter change events suppressed during debounce (vscode-azuretools#2245) —
subscriptionFilterChangeevents could be silently dropped when they occurred during the debounce window, causing the Azure tree to not refresh after changing subscription filters. Fixes Re‑selecting subscription does not trigger Azure Resources view refresh #1412.Add BearerChallengePolicy for MFA step-up during subscription listing (vscode-azuretools#2231) — When users hit an MFA step-up challenge (401 with
WWW-Authenticateheader) during tenant/subscription listing, the request would simply fail. The auth package now includes aBearerChallengePolicyon the subscription client pipeline to handle these challenges.Other changes
Reduce auth event debounce from 5s to 2s (vscode-azuretools#2246) — Reduces the
onRefreshSuggesteddebounce interval from 5 seconds to 2 seconds for faster tree refresh after auth state changes.Watch sovereign cloud config and fire onRefreshSuggested (vscode-azuretools#2248) — The auth provider now watches the
microsoft-sovereign-cloudconfig section for changes. When the cloud environment is switched, it clears all cached auth data and firesonRefreshSuggestedwith a newcloudChangereason, so trees refresh automatically without manual cache clearing.