Socket
Socket
Sign inDemoInstall

@microsoft/vscode-azext-azureutils

Package Overview
Dependencies
Maintainers
12
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@microsoft/vscode-azext-azureutils - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

15

out/src/createAzureClient.js

@@ -119,2 +119,3 @@ "use strict";

}
pipeline.addPolicy(new AllowInsecureConnectionPolicy());
return pipeline;

@@ -272,2 +273,16 @@ }

BasicAuthenticationCredentialsPolicy.Name = 'BasicAuthenticationCredentialsPolicy';
class AllowInsecureConnectionPolicy {
constructor() {
this.name = AllowInsecureConnectionPolicy.Name;
}
sendRequest(request, next) {
return __awaiter(this, void 0, void 0, function* () {
if (request.url.startsWith('http://')) {
request.allowInsecureConnection = true;
}
return yield next(request);
});
}
}
AllowInsecureConnectionPolicy.Name = 'AllowInsecureConnectionPolicy';
//# sourceMappingURL=createAzureClient.js.map

2

package.json
{
"name": "@microsoft/vscode-azext-azureutils",
"author": "Microsoft Corporation",
"version": "2.0.0",
"version": "2.0.1",
"description": "Common Azure utils for developing Azure extensions for VS Code",

@@ -6,0 +6,0 @@ "tags": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc