heroku 10.7.0 → 10.7.1-alpha.0
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 +1 -0
- package/bin/heroku-prompts.js +235 -0
- package/bin/heroku-repl.js +620 -0
- package/bin/run +36 -7
- package/lib/analytics.js +3 -1
- package/lib/commands/access/index.js +2 -1
- package/lib/commands/accounts/current.js +2 -1
- package/lib/commands/addons/index.js +3 -2
- package/lib/commands/addons/info.js +3 -2
- package/lib/commands/addons/plans.js +3 -2
- package/lib/commands/addons/services.js +3 -2
- package/lib/commands/apps/create.js +2 -1
- package/lib/commands/apps/errors.js +4 -3
- package/lib/commands/apps/favorites/index.js +3 -2
- package/lib/commands/apps/index.js +7 -6
- package/lib/commands/apps/info.js +4 -3
- package/lib/commands/apps/stacks/index.js +2 -1
- package/lib/commands/authorizations/create.js +2 -1
- package/lib/commands/authorizations/index.js +3 -2
- package/lib/commands/authorizations/info.js +2 -1
- package/lib/commands/autocomplete/doctor.js +2 -1
- package/lib/commands/buildpacks/index.js +2 -2
- package/lib/commands/buildpacks/info.js +3 -2
- package/lib/commands/buildpacks/search.js +2 -1
- package/lib/commands/buildpacks/versions.js +2 -1
- package/lib/commands/certs/add.js +2 -1
- package/lib/commands/certs/auto/enable.js +3 -2
- package/lib/commands/certs/auto/index.js +5 -4
- package/lib/commands/ci/config/index.js +4 -3
- package/lib/commands/ci/config/set.js +2 -1
- package/lib/commands/clients/create.js +2 -1
- package/lib/commands/clients/index.js +3 -2
- package/lib/commands/clients/info.js +4 -3
- package/lib/commands/clients/rotate.js +4 -3
- package/lib/commands/config/edit.js +2 -1
- package/lib/commands/config/index.js +4 -3
- package/lib/commands/config/set.js +2 -1
- package/lib/commands/container/pull.js +2 -2
- package/lib/commands/container/push.js +5 -4
- package/lib/commands/container/run.js +3 -2
- package/lib/commands/domains/add.js +2 -1
- package/lib/commands/domains/index.js +5 -4
- package/lib/commands/domains/info.js +2 -1
- package/lib/commands/drains/index.js +4 -3
- package/lib/commands/features/index.js +3 -2
- package/lib/commands/features/info.js +4 -3
- package/lib/commands/keys/add.js +2 -1
- package/lib/commands/keys/index.js +3 -2
- package/lib/commands/labs/disable.js +2 -1
- package/lib/commands/labs/index.js +3 -2
- package/lib/commands/labs/info.js +4 -3
- package/lib/commands/members/index.js +2 -1
- package/lib/commands/notifications/index.js +3 -2
- package/lib/commands/pg/backups/index.js +7 -6
- package/lib/commands/pg/backups/info.js +4 -3
- package/lib/commands/pg/backups/schedules.js +2 -1
- package/lib/commands/pg/credentials.js +2 -1
- package/lib/commands/pg/diagnose.js +3 -2
- package/lib/commands/pg/info.js +4 -3
- package/lib/commands/pg/links/index.js +3 -2
- package/lib/commands/pg/settings/index.js +3 -2
- package/lib/commands/pipelines/diff.js +3 -2
- package/lib/commands/pipelines/index.js +3 -2
- package/lib/commands/pipelines/info.js +2 -1
- package/lib/commands/pipelines/promote.js +2 -1
- package/lib/commands/pipelines/transfer.js +2 -1
- package/lib/commands/ps/index.js +5 -4
- package/lib/commands/ps/type.js +5 -4
- package/lib/commands/ps/wait.js +2 -1
- package/lib/commands/regions.js +3 -3
- package/lib/commands/releases/index.js +3 -2
- package/lib/commands/releases/info.js +6 -5
- package/lib/commands/sessions/index.js +3 -2
- package/lib/commands/spaces/create.js +3 -2
- package/lib/commands/spaces/index.js +2 -1
- package/lib/commands/spaces/ps.js +3 -2
- package/lib/commands/spaces/topology.js +4 -3
- package/lib/commands/spaces/trusted-ips/index.js +3 -2
- package/lib/commands/spaces/vpn/config.js +2 -1
- package/lib/commands/spaces/vpn/connections.js +4 -3
- package/lib/commands/spaces/vpn/info.js +6 -5
- package/lib/commands/spaces/vpn/wait.js +2 -1
- package/lib/commands/status.js +3 -2
- package/lib/commands/teams/index.js +3 -3
- package/lib/commands/telemetry/index.js +3 -2
- package/lib/commands/usage/addons.js +3 -2
- package/lib/commands/webhooks/add.js +2 -1
- package/lib/commands/webhooks/deliveries/index.js +2 -2
- package/lib/commands/webhooks/deliveries/info.js +5 -4
- package/lib/commands/webhooks/events/index.js +2 -1
- package/lib/commands/webhooks/events/info.js +3 -2
- package/lib/commands/webhooks/index.js +2 -2
- package/lib/commands/webhooks/info.js +3 -2
- package/lib/global_telemetry.d.ts +1 -1
- package/lib/global_telemetry.js +3 -1
- package/lib/lib/authorizations/authorizations.js +2 -2
- package/lib/lib/certs/certificate_details.js +2 -1
- package/lib/lib/certs/display_table.js +2 -2
- package/lib/lib/ci/test-run.js +4 -3
- package/lib/lib/confirmCommand.js +2 -1
- package/lib/lib/domains/domains.js +4 -3
- package/lib/lib/domains/wait-for-domain.js +2 -2
- package/lib/lib/orgs/utils.js +2 -1
- package/lib/lib/pipelines/render-pipeline.js +3 -2
- package/lib/lib/pipelines/setup/get-ci-settings.js +2 -2
- package/lib/lib/pipelines/setup/get-name-and-repo.js +3 -2
- package/lib/lib/pipelines/setup/get-settings.js +6 -6
- package/lib/lib/redis/api.js +4 -3
- package/lib/lib/spaces/hosts.js +3 -2
- package/lib/lib/spaces/outbound-rules.js +4 -3
- package/lib/lib/spaces/peering.js +5 -4
- package/lib/lib/spaces/spaces.js +3 -2
- package/lib/lib/spaces/vpn-connections.js +3 -3
- package/lib/lib/telemetry/util.js +3 -2
- package/oclif.manifest.json +129 -129
- package/package.json +9 -6
package/oclif.manifest.json
CHANGED
|
@@ -533,134 +533,6 @@
|
|
|
533
533
|
"update.js"
|
|
534
534
|
]
|
|
535
535
|
},
|
|
536
|
-
"accounts:add": {
|
|
537
|
-
"aliases": [],
|
|
538
|
-
"args": {
|
|
539
|
-
"name": {
|
|
540
|
-
"description": "name of Heroku account to add",
|
|
541
|
-
"name": "name",
|
|
542
|
-
"required": true
|
|
543
|
-
}
|
|
544
|
-
},
|
|
545
|
-
"description": "add a Heroku account to your cache",
|
|
546
|
-
"examples": "heroku accounts:add my-account",
|
|
547
|
-
"flags": {},
|
|
548
|
-
"hasDynamicHelp": false,
|
|
549
|
-
"hiddenAliases": [],
|
|
550
|
-
"id": "accounts:add",
|
|
551
|
-
"pluginAlias": "heroku",
|
|
552
|
-
"pluginName": "heroku",
|
|
553
|
-
"pluginType": "core",
|
|
554
|
-
"strict": true,
|
|
555
|
-
"example": "heroku accounts:add my-account",
|
|
556
|
-
"isESM": false,
|
|
557
|
-
"relativePath": [
|
|
558
|
-
"lib",
|
|
559
|
-
"commands",
|
|
560
|
-
"accounts",
|
|
561
|
-
"add.js"
|
|
562
|
-
]
|
|
563
|
-
},
|
|
564
|
-
"accounts:current": {
|
|
565
|
-
"aliases": [],
|
|
566
|
-
"args": {},
|
|
567
|
-
"description": "display the current Heroku account",
|
|
568
|
-
"examples": "heroku accounts:current",
|
|
569
|
-
"flags": {},
|
|
570
|
-
"hasDynamicHelp": false,
|
|
571
|
-
"hiddenAliases": [],
|
|
572
|
-
"id": "accounts:current",
|
|
573
|
-
"pluginAlias": "heroku",
|
|
574
|
-
"pluginName": "heroku",
|
|
575
|
-
"pluginType": "core",
|
|
576
|
-
"strict": true,
|
|
577
|
-
"example": "heroku accounts:current",
|
|
578
|
-
"isESM": false,
|
|
579
|
-
"relativePath": [
|
|
580
|
-
"lib",
|
|
581
|
-
"commands",
|
|
582
|
-
"accounts",
|
|
583
|
-
"current.js"
|
|
584
|
-
]
|
|
585
|
-
},
|
|
586
|
-
"accounts": {
|
|
587
|
-
"aliases": [],
|
|
588
|
-
"args": {},
|
|
589
|
-
"description": "list the Heroku accounts in your cache",
|
|
590
|
-
"examples": "heroku accounts",
|
|
591
|
-
"flags": {},
|
|
592
|
-
"hasDynamicHelp": false,
|
|
593
|
-
"hiddenAliases": [],
|
|
594
|
-
"id": "accounts",
|
|
595
|
-
"pluginAlias": "heroku",
|
|
596
|
-
"pluginName": "heroku",
|
|
597
|
-
"pluginType": "core",
|
|
598
|
-
"strict": true,
|
|
599
|
-
"example": "heroku accounts",
|
|
600
|
-
"isESM": false,
|
|
601
|
-
"relativePath": [
|
|
602
|
-
"lib",
|
|
603
|
-
"commands",
|
|
604
|
-
"accounts",
|
|
605
|
-
"index.js"
|
|
606
|
-
]
|
|
607
|
-
},
|
|
608
|
-
"accounts:remove": {
|
|
609
|
-
"aliases": [],
|
|
610
|
-
"args": {
|
|
611
|
-
"name": {
|
|
612
|
-
"description": "name of Heroku account to remove",
|
|
613
|
-
"name": "name",
|
|
614
|
-
"required": true
|
|
615
|
-
}
|
|
616
|
-
},
|
|
617
|
-
"description": "remove a Heroku account from your cache",
|
|
618
|
-
"examples": "heroku accounts:remove my-account",
|
|
619
|
-
"flags": {},
|
|
620
|
-
"hasDynamicHelp": false,
|
|
621
|
-
"hiddenAliases": [],
|
|
622
|
-
"id": "accounts:remove",
|
|
623
|
-
"pluginAlias": "heroku",
|
|
624
|
-
"pluginName": "heroku",
|
|
625
|
-
"pluginType": "core",
|
|
626
|
-
"strict": true,
|
|
627
|
-
"example": "heroku accounts:remove my-account",
|
|
628
|
-
"isESM": false,
|
|
629
|
-
"relativePath": [
|
|
630
|
-
"lib",
|
|
631
|
-
"commands",
|
|
632
|
-
"accounts",
|
|
633
|
-
"remove.js"
|
|
634
|
-
]
|
|
635
|
-
},
|
|
636
|
-
"accounts:set": {
|
|
637
|
-
"aliases": [],
|
|
638
|
-
"args": {
|
|
639
|
-
"name": {
|
|
640
|
-
"description": "name of account to set",
|
|
641
|
-
"name": "name",
|
|
642
|
-
"required": true
|
|
643
|
-
}
|
|
644
|
-
},
|
|
645
|
-
"description": "set the current Heroku account from your cache",
|
|
646
|
-
"examples": "heroku accounts:set my-account",
|
|
647
|
-
"flags": {},
|
|
648
|
-
"hasDynamicHelp": false,
|
|
649
|
-
"hiddenAliases": [],
|
|
650
|
-
"id": "accounts:set",
|
|
651
|
-
"pluginAlias": "heroku",
|
|
652
|
-
"pluginName": "heroku",
|
|
653
|
-
"pluginType": "core",
|
|
654
|
-
"strict": true,
|
|
655
|
-
"example": "heroku accounts:set my-account",
|
|
656
|
-
"isESM": false,
|
|
657
|
-
"relativePath": [
|
|
658
|
-
"lib",
|
|
659
|
-
"commands",
|
|
660
|
-
"accounts",
|
|
661
|
-
"set.js"
|
|
662
|
-
]
|
|
663
|
-
},
|
|
664
536
|
"addons:attach": {
|
|
665
537
|
"aliases": [],
|
|
666
538
|
"args": {
|
|
@@ -1315,6 +1187,134 @@
|
|
|
1315
1187
|
"wait.js"
|
|
1316
1188
|
]
|
|
1317
1189
|
},
|
|
1190
|
+
"accounts:add": {
|
|
1191
|
+
"aliases": [],
|
|
1192
|
+
"args": {
|
|
1193
|
+
"name": {
|
|
1194
|
+
"description": "name of Heroku account to add",
|
|
1195
|
+
"name": "name",
|
|
1196
|
+
"required": true
|
|
1197
|
+
}
|
|
1198
|
+
},
|
|
1199
|
+
"description": "add a Heroku account to your cache",
|
|
1200
|
+
"examples": "heroku accounts:add my-account",
|
|
1201
|
+
"flags": {},
|
|
1202
|
+
"hasDynamicHelp": false,
|
|
1203
|
+
"hiddenAliases": [],
|
|
1204
|
+
"id": "accounts:add",
|
|
1205
|
+
"pluginAlias": "heroku",
|
|
1206
|
+
"pluginName": "heroku",
|
|
1207
|
+
"pluginType": "core",
|
|
1208
|
+
"strict": true,
|
|
1209
|
+
"example": "heroku accounts:add my-account",
|
|
1210
|
+
"isESM": false,
|
|
1211
|
+
"relativePath": [
|
|
1212
|
+
"lib",
|
|
1213
|
+
"commands",
|
|
1214
|
+
"accounts",
|
|
1215
|
+
"add.js"
|
|
1216
|
+
]
|
|
1217
|
+
},
|
|
1218
|
+
"accounts:current": {
|
|
1219
|
+
"aliases": [],
|
|
1220
|
+
"args": {},
|
|
1221
|
+
"description": "display the current Heroku account",
|
|
1222
|
+
"examples": "heroku accounts:current",
|
|
1223
|
+
"flags": {},
|
|
1224
|
+
"hasDynamicHelp": false,
|
|
1225
|
+
"hiddenAliases": [],
|
|
1226
|
+
"id": "accounts:current",
|
|
1227
|
+
"pluginAlias": "heroku",
|
|
1228
|
+
"pluginName": "heroku",
|
|
1229
|
+
"pluginType": "core",
|
|
1230
|
+
"strict": true,
|
|
1231
|
+
"example": "heroku accounts:current",
|
|
1232
|
+
"isESM": false,
|
|
1233
|
+
"relativePath": [
|
|
1234
|
+
"lib",
|
|
1235
|
+
"commands",
|
|
1236
|
+
"accounts",
|
|
1237
|
+
"current.js"
|
|
1238
|
+
]
|
|
1239
|
+
},
|
|
1240
|
+
"accounts": {
|
|
1241
|
+
"aliases": [],
|
|
1242
|
+
"args": {},
|
|
1243
|
+
"description": "list the Heroku accounts in your cache",
|
|
1244
|
+
"examples": "heroku accounts",
|
|
1245
|
+
"flags": {},
|
|
1246
|
+
"hasDynamicHelp": false,
|
|
1247
|
+
"hiddenAliases": [],
|
|
1248
|
+
"id": "accounts",
|
|
1249
|
+
"pluginAlias": "heroku",
|
|
1250
|
+
"pluginName": "heroku",
|
|
1251
|
+
"pluginType": "core",
|
|
1252
|
+
"strict": true,
|
|
1253
|
+
"example": "heroku accounts",
|
|
1254
|
+
"isESM": false,
|
|
1255
|
+
"relativePath": [
|
|
1256
|
+
"lib",
|
|
1257
|
+
"commands",
|
|
1258
|
+
"accounts",
|
|
1259
|
+
"index.js"
|
|
1260
|
+
]
|
|
1261
|
+
},
|
|
1262
|
+
"accounts:remove": {
|
|
1263
|
+
"aliases": [],
|
|
1264
|
+
"args": {
|
|
1265
|
+
"name": {
|
|
1266
|
+
"description": "name of Heroku account to remove",
|
|
1267
|
+
"name": "name",
|
|
1268
|
+
"required": true
|
|
1269
|
+
}
|
|
1270
|
+
},
|
|
1271
|
+
"description": "remove a Heroku account from your cache",
|
|
1272
|
+
"examples": "heroku accounts:remove my-account",
|
|
1273
|
+
"flags": {},
|
|
1274
|
+
"hasDynamicHelp": false,
|
|
1275
|
+
"hiddenAliases": [],
|
|
1276
|
+
"id": "accounts:remove",
|
|
1277
|
+
"pluginAlias": "heroku",
|
|
1278
|
+
"pluginName": "heroku",
|
|
1279
|
+
"pluginType": "core",
|
|
1280
|
+
"strict": true,
|
|
1281
|
+
"example": "heroku accounts:remove my-account",
|
|
1282
|
+
"isESM": false,
|
|
1283
|
+
"relativePath": [
|
|
1284
|
+
"lib",
|
|
1285
|
+
"commands",
|
|
1286
|
+
"accounts",
|
|
1287
|
+
"remove.js"
|
|
1288
|
+
]
|
|
1289
|
+
},
|
|
1290
|
+
"accounts:set": {
|
|
1291
|
+
"aliases": [],
|
|
1292
|
+
"args": {
|
|
1293
|
+
"name": {
|
|
1294
|
+
"description": "name of account to set",
|
|
1295
|
+
"name": "name",
|
|
1296
|
+
"required": true
|
|
1297
|
+
}
|
|
1298
|
+
},
|
|
1299
|
+
"description": "set the current Heroku account from your cache",
|
|
1300
|
+
"examples": "heroku accounts:set my-account",
|
|
1301
|
+
"flags": {},
|
|
1302
|
+
"hasDynamicHelp": false,
|
|
1303
|
+
"hiddenAliases": [],
|
|
1304
|
+
"id": "accounts:set",
|
|
1305
|
+
"pluginAlias": "heroku",
|
|
1306
|
+
"pluginName": "heroku",
|
|
1307
|
+
"pluginType": "core",
|
|
1308
|
+
"strict": true,
|
|
1309
|
+
"example": "heroku accounts:set my-account",
|
|
1310
|
+
"isESM": false,
|
|
1311
|
+
"relativePath": [
|
|
1312
|
+
"lib",
|
|
1313
|
+
"commands",
|
|
1314
|
+
"accounts",
|
|
1315
|
+
"set.js"
|
|
1316
|
+
]
|
|
1317
|
+
},
|
|
1318
1318
|
"apps:create": {
|
|
1319
1319
|
"aliases": [],
|
|
1320
1320
|
"args": {
|
|
@@ -14652,5 +14652,5 @@
|
|
|
14652
14652
|
]
|
|
14653
14653
|
}
|
|
14654
14654
|
},
|
|
14655
|
-
"version": "10.7.0"
|
|
14655
|
+
"version": "10.7.1-alpha.0"
|
|
14656
14656
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.7.0",
|
|
4
|
+
"version": "10.7.1-alpha.0",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -13,8 +13,9 @@
|
|
|
13
13
|
"@heroku-cli/schema": "^1.0.25",
|
|
14
14
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
15
15
|
"@heroku/eventsource": "^1.0.7",
|
|
16
|
-
"@heroku/heroku-cli-util": "^
|
|
16
|
+
"@heroku/heroku-cli-util": "^9.0.1",
|
|
17
17
|
"@heroku/http-call": "^5.4.0",
|
|
18
|
+
"@heroku/plugin-ai": "^1.0.1",
|
|
18
19
|
"@inquirer/prompts": "^5.0.5",
|
|
19
20
|
"@oclif/core": "^2.16.0",
|
|
20
21
|
"@oclif/plugin-commands": "2.2.28",
|
|
@@ -79,7 +80,8 @@
|
|
|
79
80
|
"validator": "^13.7.0",
|
|
80
81
|
"word-wrap": "^1.2.5",
|
|
81
82
|
"ws": "^6.2.2",
|
|
82
|
-
"yaml": "^2.0.1"
|
|
83
|
+
"yaml": "^2.0.1",
|
|
84
|
+
"yargs-parser": "18.1.3"
|
|
83
85
|
},
|
|
84
86
|
"devDependencies": {
|
|
85
87
|
"@heroku-cli/schema": "^1.0.25",
|
|
@@ -185,7 +187,8 @@
|
|
|
185
187
|
"@oclif/plugin-update",
|
|
186
188
|
"@oclif/plugin-version",
|
|
187
189
|
"@oclif/plugin-warn-if-update-available",
|
|
188
|
-
"@oclif/plugin-which"
|
|
190
|
+
"@oclif/plugin-which",
|
|
191
|
+
"@heroku/plugin-ai"
|
|
189
192
|
],
|
|
190
193
|
"bin": "heroku",
|
|
191
194
|
"dirname": "heroku",
|
|
@@ -388,12 +391,12 @@
|
|
|
388
391
|
"test:acceptance": "yarn pretest && mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
|
|
389
392
|
"test:integration": "yarn pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
|
|
390
393
|
"test:smoke": "yarn pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
|
|
391
|
-
"test:unit:justTest:local": "
|
|
394
|
+
"test:unit:justTest:local": "mocha \"test/**/*.unit.test.ts\"",
|
|
392
395
|
"test:unit:justTest:ci": "nyc --reporter=lcov --reporter=text-summary mocha --forbid-only \"test/**/*.unit.test.ts\"",
|
|
393
396
|
"test": "yarn pretest && yarn test:unit:justTest:ci",
|
|
394
397
|
"test:local": "yarn pretest && yarn test:unit:justTest:local",
|
|
395
398
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
396
399
|
},
|
|
397
400
|
"types": "lib/index.d.ts",
|
|
398
|
-
"gitHead": "
|
|
401
|
+
"gitHead": "b4b7d4102ef420d0294e9ef1635cce49eadb9102"
|
|
399
402
|
}
|