Skip to content

Commit ff7306e

Browse files
committed
fix(preprod): Mention build upload is non-experimental in CHANGELOG
Follow up from #2900 Also unhide the subcommand.
1 parent bec709e commit ff7306e

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### New Features
6+
7+
- Promote `sentry-cli build upload` command to non-experimental ([#2899](https://github.com/getsentry/sentry-cli/pull/2899), [#2905](https://github.com/getsentry/sentry-cli/pull/2905)).
8+
59
### Deprecations
610

711
- Deprecated the `upload-proguard` subcommand's `--platform` flag ([#2863](https://github.com/getsentry/sentry-cli/pull/2863)). This flag appears to have been a no-op for some time, so we will remove it in the next major.

src/commands/build/mod.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ pub fn make_command(mut command: Command) -> Command {
2525
.subcommand_required(true)
2626
.arg_required_else_help(true)
2727
.org_arg()
28-
.project_arg(true)
29-
// TODO: Remove this when ready for release
30-
.hide(true);
28+
.project_arg(true);
3129
each_subcommand!(add_subcommand);
3230
command
3331
}

tests/integration/_cases/help/help-windows.trycmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Usage: sentry-cli[EXE] [OPTIONS] <COMMAND>
1111

1212
Commands:
1313
completions Generate completions for the specified shell.
14+
build Manage builds.
1415
debug-files Locate, analyze or upload debug information files. [aliases: dif]
1516
deploys Manage deployments for Sentry releases.
1617
events Manage events on Sentry.

tests/integration/_cases/help/help.trycmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Usage: sentry-cli[EXE] [OPTIONS] <COMMAND>
1111

1212
Commands:
1313
completions Generate completions for the specified shell.
14+
build Manage builds.
1415
debug-files Locate, analyze or upload debug information files. [aliases: dif]
1516
deploys Manage deployments for Sentry releases.
1617
events Manage events on Sentry.

0 commit comments

Comments
 (0)