sentry-tui 0.8.0 → 0.10.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 +17 -13
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,18 +5,22 @@ mirroring Sentry's real information architecture and screen layouts.
|
|
|
5
5
|
|
|
6
6
|
## Status
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
8
|
+
Every destination in the current navigation opens a real screen across Issues,
|
|
9
|
+
Explore, Dashboards, Seer, and Monitors — 30 in all, with no placeholder panes.
|
|
10
|
+
|
|
11
|
+
| Area | What's built |
|
|
12
|
+
| ---------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
|
|
13
|
+
| Issues | Query-backed views, saved views, cursor pagination, full event detail and stack traces, plus resolve, archive, bookmark, and review actions |
|
|
14
|
+
| Explore | Traces, Logs, Metrics, Errors, Discover, Profiles, Replays, Releases, Conversations, saved queries, charts, and the trace query builder |
|
|
15
|
+
| Dashboards | All, Sentry Built, and starred dashboard lists, with a terminal widget grid for supported chart, table, number, and categorical widgets |
|
|
16
|
+
| Seer | Ask Seer, conversation history, rich responses, and feature-gated Code Mode workflows |
|
|
17
|
+
| Monitors | Detector lists by type, check-in timelines, monitor detail, and Alerts workflows |
|
|
18
|
+
| App shell | OAuth device-flow login, command palette, org and project switching, filters, Sentry URL navigation, telemetry, and self-updating compiled binaries |
|
|
19
|
+
|
|
20
|
+
Settings is intentionally left on sentry.io rather than mirrored as a stub.
|
|
21
|
+
Most non-Issues data screens are read-only today. Next is deeper pagination,
|
|
22
|
+
filtering, and cross-screen detail navigation, plus the remaining parity work
|
|
23
|
+
tracked in the [open issues](https://github.com/billyvg/sentry-tui/issues).
|
|
20
24
|
|
|
21
25
|
## Install
|
|
22
26
|
|
|
@@ -69,7 +73,7 @@ when `CI` is set, and when running from source.
|
|
|
69
73
|
|
|
70
74
|
### From source
|
|
71
75
|
|
|
72
|
-
Running from source needs **Bun ≥ 1.
|
|
76
|
+
Running from source needs **Bun ≥ 1.4.0**. OpenTUI reaches its native renderer
|
|
73
77
|
through `bun:ffi`; the Node backend wants `node:ffi`, which is Node 26.1+ behind
|
|
74
78
|
`--experimental-ffi`, so Bun is the supported path.
|
|
75
79
|
|
package/package.json
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"url": "https://github.com/billyvg/sentry-tui/issues"
|
|
12
12
|
},
|
|
13
13
|
"name": "sentry-tui",
|
|
14
|
-
"version": "0.
|
|
14
|
+
"version": "0.10.0",
|
|
15
15
|
"keywords": [
|
|
16
16
|
"sentry",
|
|
17
17
|
"tui",
|
|
@@ -34,6 +34,6 @@
|
|
|
34
34
|
"node": ">=18.0.0"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@billyvg/sentry-tui": "0.
|
|
37
|
+
"@billyvg/sentry-tui": "0.10.0"
|
|
38
38
|
}
|
|
39
39
|
}
|