Skip to content

Commit 4e7e818

Browse files
chore: regenerate skill files and command docs
1 parent 5fa25d6 commit 4e7e818

File tree

2 files changed

+115
-7
lines changed

2 files changed

+115
-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: 114 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,33 +11,140 @@ 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+
63+
### `sentry release finalize <org/version...>`
2364

2465
Finalize a release
2566

26-
### `sentry release delete <org/version>`
67+
**Arguments:**
68+
69+
| Argument | Description |
70+
|----------|-------------|
71+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to finalize |
72+
73+
**Options:**
74+
75+
| Option | Description |
76+
|--------|-------------|
77+
| `--released <released>` | Custom release timestamp (ISO 8601). Defaults to now. |
78+
| `--url <url>` | URL for the release |
79+
80+
### `sentry release delete <org/version...>`
2781

2882
Delete a release
2983

30-
### `sentry release deploy <org/version> <environment> [name]`
84+
**Arguments:**
85+
86+
| Argument | Description |
87+
|----------|-------------|
88+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version to delete |
89+
90+
**Options:**
91+
92+
| Option | Description |
93+
|--------|-------------|
94+
| `-y, --yes` | Skip confirmation prompt |
95+
96+
### `sentry release deploy <org/version environment name...>`
3197

3298
Create a deploy for a release
3399

34-
### `sentry release set-commits <org/version>`
100+
**Arguments:**
101+
102+
| Argument | Description |
103+
|----------|-------------|
104+
| `<org/version environment name...>` | [&lt;org&gt;/]&lt;version&gt; &lt;environment&gt; [name] |
105+
106+
**Options:**
107+
108+
| Option | Description |
109+
|--------|-------------|
110+
| `--url <url>` | URL for the deploy |
111+
| `--started <started>` | Deploy start time (ISO 8601) |
112+
| `--finished <finished>` | Deploy finish time (ISO 8601) |
113+
| `-t, --time <time>` | Deploy duration in seconds (sets started = now - time, finished = now) |
114+
115+
### `sentry release deploys <org/version...>`
116+
117+
List deploys for a release
118+
119+
**Arguments:**
120+
121+
| Argument | Description |
122+
|----------|-------------|
123+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
124+
125+
### `sentry release set-commits <org/version...>`
35126

36127
Set commits for a release
37128

129+
**Arguments:**
130+
131+
| Argument | Description |
132+
|----------|-------------|
133+
| `<org/version...>` | [&lt;org&gt;/]&lt;version&gt; - Release version |
134+
135+
**Options:**
136+
137+
| Option | Description |
138+
|--------|-------------|
139+
| `--auto` | Use repository integration to auto-discover commits |
140+
| `--local` | Read commits from local git history |
141+
| `--clear` | Clear all commits from the release |
142+
| `--commit <commit>` | Explicit commit in REPO@SHA format (can be comma-separated) |
143+
| `--initial-depth <initial-depth>` | Number of commits to read with --local (default: "20") |
144+
38145
### `sentry release propose-version`
39146

40-
Propose a release version (outputs the current git HEAD SHA)
147+
Propose a release version
41148

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

0 commit comments

Comments
 (0)