@proggarapsody/bitbottle 1.53.0 → 1.55.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 +39 -1
- 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
|
| `deploy-key` | `list` `add` `delete` |
|
|
93
93
|
| `branch-rule` | `list` `add` `delete` _(Cloud only)_ |
|
|
94
94
|
| `ssh-key` | `list` `add` `delete` _(Cloud only)_ |
|
|
95
|
-
| `commit` | `log` `view` `status` `comment {list\|add\|edit\|delete}` |
|
|
95
|
+
| `commit` | `log` `view` `status` `files` `comment {list\|add\|edit\|delete}` |
|
|
96
96
|
| `pipeline` | `list` `view` `run` _(Cloud only)_ |
|
|
97
97
|
| `deployment` | `list` `view` _(Cloud only)_ |
|
|
98
98
|
| `environment` | `list` `create` `delete` _(Cloud only)_ |
|
|
@@ -219,6 +219,24 @@ Secured variables redact their value on read (TTY column shows
|
|
|
219
219
|
`<secured>`, JSON `value` shows `"<secured>"`). Use `--body=-` to read
|
|
220
220
|
the value from stdin so the secret never touches shell history.
|
|
221
221
|
|
|
222
|
+
### Pipeline Schedules _(Cloud only)_
|
|
223
|
+
|
|
224
|
+
```bash
|
|
225
|
+
# List all pipeline schedules for a repository
|
|
226
|
+
bitbottle pipeline schedule list MYWORKSPACE/my-service
|
|
227
|
+
|
|
228
|
+
# Create a schedule (runs daily at midnight on main)
|
|
229
|
+
bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
230
|
+
--cron "0 0 * * *" --branch main
|
|
231
|
+
|
|
232
|
+
# Create a disabled schedule
|
|
233
|
+
bitbottle pipeline schedule create MYWORKSPACE/my-service \
|
|
234
|
+
--cron "0 12 * * 1" --branch develop --enabled=false
|
|
235
|
+
|
|
236
|
+
# Delete a schedule by UUID
|
|
237
|
+
bitbottle pipeline schedule delete MYWORKSPACE/my-service {uuid}
|
|
238
|
+
```
|
|
239
|
+
|
|
222
240
|
### Deployments & Environments _(Cloud only)_
|
|
223
241
|
|
|
224
242
|
```bash
|
|
@@ -530,6 +548,26 @@ bitbottle --hostname git.example.com perms project list MYPROJ --jq '.[] | selec
|
|
|
530
548
|
If a grant call would **downgrade** an existing permission (e.g. ADMIN → READ),
|
|
531
549
|
`grant` prompts for confirmation on a TTY. Pass `--force` to skip the prompt.
|
|
532
550
|
|
|
551
|
+
### Commit Files
|
|
552
|
+
|
|
553
|
+
List files added, modified, or deleted in a specific commit. Both Bitbucket
|
|
554
|
+
Cloud and Server / Data Center are supported.
|
|
555
|
+
|
|
556
|
+
```bash
|
|
557
|
+
# List files changed in a commit (repo from git remote)
|
|
558
|
+
bitbottle commit files abc1234
|
|
559
|
+
|
|
560
|
+
# Explicit repo
|
|
561
|
+
bitbottle commit files abc1234 MYPROJ/my-service
|
|
562
|
+
|
|
563
|
+
# Structured output
|
|
564
|
+
bitbottle commit files abc1234 MYPROJ/my-service --json
|
|
565
|
+
bitbottle commit files abc1234 MYPROJ/my-service --jq '.[].path'
|
|
566
|
+
```
|
|
567
|
+
|
|
568
|
+
Output columns: `STATUS`, `PATH`, `+ADDITIONS`, `-DELETIONS`.
|
|
569
|
+
Line counts are not available on Bitbucket Server / Data Center (always 0).
|
|
570
|
+
|
|
533
571
|
### Commit Comments
|
|
534
572
|
|
|
535
573
|
Add and manage review-style comments on individual commits. Both Bitbucket
|