heroku 10.0.1-beta.1 → 10.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/commands/pipelines/diff.js +1 -1
- package/lib/commands/status.js +1 -1
- package/lib/deps.d.ts +1 -1
- package/lib/deps.js +1 -1
- package/lib/lib/container/streamer.js +1 -1
- package/lib/lib/pipelines/github-api.d.ts +1 -1
- package/lib/lib/pipelines/github-api.js +1 -1
- package/lib/lib/pipelines/kolkrabbi-api.js +1 -1
- package/lib/lib/run/dyno.d.ts +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const color_1 = require("@heroku-cli/color");
|
|
4
4
|
const command_1 = require("@heroku-cli/command");
|
|
5
5
|
const core_1 = require("@oclif/core");
|
|
6
|
-
const http_call_1 = require("http-call");
|
|
6
|
+
const http_call_1 = require("@heroku/http-call");
|
|
7
7
|
const api_1 = require("../../lib/api");
|
|
8
8
|
const kolkrabbi_api_1 = require("../../lib/pipelines/kolkrabbi-api");
|
|
9
9
|
const PROMOTION_ORDER = ['development', 'staging', 'production'];
|
package/lib/commands/status.js
CHANGED
|
@@ -4,7 +4,7 @@ const color_1 = require("@heroku-cli/color");
|
|
|
4
4
|
const core_1 = require("@oclif/core");
|
|
5
5
|
const util_1 = require("@oclif/core/lib/util");
|
|
6
6
|
const date_fns_1 = require("date-fns");
|
|
7
|
-
const http_call_1 = require("http-call");
|
|
7
|
+
const http_call_1 = require("@heroku/http-call");
|
|
8
8
|
const util_2 = require("../lib/status/util");
|
|
9
9
|
const printStatus = (status) => {
|
|
10
10
|
const colorize = color_1.default[status];
|
package/lib/deps.d.ts
CHANGED
package/lib/deps.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.streamer = void 0;
|
|
4
4
|
async function call(url, out, retries) {
|
|
5
|
-
const http = require('http-call').HTTP;
|
|
5
|
+
const http = require('@heroku/http-call').HTTP;
|
|
6
6
|
const maxRetries = 30;
|
|
7
7
|
try {
|
|
8
8
|
const { response } = await http.stream(url);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const http_call_1 = require("http-call");
|
|
3
|
+
const http_call_1 = require("@heroku/http-call");
|
|
4
4
|
const GITHUB_API = 'https://api.github.com';
|
|
5
5
|
class GitHubAPI {
|
|
6
6
|
constructor(version, token) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const http_call_1 = require("http-call");
|
|
3
|
+
const http_call_1 = require("@heroku/http-call");
|
|
4
4
|
const KOLKRABBI_BASE_URL = 'https://kolkrabbi.heroku.com';
|
|
5
5
|
class default_1 {
|
|
6
6
|
constructor(version, getToken) {
|
package/lib/lib/run/dyno.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
import { APIClient } from '@heroku-cli/command';
|
|
6
6
|
import { IOptions } from '@heroku-cli/command/lib/api-client';
|
|
7
7
|
import { Dyno as APIDyno } from '@heroku-cli/schema';
|
|
8
|
-
import { HTTP } from 'http-call';
|
|
8
|
+
import { HTTP } from '@heroku/http-call';
|
|
9
9
|
import * as net from 'net';
|
|
10
10
|
import { Duplex } from 'stream';
|
|
11
11
|
import * as tls from 'tls';
|
package/oclif.manifest.json
CHANGED
|
@@ -14451,5 +14451,5 @@
|
|
|
14451
14451
|
]
|
|
14452
14452
|
}
|
|
14453
14453
|
},
|
|
14454
|
-
"version": "10.0.1
|
|
14454
|
+
"version": "10.0.1"
|
|
14455
14455
|
}
|
package/package.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.0.1
|
|
4
|
+
"version": "10.0.1",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@heroku-cli/color": "2.0.1",
|
|
10
|
-
"@heroku-cli/command": "11.4.0
|
|
10
|
+
"@heroku-cli/command": "^11.4.0",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.4",
|
|
12
|
-
"@heroku-cli/plugin-ps-exec": "2.6.
|
|
12
|
+
"@heroku-cli/plugin-ps-exec": "2.6.1",
|
|
13
13
|
"@heroku-cli/schema": "^1.0.25",
|
|
14
14
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
15
15
|
"@heroku/eventsource": "^1.0.7",
|
|
16
16
|
"@heroku/heroku-cli-util": "^8.0.13",
|
|
17
|
-
"@heroku/http-call": "5.4.0
|
|
17
|
+
"@heroku/http-call": "^5.4.0",
|
|
18
18
|
"@inquirer/prompts": "^5.0.5",
|
|
19
19
|
"@oclif/core": "^2.16.0",
|
|
20
20
|
"@oclif/plugin-commands": "2.2.28",
|
|
@@ -390,5 +390,5 @@
|
|
|
390
390
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
391
391
|
},
|
|
392
392
|
"types": "lib/index.d.ts",
|
|
393
|
-
"gitHead": "
|
|
393
|
+
"gitHead": "d25ac62e56630aa05e6b6b52ae45f00eea185383"
|
|
394
394
|
}
|