Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
217 changes: 137 additions & 80 deletions .lore.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions apps/cli-docs/src/content/docs/library-usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,14 @@ Calls should be sequential (awaited one at a time).
| **Output** | Parsed object (zero-copy) | String (needs JSON.parse) |
| **Errors** | `SentryError` with typed fields | Exit code + stderr string |
| **Auth** | `token` option or env vars | Env vars only |
| **Node.js** | >=18 required | Any version |
| **Node.js** | >=20 required | Any version |

## Requirements

- **Node.js >= 18**. On Node.js 22.15+ the built-in `node:sqlite` module is used; on Node.js 18–22.14 the CLI transparently falls back to a bundled WASM SQLite driver, so no native module or extra install step is required.
- **Node.js >= 20**. On Node.js 22.15+ the built-in `node:sqlite` module is used; on Node.js 20–22.14 the CLI transparently falls back to a bundled WASM SQLite driver, so no native module or extra install step is required.

:::caution
The WASM SQLite fallback (Node.js 18–22.14) does not support [WAL mode](https://www.sqlite.org/wal.html), so concurrent access from multiple processes is slower and its local cache reads/writes are less efficient. For the best performance and reliability we **strongly recommend** the [standalone binary](/installation/) (which bundles a modern runtime) or running on **Node.js 22.15+** so the native `node:sqlite` driver is used.
The WASM SQLite fallback (Node.js 20–22.14) does not support [WAL mode](https://www.sqlite.org/wal.html), so concurrent access from multiple processes is slower and its local cache reads/writes are less efficient. For the best performance and reliability we **strongly recommend** the [standalone binary](/installation/) (which bundles a modern runtime) or running on **Node.js 22.15+** so the native `node:sqlite` driver is used.
:::

## Streaming Commands
Expand Down
4 changes: 2 additions & 2 deletions apps/cli-docs/src/content/docs/migrating-from-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,9 +341,9 @@ await sdk.release.finalize({ orgVersion: "1.0.0" });
```

:::note
The `sentry` npm package requires **Node.js 18+** (v3's `@sentry/cli` supported
The `sentry` npm package requires **Node.js 20+** (v3's `@sentry/cli` supported
older runtimes). On Node.js 22.15+ it uses the built-in `node:sqlite` module; on
Node.js 18–22.14 it transparently falls back to a bundled WASM SQLite driver, so
Node.js 20–22.14 it transparently falls back to a bundled WASM SQLite driver, so
no native module or extra install step is needed. The standalone binary bundles
its own runtime and is unaffected by your installed Node.js version.

Expand Down
Loading
Loading