sentry 0.21.0 → 0.23.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 CHANGED
@@ -19,7 +19,7 @@
19
19
  ### Install Script (Recommended)
20
20
 
21
21
  ```bash
22
- curl -fsSL https://cli.sentry.dev/install | bash
22
+ curl https://cli.sentry.dev/install -fsS | bash
23
23
  ```
24
24
 
25
25
  ### Homebrew
@@ -72,10 +72,18 @@ sentry issue plan PROJ-ABC
72
72
  |---------|-------------|
73
73
  | `sentry auth` | Login, logout, check authentication status |
74
74
  | `sentry org` | List and view organizations |
75
- | `sentry project` | List and view projects |
75
+ | `sentry project` | List, view, create, and delete projects |
76
76
  | `sentry issue` | List, view, explain, and plan issues |
77
77
  | `sentry event` | View event details |
78
+ | `sentry trace` | List and view distributed traces |
79
+ | `sentry span` | List and view spans |
80
+ | `sentry log` | List and view logs (with streaming) |
81
+ | `sentry dashboard` | List, view, and create dashboards with widgets |
82
+ | `sentry sourcemap` | Inject debug IDs and upload sourcemaps |
83
+ | `sentry init` | Initialize Sentry in your project |
84
+ | `sentry schema` | Browse the Sentry API schema |
78
85
  | `sentry api` | Make direct API requests |
86
+ | `sentry cli` | Upgrade, setup, fix, and send feedback |
79
87
 
80
88
  For detailed documentation, visit [cli.sentry.dev](https://cli.sentry.dev).
81
89
 
@@ -112,6 +120,9 @@ Options (all optional):
112
120
  - `project` — Default project slug.
113
121
  - `text` — Return human-readable string instead of parsed JSON (affects `run()` only).
114
122
  - `cwd` — Working directory for DSN auto-detection. Defaults to `process.cwd()`.
123
+ - `signal` — `AbortSignal` to cancel streaming commands (`--follow`, `--refresh`).
124
+
125
+ Streaming commands return `AsyncIterable` — use `for await...of` and `break` to stop.
115
126
 
116
127
  Errors are thrown as `SentryError` with `.exitCode` and `.stderr`.
117
128