Skip to content

Commit d4d9a99

Browse files
Merge branch 'release/0.24.0'
2 parents 5faf1dd + 82d13f5 commit d4d9a99

File tree

17 files changed

+62
-16
lines changed

17 files changed

+62
-16
lines changed

CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,52 @@
11
# Changelog
22

33
<!-- Craft will auto-populate this file -->
4+
## 0.24.0
5+
6+
### New Features ✨
7+
8+
#### Telemetry
9+
10+
- Add cache hit rate metric across all cache systems by @BYK in [#638](https://github.com/getsentry/cli/pull/638)
11+
- Add performance instrumentation and CLI Performance dashboard by @BYK in [#625](https://github.com/getsentry/cli/pull/625)
12+
- Upgrade Sentry SDK to 10.47.0 and enable runtime metrics by @BYK in [#622](https://github.com/getsentry/cli/pull/622)
13+
14+
#### Other
15+
16+
- (auth) Show token expiry in days/weeks instead of raw hours by @BYK in [#620](https://github.com/getsentry/cli/pull/620)
17+
- (ci) Add delta patch generation for stable releases by @BYK in [#618](https://github.com/getsentry/cli/pull/618)
18+
- (commands) Add shared helpers and buildDeleteCommand for mutation commands by @BYK in [#639](https://github.com/getsentry/cli/pull/639)
19+
- (dashboard) Render text widget markdown content in dashboard view by @BYK in [#624](https://github.com/getsentry/cli/pull/624)
20+
- (release) Add release command group and CI finalization by @BYK in [#628](https://github.com/getsentry/cli/pull/628)
21+
- (traces) Expose custom span attributes and improve agent guidance by @BYK in [#623](https://github.com/getsentry/cli/pull/623)
22+
- Improve unknown command UX with aliases, default routing, and suggestions by @BYK in [#635](https://github.com/getsentry/cli/pull/635)
23+
24+
### Bug Fixes 🐛
25+
26+
#### Telemetry
27+
28+
- Exclude OutputError from Sentry exception capture (CLI-PK) by @BYK in [#629](https://github.com/getsentry/cli/pull/629)
29+
- Derive environment from CLI_VERSION instead of NODE_ENV by @BYK in [#627](https://github.com/getsentry/cli/pull/627)
30+
31+
#### Other
32+
33+
- (build) Use esbuild for binary bundling to fix minifier collision bug by @BYK in [#619](https://github.com/getsentry/cli/pull/619)
34+
- (ci) Restore GH_TOKEN for gh CLI steps in generate-patches by @BYK in [#634](https://github.com/getsentry/cli/pull/634)
35+
- (commands) Add regression test for Stricli numberParser defaults (#640) by @BYK in [#641](https://github.com/getsentry/cli/pull/641)
36+
- (init) Prompt for team selection when user belongs to multiple teams by @betegon in [#621](https://github.com/getsentry/cli/pull/621)
37+
- (polyfill) Add missing Bun API polyfills for npm distribution by @BYK in [#637](https://github.com/getsentry/cli/pull/637)
38+
- (upgrade) Remove "What's new" header from changelog output by @BYK in [#626](https://github.com/getsentry/cli/pull/626)
39+
40+
### Documentation 📚
41+
42+
- Add tracemetrics dataset guidance and validate aggregate format by @BYK in [#636](https://github.com/getsentry/cli/pull/636)
43+
44+
### Internal Changes 🔧
45+
46+
- (deps) Upgrade @sentry/api from 0.54.0 to 0.94.0 by @BYK in [#630](https://github.com/getsentry/cli/pull/630)
47+
- Remove stale debug-level stderr assertions and fix logger state leak by @BYK in [#631](https://github.com/getsentry/cli/pull/631)
48+
- Regenerate skill files and command docs by @github-actions[bot] in [e01b2520](https://github.com/getsentry/cli/commit/e01b2520ff6c858e032d2714e4e16168bdeef926)
49+
450
## 0.23.0
551

652
### New Features ✨

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sentry",
3-
"version": "0.24.0-dev.0",
3+
"version": "0.24.0",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/getsentry/cli.git"

plugins/sentry-cli/skills/sentry-cli/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: Guide for using the Sentry CLI to interact with Sentry from the command line. Use when the user asks about viewing issues, events, projects, organizations, making API calls, or authenticating with Sentry via CLI.
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-api
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: Make arbitrary Sentry API requests
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/auth.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-auth
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: Authenticate with Sentry via OAuth or API tokens
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/dashboards.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-dashboards
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: List, view, and create Sentry dashboards
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-events
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: View individual error events
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/issues.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-issues
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: List, view, and analyze Sentry issues with AI
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/logs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-logs
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: List and stream logs from Sentry projects
55
requires:
66
bins: ["sentry"]

plugins/sentry-cli/skills/sentry-cli/references/organizations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-organizations
3-
version: 0.24.0-dev.0
3+
version: 0.24.0
44
description: List and view Sentry organizations
55
requires:
66
bins: ["sentry"]

0 commit comments

Comments
 (0)