sentry 0.16.0 → 0.17.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 +1026 -551
  2. package/package.json +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sentry",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/getsentry/cli.git"
@@ -10,7 +10,7 @@
10
10
  "@biomejs/biome": "2.3.8",
11
11
  "@clack/prompts": "^0.11.0",
12
12
  "@mastra/client-js": "^1.4.0",
13
- "@sentry/api": "^0.21.0",
13
+ "@sentry/api": "^0.54.0",
14
14
  "@sentry/bun": "10.39.0",
15
15
  "@sentry/esbuild-plugin": "^2.23.0",
16
16
  "@sentry/node": "10.39.0",
@@ -59,10 +59,10 @@
59
59
  "@stricli/core@1.2.5": "patches/@stricli%2Fcore@1.2.5.patch"
60
60
  },
61
61
  "scripts": {
62
- "dev": "bun run src/bin.ts",
63
- "build": "bun run script/build.ts --single",
64
- "build:all": "bun run script/build.ts",
65
- "bundle": "bun run script/bundle.ts",
62
+ "dev": "bun run generate:schema && bun run src/bin.ts",
63
+ "build": "bun run generate:schema && bun run script/build.ts --single",
64
+ "build:all": "bun run generate:schema && bun run script/build.ts",
65
+ "bundle": "bun run generate:schema && bun run script/bundle.ts",
66
66
  "typecheck": "tsc --noEmit",
67
67
  "lint": "bunx ultracite check",
68
68
  "lint:fix": "bunx ultracite fix",
@@ -72,6 +72,7 @@
72
72
  "test:e2e": "bun test --timeout 15000 test/e2e",
73
73
  "test:init-eval": "bun test test/init-eval --timeout 600000 --concurrency 6",
74
74
  "generate:skill": "bun run script/generate-skill.ts",
75
+ "generate:schema": "bun run script/generate-api-schema.ts",
75
76
  "check:skill": "bun run script/check-skill.ts",
76
77
  "check:deps": "bun run script/check-no-deps.ts"
77
78
  },