Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

heroku-cli-util

Package Overview
Dependencies
Maintainers
2
Versions
155
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

heroku-cli-util - npm Package Compare versions

Comparing version 5.8.4 to 5.9.0

lib/got.js

1

index.js

@@ -34,1 +34,2 @@ 'use strict';

exports.open = require('./lib/open');
exports.got = require('./lib/got');

3

lib/command.js

@@ -40,3 +40,3 @@ 'use strict';

let httpsProxy = process.env.HTTPS_PROXY || process.env.https_proxy;
let httpsProxy = process.env.HTTPS_PROXY || process.env.https_proxy || process.env.HTTP_PROXY || process.env.http_proxy;

@@ -48,2 +48,3 @@ function setupHttpProxy() {

process.env.HEROKU_HTTP_PROXY_PORT = proxy.port;
process.env.HEROKU_HTTP_PROXY_AUTH = proxy.auth;
}

@@ -50,0 +51,0 @@

{
"name": "heroku-cli-util",
"version": "5.8.4",
"version": "5.9.0",
"description": "Set of helpful CLI utilities",

@@ -25,3 +25,4 @@ "main": "index.js",

"mocha-junit-reporter": "1.9.1",
"nock": "7.2.2"
"nock": "7.2.2",
"proxyquire": "1.7.4"
},

@@ -32,6 +33,8 @@ "dependencies": {

"co": "4.6.0",
"heroku-client": "2.4.1",
"heroku-client": "2.4.2",
"lodash": "4.6.1",
"opn": "3.0.3"
"opn": "3.0.3",
"tunnel-agent": "0.4.2",
"got": "6.1.1"
}
}

@@ -193,2 +193,11 @@ # heroku-cli-util

## HTTP calls
`heroku-cli-util` includes an instance of [got](https://www.npmjs.com/package/got) that will correctly use HTTP proxies.
```js
let cli = require('heroku-cli-util');
let rsp = yield cli.got('https://google.com');
```
## Mocking

@@ -195,0 +204,0 @@

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc