sentry 0.14.0 → 0.16.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.
Files changed (2) hide show
  1. package/dist/bin.cjs +843 -766
  2. package/package.json +11 -4
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "sentry",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/getsentry/cli.git"
7
7
  },
8
8
  "devDependencies": {
9
+ "@anthropic-ai/sdk": "^0.39.0",
9
10
  "@biomejs/biome": "2.3.8",
11
+ "@clack/prompts": "^0.11.0",
12
+ "@mastra/client-js": "^1.4.0",
10
13
  "@sentry/api": "^0.21.0",
11
14
  "@sentry/bun": "10.39.0",
12
15
  "@sentry/esbuild-plugin": "^2.23.0",
@@ -14,6 +17,7 @@
14
17
  "@stricli/auto-complete": "^1.2.4",
15
18
  "@stricli/core": "^1.2.4",
16
19
  "@types/bun": "latest",
20
+ "@types/http-cache-semantics": "^4.2.0",
17
21
  "@types/node": "^22",
18
22
  "@types/qrcode-terminal": "^0.12.2",
19
23
  "@types/semver": "^7.7.1",
@@ -23,8 +27,10 @@
23
27
  "consola": "^3.4.2",
24
28
  "esbuild": "^0.25.0",
25
29
  "fast-check": "^4.5.3",
30
+ "http-cache-semantics": "^4.2.0",
26
31
  "ignore": "^7.0.5",
27
32
  "marked": "^15",
33
+ "openai": "^6.22.0",
28
34
  "p-limit": "^7.2.0",
29
35
  "pretty-ms": "^9.3.0",
30
36
  "qrcode-terminal": "^0.12.0",
@@ -61,9 +67,10 @@
61
67
  "lint": "bunx ultracite check",
62
68
  "lint:fix": "bunx ultracite fix",
63
69
  "test": "bun run test:unit && bun run test:isolated",
64
- "test:unit": "bun test test/lib test/commands test/types --coverage --coverage-reporter=lcov",
65
- "test:isolated": "bun test test/isolated",
66
- "test:e2e": "bun test test/e2e",
70
+ "test:unit": "bun test --timeout 15000 test/lib test/commands test/types --coverage --coverage-reporter=lcov",
71
+ "test:isolated": "bun test --timeout 15000 test/isolated",
72
+ "test:e2e": "bun test --timeout 15000 test/e2e",
73
+ "test:init-eval": "bun test test/init-eval --timeout 600000 --concurrency 6",
67
74
  "generate:skill": "bun run script/generate-skill.ts",
68
75
  "check:skill": "bun run script/check-skill.ts",
69
76
  "check:deps": "bun run script/check-no-deps.ts"