@proggarapsody/bitbottle 1.44.0 → 1.46.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 +5 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -92,7 +92,7 @@ Tokens are intentionally stripped from `hosts.yml` on every save. If you have an
|
|
|
92
92
|
| `commit` | `log` `view` `status` `comment {list\|add\|edit\|delete}` |
|
|
93
93
|
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
94
94
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
95
|
-
| `environment` | `list` `create` `delete`
|
|
95
|
+
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
96
96
|
| `workspace` | `list` _(Cloud only)_ |
|
|
97
97
|
| `project` | `list WORKSPACE` _(Cloud only)_ |
|
|
98
98
|
| `issue` | `list` `view` `create` `close` `edit` `reopen` `assign` `comment {list\|add\|edit\|delete}` _(Cloud only)_ |
|
|
@@ -205,11 +205,11 @@ bitbottle pipeline steps MYWORKSPACE/my-service {pipeline-uuid}
|
|
|
205
205
|
bitbottle pipeline logs MYWORKSPACE/my-service {pipeline-uuid} {step-uuid}
|
|
206
206
|
|
|
207
207
|
# Repository-level pipeline variables (upsert by KEY):
|
|
208
|
-
bitbottle
|
|
209
|
-
bitbottle
|
|
210
|
-
echo "$TOKEN" | bitbottle
|
|
208
|
+
bitbottle variable list MYWORKSPACE/my-service
|
|
209
|
+
bitbottle variable set MYWORKSPACE/my-service DEPLOY_ENV prod
|
|
210
|
+
echo "$TOKEN" | bitbottle variable set MYWORKSPACE/my-service \
|
|
211
211
|
API_TOKEN --body=- --secured
|
|
212
|
-
bitbottle
|
|
212
|
+
bitbottle variable delete MYWORKSPACE/my-service DEPLOY_ENV --confirm
|
|
213
213
|
```
|
|
214
214
|
|
|
215
215
|
Secured variables redact their value on read (TTY column shows
|
|
@@ -246,8 +246,6 @@ bitbottle variable delete MYWORKSPACE/my-service DEPLOY_KEY --scope deployment -
|
|
|
246
246
|
All commands support `--json fields` and `--jq expr`. Secured variable values
|
|
247
247
|
are never returned by the API once set.
|
|
248
248
|
|
|
249
|
-
**`environment variable *` is deprecated.** Use `bitbottle variable --scope deployment --env ENV-UUID` instead. The old commands still work but print a deprecation warning.
|
|
250
|
-
|
|
251
249
|
These commands return a typed unsupported-capability error on Bitbucket Server /
|
|
252
250
|
Data Center — deployments and environments are a Cloud-only feature.
|
|
253
251
|
|