heroku 8.4.4-beta.3 → 8.4.4-beta.4
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 -3
- package/lib/commands/pipelines/create.js +1 -1
- package/oclif.manifest.json +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -56,16 +56,13 @@ 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) - manage pipelines
|
|
63
62
|
* [`heroku plugins`](docs/plugins.md) - List installed plugins.
|
|
64
63
|
* [`heroku ps`](docs/ps.md) - Client tools for Heroku Exec
|
|
65
|
-
* [`heroku psql`](docs/psql.md) - open a psql shell to the database
|
|
66
64
|
* [`heroku redis`](docs/redis.md) - manage heroku redis instances
|
|
67
65
|
* [`heroku regions`](docs/regions.md) - list available regions for deployment
|
|
68
|
-
* [`heroku releases`](docs/releases.md) - display the releases for an app
|
|
69
66
|
* [`heroku reviewapps`](docs/reviewapps.md) - manage reviewapps in pipelines
|
|
70
67
|
* [`heroku run`](docs/run.md) - run a one-off process inside a Heroku dyno
|
|
71
68
|
* [`heroku sessions`](docs/sessions.md) - OAuth sessions
|
|
@@ -65,7 +65,7 @@ Create.description = `create a new pipeline
|
|
|
65
65
|
An existing app must be specified as the first app in the pipeline.
|
|
66
66
|
The pipeline name will be inferred from the app name if not specified.
|
|
67
67
|
The stage of the app will be guessed based on its name if not specified.
|
|
68
|
-
The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs
|
|
68
|
+
The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs.`;
|
|
69
69
|
Create.examples = [
|
|
70
70
|
'$ heroku pipelines:create -a my-app-staging',
|
|
71
71
|
'$ heroku pipelines:create my-pipeline -a my-app-staging',
|
package/oclif.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "8.4.4-beta.
|
|
2
|
+
"version": "8.4.4-beta.4",
|
|
3
3
|
"commands": {
|
|
4
4
|
"console": {
|
|
5
5
|
"id": "console",
|
|
@@ -2016,7 +2016,7 @@
|
|
|
2016
2016
|
},
|
|
2017
2017
|
"pipelines:create": {
|
|
2018
2018
|
"id": "pipelines:create",
|
|
2019
|
-
"description": "create a new pipeline\n An existing app must be specified as the first app in the pipeline.\n The pipeline name will be inferred from the app name if not specified.\n The stage of the app will be guessed based on its name if not specified.\n The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs.
|
|
2019
|
+
"description": "create a new pipeline\n An existing app must be specified as the first app in the pipeline.\n The pipeline name will be inferred from the app name if not specified.\n The stage of the app will be guessed based on its name if not specified.\n The pipeline owner will be the user creating the pipeline if not specified with -t for teams or -o for orgs.",
|
|
2020
2020
|
"strict": true,
|
|
2021
2021
|
"pluginName": "heroku",
|
|
2022
2022
|
"pluginAlias": "heroku",
|
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.4.4-beta.
|
|
4
|
+
"version": "8.4.4-beta.4",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -341,5 +341,5 @@
|
|
|
341
341
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
342
342
|
},
|
|
343
343
|
"types": "lib/index.d.ts",
|
|
344
|
-
"gitHead": "
|
|
344
|
+
"gitHead": "76704a4c3ef612150e65fe362f47fd440ad3d284"
|
|
345
345
|
}
|