Skip to content

Commit e69575a

Browse files
Merge branch 'release/0.26.0'
2 parents 2217947 + b18a9ce commit e69575a

21 files changed

Lines changed: 72 additions & 20 deletions

File tree

CHANGELOG.md

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

33
<!-- Craft will auto-populate this file -->
4+
## 0.26.0
5+
6+
### New Features ✨
7+
8+
#### Docs
9+
10+
- Deploy main branch preview alongside PR previews by @BYK in [#707](https://github.com/getsentry/cli/pull/707)
11+
- Enable sourcemap upload, releases, and environment tracking by @BYK in [#705](https://github.com/getsentry/cli/pull/705)
12+
13+
#### Init
14+
15+
- Pre-read common config files to reduce round-trips by @betegon in [#704](https://github.com/getsentry/cli/pull/704)
16+
- Add grep and glob local-op handlers by @betegon in [#703](https://github.com/getsentry/cli/pull/703)
17+
- Add fuzzy edit replacers and edits-based apply-patchset by @betegon in [#698](https://github.com/getsentry/cli/pull/698)
18+
19+
#### Other
20+
21+
- (cli) Hoist global flags from any argv position and add -v alias by @BYK in [#709](https://github.com/getsentry/cli/pull/709)
22+
- (commands) Add buildRouteMap wrapper with standard subcommand aliases by @BYK in [#690](https://github.com/getsentry/cli/pull/690)
23+
- (config) Support .sentryclirc config file for per-directory defaults by @BYK in [#693](https://github.com/getsentry/cli/pull/693)
24+
- (install) Add SENTRY_INIT env var to run wizard after install by @betegon in [#685](https://github.com/getsentry/cli/pull/685)
25+
- (release) Surface adoption and health metrics in list and view (#463) by @BYK in [#680](https://github.com/getsentry/cli/pull/680)
26+
- (telemetry) Add agent detection tag for AI coding tools by @betegon in [#687](https://github.com/getsentry/cli/pull/687)
27+
28+
### Bug Fixes 🐛
29+
30+
#### Dashboard
31+
32+
- Add --layout flag to widget add for predictable placement by @BYK in [#700](https://github.com/getsentry/cli/pull/700)
33+
- Render tracemetrics widgets in dashboard view by @BYK in [#695](https://github.com/getsentry/cli/pull/695)
34+
35+
#### Init
36+
37+
- Add size guard and deduplicate JSON minification in preReadCommonFiles by @betegon in [#713](https://github.com/getsentry/cli/pull/713)
38+
- Narrow command validation to actual shell injection vectors by @betegon in [#697](https://github.com/getsentry/cli/pull/697)
39+
40+
#### Other
41+
42+
- (build) Enable sourcemap resolution for compiled binaries by @BYK in [#701](https://github.com/getsentry/cli/pull/701)
43+
- (cache) --fresh flag now updates cache with fresh response by @BYK in [#708](https://github.com/getsentry/cli/pull/708)
44+
- (eval) Ground LLM judge with command reference to prevent false negatives by @BYK in [#712](https://github.com/getsentry/cli/pull/712)
45+
- (init,feedback) Default to tracing only in feature select and attach user email to feedback by @MathurAditya724 in [#688](https://github.com/getsentry/cli/pull/688)
46+
- (setup) Handle read-only .claude directory in sandboxed environments by @BYK in [#702](https://github.com/getsentry/cli/pull/702)
47+
- Inject auth token into generated .env.sentry-build-plugin files by @MathurAditya724 in [#706](https://github.com/getsentry/cli/pull/706)
48+
49+
### Internal Changes 🔧
50+
51+
- (docs) Gitignore generated command docs, extract fragments by @BYK in [#696](https://github.com/getsentry/cli/pull/696)
52+
- (eval) Replace OpenAI with Anthropic SDK in init-eval judge by @betegon in [#683](https://github.com/getsentry/cli/pull/683)
53+
- (init) Use markdown pipeline for spinner messages by @betegon in [#686](https://github.com/getsentry/cli/pull/686)
54+
- Regenerate skill files and command docs by @github-actions[bot] in [584ec0e0](https://github.com/getsentry/cli/commit/584ec0e001611873197c52a01156bef1c4fe9431)
55+
456
## 0.25.0
557

658
### 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.26.0-dev.0",
3+
"version": "0.26.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.26.0-dev.0
3+
version: 0.26.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.26.0-dev.0
3+
version: 0.26.0
44
description: Make an authenticated API request
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.26.0-dev.0
3+
version: 0.26.0
44
description: Authenticate with Sentry
55
requires:
66
bins: ["sentry"]

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

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

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

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

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
name: sentry-cli-init
3-
version: 0.26.0-dev.0
3+
version: 0.26.0
44
description: Initialize Sentry in your project (experimental)
55
requires:
66
bins: ["sentry"]

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

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

0 commit comments

Comments
 (0)