Skip to content

Commit 56e522d

Browse files
chore: regenerate skill files and command docs
1 parent b530962 commit 56e522d

File tree

2 files changed

+120
-7
lines changed

2 files changed

+120
-7
lines changed

docs/src/content/docs/commands/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ The Sentry CLI provides commands for interacting with various Sentry resources.
1414
| [`dashboard`](./dashboard/) | Manage Sentry dashboards |
1515
| [`org`](./org/) | Work with Sentry organizations |
1616
| [`project`](./project/) | Work with Sentry projects |
17+
| [`release`](./release/) | Work with Sentry releases |
1718
| [`repo`](./repo/) | Work with Sentry repositories |
1819
| [`team`](./team/) | Work with Sentry teams |
1920
| [`issue`](./issue/) | Manage Sentry issues |

docs/src/content/docs/commands/release.md

Lines changed: 119 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,145 @@ Work with Sentry releases
1111

1212
List releases
1313

14-
### `sentry release view <org/version>`
14+
**Arguments:**
15+
16+
| Argument | Description |
17+
|----------|-------------|
18+
| `<org/project>` | &lt;org&gt;/ (all projects), &lt;org&gt;/&lt;project&gt;, or &lt;project&gt; (search) |
19+
20+
**Options:**
21+
22+
| Option | Description |
23+
|--------|-------------|
24+
| `-n, --limit <limit>` | Maximum number of releases to list (default: "30") |
25+
| `-f, --fresh` | Bypass cache, re-detect projects, and fetch fresh data |
26+
| `-c, --cursor <cursor>` | Navigate pages: "next", "prev", "first" (or raw cursor string) |
27+
28+
### `sentry release view <org/version...>`
1529

1630
View release details
1731

18-
### `sentry release create <org/version>`
32+
**Arguments:**
33+
34+
| Argument | Description |
35+
|----------|-------------|
36+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to view |
37+
38+
**Options:**
39+
40+
| Option | Description |
41+
|--------|-------------|
42+
| `-f, --fresh` | Bypass cache, re-detect projects, and fetch fresh data |
43+
44+
### `sentry release create <org/version...>`
1945

2046
Create a release
2147

22-
### `sentry release finalize <org/version>`
48+
**Arguments:**
49+
50+
| Argument | Description |
51+
|----------|-------------|
52+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to create |
53+
54+
**Options:**
55+
56+
| Option | Description |
57+
|--------|-------------|
58+
| `-p, --project <project>` | Associate with project(s), comma-separated |
59+
| `--finalize` | Immediately finalize the release (set dateReleased) |
60+
| `--ref <ref>` | Git ref (branch or tag name) |
61+
| `--url <url>` | URL to the release source |
62+
| `-n, --dry-run` | Show what would happen without making changes |
63+
64+
### `sentry release finalize <org/version...>`
2365

2466
Finalize a release
2567

26-
### `sentry release delete <org/version>`
68+
**Arguments:**
69+
70+
| Argument | Description |
71+
|----------|-------------|
72+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to finalize |
73+
74+
**Options:**
75+
76+
| Option | Description |
77+
|--------|-------------|
78+
| `--released <released>` | Custom release timestamp (ISO 8601). Defaults to now. |
79+
| `--url <url>` | URL for the release |
80+
| `-n, --dry-run` | Show what would happen without making changes |
81+
82+
### `sentry release delete <org/version...>`
2783

2884
Delete a release
2985

30-
### `sentry release deploy <org/version> <environment> [name]`
86+
**Arguments:**
87+
88+
| Argument | Description |
89+
|----------|-------------|
90+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to delete |
91+
92+
**Options:**
93+
94+
| Option | Description |
95+
|--------|-------------|
96+
| `-y, --yes` | Skip confirmation prompt |
97+
| `-f, --force` | Force the operation without confirmation |
98+
| `-n, --dry-run` | Show what would happen without making changes |
99+
100+
### `sentry release deploy <org/version environment name...>`
31101

32102
Create a deploy for a release
33103

34-
### `sentry release set-commits <org/version>`
104+
**Arguments:**
105+
106+
| Argument | Description |
107+
|----------|-------------|
108+
| `<org/version environment name...>` | [&lt;org&gt;/]&lt;version&gt; &lt;environment&gt; [name] |
109+
110+
**Options:**
111+
112+
| Option | Description |
113+
|--------|-------------|
114+
| `--url <url>` | URL for the deploy |
115+
| `--started <started>` | Deploy start time (ISO 8601) |
116+
| `--finished <finished>` | Deploy finish time (ISO 8601) |
117+
| `-t, --time <time>` | Deploy duration in seconds (sets started = now - time, finished = now) |
118+
| `-n, --dry-run` | Show what would happen without making changes |
119+
120+
### `sentry release deploys <org/version...>`
121+
122+
List deploys for a release
123+
124+
**Arguments:**
125+
126+
| Argument | Description |
127+
|----------|-------------|
128+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
129+
130+
### `sentry release set-commits <org/version...>`
35131

36132
Set commits for a release
37133

134+
**Arguments:**
135+
136+
| Argument | Description |
137+
|----------|-------------|
138+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
139+
140+
**Options:**
141+
142+
| Option | Description |
143+
|--------|-------------|
144+
| `--auto` | Use repository integration to auto-discover commits |
145+
| `--local` | Read commits from local git history |
146+
| `--clear` | Clear all commits from the release |
147+
| `--commit <commit>` | Explicit commit as REPO@SHA or REPO@PREV..SHA (comma-separated) |
148+
| `--initial-depth <initial-depth>` | Number of commits to read with --local (default: "20") |
149+
38150
### `sentry release propose-version`
39151

40-
Propose a release version (outputs the current git HEAD SHA)
152+
Propose a release version
41153

42154
All commands support `--json` for machine-readable output and `--fields` to select specific JSON fields.
43155

0 commit comments

Comments
 (0)