heroku 8.3.1-beta.0 → 8.3.1-beta.2
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/README.md +0 -2
- package/lib/global_telemetry.js +3 -2
- package/oclif.manifest.json +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -56,7 +56,6 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
56
56
|
* [`heroku logs`](docs/logs.md) - display recent log output
|
|
57
57
|
* [`heroku maintenance`](docs/maintenance.md) - enable/disable access to app
|
|
58
58
|
* [`heroku members`](docs/members.md) - manage organization members
|
|
59
|
-
* [`heroku notifications`](docs/notifications.md) - display notifications
|
|
60
59
|
* [`heroku orgs`](docs/orgs.md) - manage organizations
|
|
61
60
|
* [`heroku pg`](docs/pg.md) - manage postgresql databases
|
|
62
61
|
* [`heroku pipelines`](docs/pipelines.md) - list pipelines you have access to
|
|
@@ -65,7 +64,6 @@ For other issues, [submit a support ticket](https://help.heroku.com/).
|
|
|
65
64
|
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
66
65
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
67
66
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
68
|
-
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
69
67
|
* [`heroku reviewapps`](docs/reviewapps.md) - disable review apps and/or settings on an existing pipeline
|
|
70
68
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
71
69
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
package/lib/global_telemetry.js
CHANGED
|
@@ -12,9 +12,10 @@ const { registerInstrumentations } = require('@opentelemetry/instrumentation');
|
|
|
12
12
|
const { NodeTracerProvider } = require('@opentelemetry/sdk-trace-node');
|
|
13
13
|
const { BatchSpanProcessor } = require('@opentelemetry/sdk-trace-base');
|
|
14
14
|
const { OTLPTraceExporter } = require('@opentelemetry/exporter-trace-otlp-http');
|
|
15
|
-
const root = require('../package.json');
|
|
16
15
|
const isDev = process.env.IS_DEV_ENVIRONMENT === 'true';
|
|
17
|
-
const
|
|
16
|
+
const path = require('path');
|
|
17
|
+
const root = path.resolve(__dirname, '../package.json');
|
|
18
|
+
const { version } = require('../package.json');
|
|
18
19
|
const config = new core_1.Config({ root });
|
|
19
20
|
const heroku = new command_1.APIClient(config);
|
|
20
21
|
const token = heroku.auth;
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.3.1-beta.
|
|
4
|
+
"version": "8.3.1-beta.2",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
10
|
"@heroku-cli/command": "^10.0.0",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.2",
|
|
12
|
-
"@heroku-cli/plugin-addons-v5": "^8.2
|
|
13
|
-
"@heroku-cli/plugin-apps-v5": "^8.2
|
|
12
|
+
"@heroku-cli/plugin-addons-v5": "^8.3.1-beta.2",
|
|
13
|
+
"@heroku-cli/plugin-apps-v5": "^8.3.1-beta.2",
|
|
14
14
|
"@heroku-cli/plugin-certs-v5": "^8.2.0",
|
|
15
15
|
"@heroku-cli/plugin-ci-v5": "^8.2.0",
|
|
16
16
|
"@heroku-cli/plugin-container-registry-v5": "^8.2.0",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@heroku-cli/plugin-ps": "^8.1.7",
|
|
20
20
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
21
21
|
"@heroku-cli/plugin-redis-v5": "^8.2.0",
|
|
22
|
-
"@heroku-cli/plugin-spaces": "^8.2
|
|
22
|
+
"@heroku-cli/plugin-spaces": "^8.3.1-beta.2",
|
|
23
23
|
"@heroku-cli/schema": "^1.0.25",
|
|
24
24
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
25
25
|
"@heroku/eventsource": "^1.0.7",
|
|
@@ -332,5 +332,5 @@
|
|
|
332
332
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
333
333
|
},
|
|
334
334
|
"types": "lib/index.d.ts",
|
|
335
|
-
"gitHead": "
|
|
335
|
+
"gitHead": "f44f0d9353d105c2affa15ee69d8866730e84ad3"
|
|
336
336
|
}
|