-
Notifications
You must be signed in to change notification settings - Fork 142
Upgrade Azure extension dependencies to latest versions #4693
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
base: main
Are you sure you want to change the base?
Conversation
Co-authored-by: nturinski <[email protected]>
Co-authored-by: nturinski <[email protected]>
Just as a heads up, I was blocked by some firewall rules while working on your feedback. Expand below for details. Warning Firewall rules blocked me from connecting to one or more addresses (expand for details)I tried to connect to the following addresses, but was blocked by firewall rules:
If you need me to access, download, or install something from one of these locations, you can either:
|
6fba895
to
aed51e3
Compare
Based on microsoft/vscode-containers#202 |
Verified the following commands:
|
package.json
Outdated
}, | ||
"enabledApiProposals": [ | ||
"authenticationChallenges", | ||
"authLearnMore" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This particular one (authLearnMore
) might not be necessary--we are consuming the typing, so we need the .d.ts file, but I don't think we're actually touching the API at all.
This PR upgrades the Azure extension dependencies to their latest versions as requested:
@microsoft/vscode-azext-azureutils
:^3.4.10
→^3.5.0
@microsoft/vscode-azext-utils
:^3.3.3
→^3.4.0
Changes Made
Dependency Upgrades
package.json
1.103.0
for compatibility@types/vscode
to exactly1.103.0
to match the engine requirementTypeScript Compatibility Fix
The upgraded dependencies reference
AuthenticationSessionRequest
which requires VS Code 1.104 (not yet available). To resolve the TypeScript compilation error:"skipLibCheck": true
totsconfig.json
to skip type checking of third-party declaration filesTesting
npm run build
npm run lint
npm run webpack-prod
main.js
remains unchanged as requiredImpact
This upgrade brings the extension up to date with the latest Azure extension utilities while maintaining full backward compatibility. The skipLibCheck configuration is a minimal, standard solution for the temporary compatibility issue with Azure packages being ahead of available VS Code types.
✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.